/* ============================================================
   SCX TALENT & MEDIA — Main Stylesheet
   ============================================================ */

/* ── 1. Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── 2. Design Tokens ─────────────────────────────────────── */
:root {
  --bg-dark: #080808;
  --bg-mid: #111111;
  --bg-light: #f7f5f2;
  --true-white: #ffffff;

  --text-dark: #0a0a0a;
  --text-light: #f7f5f2;
  --text-muted-dark: #666666;
  --text-muted-light: #888888;

  --border-dark: rgba(0, 0, 0, 0.12);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-mid: rgba(255, 255, 255, 0.07);

  --font-display: 'Bebas Neue', sans-serif;
  --font-script: 'Cormorant Garamond', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --size-hero: clamp(68px, 10.5vw, 156px);
  --size-h1: clamp(52px, 7.5vw, 104px);
  --size-h2: clamp(40px, 5.5vw, 80px);
  --size-h3: clamp(24px, 3vw, 40px);

  --section-pad: clamp(80px, 11vh, 140px);
  --container-max: 1440px;
  --gutter: clamp(20px, 5.5vw, 88px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── 3. Utilities ─────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--bg-dark); }
.section--mid { background: var(--bg-mid); }
.section--white { background: var(--true-white); }

.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-bottom: 22px;
}
.eyebrow--light { color: var(--text-muted-light); }

.section-headline {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 64px;
}
.section-headline--light { color: var(--text-light); }

/* Photo containers — add <img> inside when assets are ready */
.photo {
  background: #181818;
  display: block;
  overflow: hidden;
  position: relative;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Script accent — italic keyword emphasis in headlines */
.accent {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.01em;
  display: inline-block;
  font-size: 1.08em;
  line-height: inherit;
}

/* Nav logo image */
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}

/* Footer logo image */
.footer__logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Logo wall — center images inside their span */
.logo-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.logo-item span img {
  max-height: 80px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.28s ease;
  display: block;
}
.logo-item--tfc span img {
  max-height: 96px;
  max-width: 96px;
  filter: grayscale(1) brightness(0.6);
}
.logo-item:hover span img {
  filter: grayscale(1) brightness(12);
}
.logo-item span img[alt="1 Hotel"] {
  filter: grayscale(1) brightness(1.6) contrast(1.3);
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.28s var(--ease-out), color 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
  white-space: nowrap;
}
.btn--white  { background: var(--true-white); color: var(--bg-dark); }
.btn--white:hover  { background: #e0e0e0; }
.btn--dark   { background: var(--bg-dark); color: var(--true-white); }
.btn--dark:hover   { background: #222; }
.btn--outline-dark  { border: 1px solid var(--bg-dark); color: var(--bg-dark); }
.btn--outline-dark:hover  { background: var(--bg-dark); color: var(--true-white); }
.btn--outline-light { border: 1px solid rgba(255,255,255,0.35); color: var(--text-light); }
.btn--outline-light:hover { border-color: var(--true-white); background: var(--true-white); color: var(--bg-dark); }

/* ── 5. Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: background 0.45s ease, padding 0.45s ease, backdrop-filter 0.45s ease;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 18px 0;
  border-bottom: 1px solid var(--border-mid);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.06em;
  color: var(--true-white);
  line-height: 1;
}
.nav__logo span { color: #555; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav__links li a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.nav__links li a:hover,
.nav__links li a.active { color: var(--true-white); }
.nav__cta {
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 10px 24px;
  color: var(--true-white) !important;
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}
.nav__cta:hover {
  background: var(--true-white) !important;
  border-color: var(--true-white) !important;
  color: var(--bg-dark) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--true-white);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── 6. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 9vh, 108px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.52;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    158deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.94) 100%
  );
}
/* Subtle film-grain overlay */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 22px;
  display: block;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: var(--size-hero);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.015em;
  color: var(--true-white);
  margin-bottom: 36px;
  max-width: 1100px;
}
.hero__sub {
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 52px;
}

.hero__scroll {
  position: absolute;
  bottom: 44px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero__scroll-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(255,255,255,0.55);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── 7. Stats Strip ───────────────────────────────────────── */
.stats {
  background: var(--bg-dark);
  padding: clamp(60px, 8vh, 96px) 0;
  border-top: 1px solid var(--border-mid);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border-mid);
  gap: 1px;
}
.stat {
  padding: 48px 28px;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.3s ease;
}
.stat:hover { background: #111; }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 84px);
  letter-spacing: 0.02em;
  color: var(--true-white);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  max-width: 140px;
  line-height: 1.5;
}

.stats__note {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
}

/* ── 8. About ─────────────────────────────────────────────── */
.about { background: var(--bg-light); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  margin-bottom: 72px;
  align-items: start;
}
.about__headline {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-top: 4px;
}
.about__right p {
  font-size: 17px;
  line-height: 1.78;
  color: #4a4a4a;
  margin-bottom: 22px;
}
.about__right p:last-of-type { margin-bottom: 40px; }
.about__image {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  position: relative;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.about__image-credit {
  position: absolute;
  bottom: 18px;
  left: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ── 9. Services Preview ──────────────────────────────────── */
.services-preview { }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 60px;
  background: rgba(255,255,255,0.04);
}
.service-card {
  background: #0f0f0f;
  padding: 36px 28px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease;
}
.service-card:hover { background: #161616; }
.service-card:nth-child(2) .service-card__img img { object-position: center top; }
.service-card:nth-child(4) .service-card__img img { object-position: top center; }
.service-card__num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.18);
}
.service-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 8px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--true-white);
  line-height: 1.05;
}
.service-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.42);
}
.services-preview__cta { text-align: center; }

/* ── 10. Logo Wall ────────────────────────────────────────── */
.brands-section { background: var(--true-white); }
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-dark);
  border-left: 1px solid var(--border-dark);
  margin-top: 60px;
}
.logo-item {
  flex: 1 1 calc(33.333%);
  min-width: 160px;
  height: 108px;
  background: var(--true-white);
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  transition: background 0.3s var(--ease-out), color 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.logo-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  transform: translateY(100%);
  transition: transform 0.36s var(--ease-out);
}
.logo-item:hover::before { transform: translateY(0); }
.logo-item span {
  position: relative;
  z-index: 1;
  transition: color 0.28s ease;
}
.logo-item:hover span { color: var(--true-white); }
/* Replace text with actual <img> logos when assets arrive.
   Wrap each logo img in .logo-item > span for the hover effect. */

/* ── 11. Social Proof ─────────────────────────────────────── */
.social-proof { }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-mid);
  margin-top: 60px;
}
.proof-card {
  padding: 48px 28px;
  background: #0f0f0f;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease;
}
.proof-card:hover { background: #151515; }
.proof-card__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 0.02em;
  color: var(--true-white);
  line-height: 1;
}
.proof-card__label {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── 12. Campaigns (Instagram Reels) ─────────────────────── */
.campaigns { background: var(--bg-light); }
.campaigns__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 32px;
}
.campaigns__intro .section-headline { margin-bottom: 0; }
.campaigns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.campaign__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-bottom: 14px;
}
/* Force Instagram embeds to fill column width */
.campaign__embed { width: 100%; }
.campaign__embed .instagram-media {
  min-width: unset !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}

/* ── 13. Footer ───────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: clamp(64px, 8vh, 100px) 0 40px;
  border-top: 1px solid var(--border-mid);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 64px;
  align-items: start;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: 0.06em;
  color: var(--true-white);
  margin-bottom: 20px;
  line-height: 1;
}
.footer__logo span { color: #3a3a3a; }
.footer__tagline {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.35);
  max-width: 380px;
}
.footer__links { display: flex; gap: 60px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 10px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--true-white); }
.footer__bottom {
  border-top: 1px solid var(--border-mid);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer__bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* ── 14. Inner Page Headers ───────────────────────────────── */
.page-header {
  background: var(--bg-dark);
  padding: clamp(140px, 20vh, 240px) 0 clamp(72px, 9vh, 112px);
  position: relative;
  overflow: hidden;
}
.page-header__eyebrow { color: rgba(255,255,255,0.3); }
.page-header__headline {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--true-white);
  margin-bottom: 28px;
  max-width: 900px;
}
.page-header__sub {
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 580px;
}

/* ── 15. Talent Page ──────────────────────────────────────── */
.talent-section { background: var(--bg-light); }
.talent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-dark);
}
.athlete-card {
  background: var(--bg-light);
  overflow: hidden;
}
.athlete-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  filter: grayscale(1);
  transition: filter 0.5s ease, transform 0.6s var(--ease-out);
}
.athlete-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.athlete-card:hover .athlete-card__photo { filter: grayscale(0.2); }
.athlete-card:hover .athlete-card__photo img { transform: scale(1.04); }
.athlete-card__body { padding: clamp(24px, 3.5vw, 44px) clamp(24px, 3.5vw, 44px) clamp(36px, 5vw, 56px); }
.athlete-card__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.athlete-card__team {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-bottom: 18px;
}
.athlete-card__bio {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 24px;
}
.athlete-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  border: 1px solid var(--border-dark);
  padding: 6px 14px;
  transition: all 0.22s ease;
}
.athlete-card:hover .tag { border-color: var(--bg-dark); color: var(--bg-dark); }
.athlete-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 1px);
  justify-self: center;
}
.athlete-card:nth-child(5) .athlete-card__photo img { object-position: top center; }

/* ── 16. Services Page ────────────────────────────────────── */
.services-list { background: var(--bg-light); }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border-dark);
}
.service-row:nth-child(even) .service-row__content { order: -1; }
.service-row__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-row:hover .service-row__image img { transform: scale(1.04); }
.service-row:nth-child(2) .service-row__image img { object-position: center top; }
.service-row:nth-child(5) .service-row__image img { object-position: top center; }
.service-row__content {
  background: var(--bg-light);
  padding: clamp(40px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.service-row__num {
  font-family: var(--font-display);
  font-size: 88px;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  letter-spacing: 0.02em;
}
.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text-dark);
}
.service-row__body {
  font-size: 16px;
  line-height: 1.78;
  color: #4a4a4a;
  max-width: 480px;
}

/* ── 17. Brands Page ──────────────────────────────────────── */
.brands-why { background: var(--bg-light); }
.brands-why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}
.brands-why__headline {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}
.brands-why__body p {
  font-size: 17px;
  line-height: 1.78;
  color: #4a4a4a;
  margin-bottom: 20px;
}
.brands-work { background: var(--bg-dark); }
.brands-campaigns { background: var(--bg-light); }

/* ── 18. Work With Us ─────────────────────────────────────── */
.wws-section { background: var(--bg-light); }
.wws-layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.wws-form-col { min-width: 0; }
.wws-inner { }
.wws-contact {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.wws-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 120px;
}
.wws-media__img {
  width: 100%;
  aspect-ratio: 3 / 4;
}
.wws-media__img--sm {
  aspect-ratio: 4 / 3;
  margin-left: clamp(24px, 4vw, 48px);
}
.step-indicator {
  display: flex;
  gap: 6px;
  margin-bottom: 52px;
}
.step-dot {
  width: 6px;
  height: 6px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  transition: all 0.35s var(--ease-out);
}
.step-dot.active {
  background: var(--bg-dark);
  width: 28px;
  border-radius: 3px;
}
.form-question {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 44px;
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-group { margin-bottom: 36px; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-bottom: 10px;
}
.form-control {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.18);
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--bg-dark); }
.form-control::placeholder { color: #ccc; }
select.form-control {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 4px center;
  cursor: pointer;
  padding-right: 24px;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
  border: 1.5px solid rgba(0,0,0,0.18);
  border-radius: 0;
  padding: 14px;
  margin-top: 4px;
}
textarea.form-control:focus { border-color: var(--bg-dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.form-nav { display: flex; gap: 16px; align-items: center; margin-top: 48px; flex-wrap: wrap; }
.form-back {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}
.form-back:hover { color: var(--bg-dark); }
.form-confirm { display: none; text-align: center; padding: 80px 0; }
.form-confirm h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.form-confirm p { font-size: 16px; color: #555; line-height: 1.7; }

/* ── Work With Us Carousel ────────────────────────────────── */
.wws-carousel { overflow: hidden; }
.wws-carousel__track {
  display: flex;
  transition: transform 0.65s var(--ease-out);
  will-change: transform;
}
.wws-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3 / 4;
}
.wws-carousel__dots {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
}
.wws-carousel__dot {
  width: 6px;
  height: 6px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.wws-carousel__dot.active {
  background: var(--bg-dark);
  width: 28px;
  border-radius: 3px;
}

/* ── 19. Scroll Animations ────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ── 20. Responsive ───────────────────────────────────────── */
@media (max-width: 1200px) {
  .stats__grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid    { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .about__inner    { grid-template-columns: 1fr; gap: 40px; }
  .brands-why__inner { grid-template-columns: 1fr; gap: 40px; }
  .talent-grid     { grid-template-columns: 1fr; }
  .service-row     { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .service-row__content { order: 0; }
  .footer__inner   { grid-template-columns: 1fr; gap: 48px; }
  .wws-layout      { grid-template-columns: 1fr; }
  .wws-media       { display: none; }
  .athlete-card:last-child:nth-child(odd) { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 280px;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 36px;
    gap: 28px;
    transition: right 0.4s var(--ease-out);
    border-left: 1px solid var(--border-mid);
  }
  .nav__links.open { right: 0; }
  .nav__links li a { font-size: 13px; color: rgba(255,255,255,0.75); }
  .nav__toggle { display: flex; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .campaigns__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .campaigns__intro { flex-direction: column; align-items: flex-start; }
  .logo-wall .logo-item { flex: 1 1 50%; }
  .footer__links { flex-wrap: wrap; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .logo-wall .logo-item { flex: 1 1 100%; }
  .footer__links { flex-direction: column; }
}

/* ── FAQ Section ──────────────────────────────────────────── */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--border-dark);
}

.faq-item {
  border-bottom: 1px solid var(--border-dark);
}

.faq-item summary {
  list-style: none;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted-dark);
  max-width: 720px;
}

.form-confirm__title {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
