:root {
    --bg: #fefefe;
    --ink: #333333;
    --muted: #85878c;
    --body: #46484c;
    --line: #e2e5e9;
    --tile: #bce2fa;
    --accent: #218ae7;
    --cream: #fefefe;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; background: var(--bg); color: var(--ink); font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif; -webkit-font-smoothing: antialiased; }
  a { color: var(--ink); text-decoration: none; }
  a:hover { color: var(--accent); }
  img { max-width: 100%; display: block; }
  .serif { font-family: 'Archivo Black', 'Arial Black', sans-serif; font-weight: 400; letter-spacing: -0.01em; }
  .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
  .btn { display: inline-flex; align-items: center; gap: 12px; height: 56px; padding: 0 28px; background: var(--accent); color: var(--cream); font-weight: 600; font-size: 16px; border-radius: 999px; transition: transform 160ms ease, box-shadow 160ms ease; }
  .btn:hover { background: #1c519d; color: var(--cream); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(30,32,36,0.15); }
  .textlink { font-size: 15px; font-weight: 600; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; }

  /* Nav */
  nav { display: flex; align-items: center; justify-content: space-between; padding: 28px 0; }
  .wordmark { font-size: 26px; line-height: 1; }
  .wordmark em { font-style: italic; color: var(--muted); }
  .navlinks { display: flex; align-items: center; gap: 36px; font-size: 14px; font-weight: 600; }
  .navbtn { display: inline-flex; align-items: center; height: 44px; padding: 0 20px; background: var(--ink); color: var(--cream); border-radius: 999px; }
  .navbtn:hover { color: var(--cream); background: #17181a; }

  /* Hero */
  .hero { display: grid; grid-template-columns: 7fr 5fr; gap: 56px; padding: 72px 0 88px; align-items: center; }
  .hero h1 { margin: 0; font-size: clamp(52px, 8vw, 118px); line-height: 0.96; }
  .hero h1 em { font-style: italic; color: var(--accent); }
  .hero p { margin: 0; max-width: 540px; font-size: 19px; line-height: 1.6; color: var(--body); }
  .hero-left { display: flex; flex-direction: column; gap: 28px; }
  .cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
  .stats { display: flex; gap: 40px; padding-top: 8px; flex-wrap: wrap; }
  .stat .num { font-size: 34px; line-height: 1; }
  .stat .label { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 4px; }
  .hero-photos { position: relative; height: 600px; }
  .hero-photos .frame { position: absolute; width: 270px; aspect-ratio: 9 / 16; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 48px rgba(30,32,36,0.16); }
  .hero-photos .frame img, .hero-photos .frame video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .playmark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.9); }
  .frame.f2 .playmark { color: rgba(30,32,36,0.55); }
  .frame.has-video .playmark { display: none; }
  .frame.f1 { left: 4%; top: 90px; transform: rotate(-3deg); background: var(--accent); }
  .frame.f2 { left: 44%; top: 0; transform: rotate(4deg); background: #d9d3c2; }

  /* Clients */
  .clients { padding: 0 0 88px; }
  .clients .row { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 22px; }
  .clients .cell { min-height: 104px; border-right: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--body); font-size: 17px; font-weight: 700; letter-spacing: 0.02em; text-align: center; padding: 16px 12px; }
  .clients .cell:last-child { border-right: none; }

  /* Partner */
  .partner { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .experience { padding: 76px 0; }
  .exp-head { max-width: 880px; }
  .exp-title { margin: 12px 0 0; font-size: clamp(36px, 4.2vw, 58px); line-height: 1.05; }
  .exp-title em { font-style: italic; color: var(--accent); }
  .exp-copy { margin: 20px 0 0; font-size: 18px; line-height: 1.6; color: var(--body); max-width: 720px; }
  .index-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); margin-top: 44px; }
  .index-cell { display: flex; flex-direction: column; gap: 10px; padding: 28px 24px; border-right: 1px solid var(--line); }
  .index-cell:first-child { padding-left: 0; }
  .index-cell:last-child { border-right: none; padding-right: 0; }
  .index-text { font-size: 23px; line-height: 1.25; }
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 20px; }
  .step p { margin: 10px 0 0; font-size: 15px; line-height: 1.55; color: var(--body); }
  .accent-num { color: var(--accent); }

  /* Roster */
  .roster { padding: 92px 0 88px; }
  .roster-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
  .roster h2 { margin: 12px 0 0; font-size: clamp(40px, 4.6vw, 64px); line-height: 1; }
  .roster h2 em { font-style: italic; }
  .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 44px; }
  .card .photo { aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; background: var(--tile); }
  .card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
  .card:hover .photo img { transform: scale(1.03); }
  .card .meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
  .card .name { font-size: 26px; line-height: 1.1; }
  .card .sub { font-size: 13px; color: var(--muted); white-space: nowrap; }

  /* CTA */
  .cta { margin: 0 0 48px; }
  .cta .box { border-radius: 20px; background: var(--ink); color: var(--cream); padding: 80px 72px; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
  .cta h2 { margin: 0; font-size: clamp(44px, 5.6vw, 76px); line-height: 1; }
  .cta h2 em { font-style: italic; color: var(--accent); }
  .cta p { margin: 14px 0 0; font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.75); max-width: 520px; }

  /* Footer */
  footer { display: flex; align-items: center; justify-content: space-between; padding: 36px 0 44px; font-size: 14px; color: var(--muted); gap: 20px; flex-wrap: wrap; }
  footer .links { display: flex; gap: 28px; }
  footer a { color: var(--muted); }

  /* Reveal */
  @media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); }
    .reveal.in { opacity: 1; transform: none; }
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding-top: 48px; }
    .hero-photos { height: 480px; max-width: 560px; }
    .hero-photos .frame { width: 220px; }
    .index-strip { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .index-cell { border-right: none; border-bottom: 1px solid var(--line); padding-left: 0; padding-right: 0; }
    .index-cell:last-child { border-bottom: none; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .clients .row { grid-template-columns: repeat(3, 1fr); }
    .clients .cell:nth-child(3n) { border-right: none; }
    .clients .cell:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  }
  @media (max-width: 640px) {
    .wrap { padding: 0 22px; }
    .navlinks a:not(.navbtn) { display: none; }
    .hero-photos { height: 400px; }
    .hero-photos .frame { width: 180px; }
    .frame.f2 { left: 48%; }
    .cards { grid-template-columns: 1fr; }
    .clients .row { grid-template-columns: repeat(2, 1fr); }
    .clients .cell { border-right: none; border-bottom: 1px solid var(--line); }
    .clients .cell:nth-child(odd) { border-right: 1px solid var(--line); }
    .clients .cell:nth-child(n+5) { border-bottom: none; }
    .cta .box { padding: 56px 32px; }
  }

/* Page header (interior pages) */
.pagehead { padding: 72px 0 44px; max-width: 880px; display: flex; flex-direction: column; gap: 24px; }
.pagehead h1 { margin: 0; font-size: clamp(48px, 6.6vw, 100px); line-height: 0.98; }
.pagehead h1 em { font-style: italic; color: var(--accent); }
.pagehead p { margin: 0; font-size: 18px; line-height: 1.6; color: var(--body); max-width: 620px; }
.roster-grid { margin-top: 8px; margin-bottom: 56px; }
.photo.tile { display: flex; align-items: center; justify-content: center; }
.photo.tile span { font-size: 96px; color: #1c519d; }

/* Staggered reveal children */
@media (prefers-reduced-motion: no-preference) {
  .cards .card.reveal:nth-child(3n+2) { transition-delay: 90ms; }
  .cards .card.reveal:nth-child(3n+3) { transition-delay: 180ms; }
  .steps .step { opacity: 0; transform: translateY(14px); transition: opacity 600ms cubic-bezier(.2,.8,.2,1), transform 600ms cubic-bezier(.2,.8,.2,1); }
  .how.reveal.in .step { opacity: 1; transform: none; }
  .how.reveal.in .step:nth-child(2) { transition-delay: 120ms; }
  .how.reveal.in .step:nth-child(3) { transition-delay: 240ms; }
  .how.reveal.in .step:nth-child(4) { transition-delay: 360ms; }
}

/* About page */
.about-story { display: grid; grid-template-columns: 7fr 5fr; gap: 56px; padding: 0 0 72px; align-items: start; }
.about-story .copy p { margin: 0 0 20px; font-size: 17px; line-height: 1.7; color: var(--body); max-width: 60ch; }
.about-story .copy p:last-child { margin-bottom: 0; }
.about-photo { aspect-ratio: 4 / 3; border-radius: 14px; background: var(--tile); overflow: hidden; align-self: center; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-section { border-top: 1px solid var(--line); padding: 64px 0; }

/* Contact page */
.talk { background: var(--accent); color: var(--cream); border-radius: 20px; margin: 24px 0 48px; padding: 72px 64px; display: grid; grid-template-columns: 5fr 7fr; gap: 56px; }
.talk h1 { margin: 12px 0 0; font-size: clamp(48px, 6.6vw, 96px); line-height: 0.98; }
.talk h1 em { font-style: italic; }
.talk .eyebrow { color: rgba(255,255,255,0.75); }
.talk p { margin: 18px 0 0; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 46ch; }
.talk form { display: flex; flex-direction: column; gap: 18px; }
.talk label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; }
.talk .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.talk input, .talk textarea { width: 100%; border: 1.5px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); color: var(--cream); border-radius: 999px; height: 52px; padding: 0 20px; font-family: inherit; font-size: 15px; }
.talk textarea { border-radius: 20px; min-height: 140px; padding: 16px 20px; resize: vertical; }
.talk input::placeholder, .talk textarea::placeholder { color: rgba(255,255,255,0.55); }
.talk input:focus, .talk textarea:focus { outline: 2px solid var(--cream); outline-offset: 1px; }
.talk .send { align-self: flex-start; display: inline-flex; align-items: center; height: 56px; padding: 0 30px; background: var(--cream); color: var(--ink); font-weight: 700; font-size: 15px; border-radius: 999px; border: none; cursor: pointer; font-family: inherit; }
.talk .send:hover { transform: translateY(-2px); }
.contact-alt { padding: 0 0 72px; font-size: 15px; color: var(--muted); }
@media (max-width: 1024px) {
  .about-story { grid-template-columns: 1fr; }
  .talk { grid-template-columns: 1fr; padding: 56px 32px; }
}
@media (max-width: 640px) {
  .talk .row { grid-template-columns: 1fr; }
}

/* Hero B: inline reels in the headline */
.heroB { padding: 72px 0 64px; }
.heroB h1 { margin: 22px 0 0; font-size: clamp(48px, 8.6vw, 126px); line-height: 1.0; letter-spacing: -0.015em; max-width: 9.6em; }
.heroB h1 em { font-style: italic; color: var(--accent); }
.chip { display: inline-flex; width: 1.95em; height: 1.02em; border-radius: 999px; overflow: hidden; vertical-align: -0.14em; background: var(--tile); position: relative; }
.chip.c1 { background: var(--accent); }
.heroB .chip:not(.c1) { background: var(--ink); }
.heroB .chip:not(.c1) .playmark { color: rgba(255,255,255,0.55); }
.chip video { width: 100%; height: 100%; object-fit: cover; display: block; }
.chip .playmark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(30,32,36,0.35); }
.chip.c1 .playmark { color: rgba(255,255,255,0.75); }
.chip .playmark svg { width: 0.5em; height: 0.5em; }
.chip.has-video .playmark { display: none; }
.heroB-under { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
.heroB-under .lead { font-size: 19px; line-height: 1.55; color: var(--body); max-width: 44ch; }
.heroB-meta { display: flex; gap: 40px; margin-top: 44px; border-top: 1px solid var(--ink); padding-top: 22px; flex-wrap: wrap; }
.heroB-meta .m { display: flex; align-items: baseline; gap: 10px; }
.heroB-meta .serif { font-size: 30px; }
.heroB-meta .label { font-size: 13px; color: var(--muted); }
@media (max-width: 640px) {
  .heroB { padding: 48px 0 56px; }
  .heroB-meta { gap: 24px; }
}

/* Logo */
.logo { height: 34px; width: auto; display: block; }
.logo-sm { height: 24px; }

/* For creators */
.join { padding: 92px 0 72px; }
.join h2 { margin: 12px 0 0; font-size: clamp(40px, 4.6vw, 64px); line-height: 1.02; }
.join h2 em { font-style: italic; color: var(--accent); }
.join-lead { margin: 18px 0 0; font-size: 18px; line-height: 1.6; color: var(--body); max-width: 62ch; }
.join-req { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.join-req li { display: flex; gap: 12px; align-items: flex-start; background: #f4f8fc; border-radius: 14px; padding: 20px 22px; font-size: 15px; line-height: 1.55; color: var(--body); }
.join-req .check { flex: 0 0 20px; height: 20px; border-radius: 50%; background: var(--accent); position: relative; margin-top: 1px; }
.join-req .check::after { content: ""; position: absolute; left: 7px; top: 4px; width: 4px; height: 9px; border: solid #fefefe; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }
@media (max-width: 1024px) { .join-req { grid-template-columns: 1fr; } }

/* Contact brand/creator toggle */
.who-toggle { display: inline-flex; margin-top: 24px; border: 1.5px solid rgba(255,255,255,0.6); border-radius: 999px; padding: 4px; gap: 4px; }
.segbtn { border: none; background: transparent; color: rgba(255,255,255,0.85); font-family: inherit; font-size: 14px; font-weight: 700; padding: 9px 18px; border-radius: 999px; cursor: pointer; }
.segbtn.active { background: var(--cream); color: var(--ink); }

/* Country list under join requirements */
.join-regions { margin-top: 28px; border-top: 1px solid var(--ink); }
.jr-row { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.jr-label { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); padding-top: 2px; }
.jr-countries { font-size: 15px; line-height: 1.6; color: var(--body); }
@media (max-width: 640px) { .jr-row { grid-template-columns: 1fr; gap: 4px; } }

/* Contact: brand vs creator field sets */
.talk select { width: 100%; border: 1.5px solid rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); color: var(--cream); border-radius: 999px; height: 52px; padding: 0 16px; font-family: inherit; font-size: 15px; }
.talk select:focus { outline: 2px solid var(--cream); outline-offset: 1px; }
.talk select option, .talk select optgroup { color: var(--ink); background: var(--cream); }
#contact-form .only-creator { display: none; }
#contact-form.mode-creator .only-creator { display: block; }
#contact-form.mode-creator .row.only-creator { display: grid; }
#contact-form.mode-creator .only-brand { display: none; }

/* Homepage crew photo band */
.crew-band { margin: 8px 0 0; }
.crew-band img { display: block; width: 100%; height: auto; border-radius: 20px; }

/* Creator-mode Calendly button on contact */
.book-call { margin-top: 22px; display: none; align-items: center; gap: 14px; flex-wrap: wrap; }
.talk.mode-creator .book-call { display: flex; }
.book-lead { font-size: 15px; color: rgba(255,255,255,0.85); }
.callbtn { display: inline-flex; align-items: center; border: 1.5px solid rgba(255,255,255,0.7); color: var(--cream); border-radius: 999px; padding: 11px 22px; font-weight: 700; font-size: 15px; }
.callbtn:hover { background: var(--cream); color: var(--ink); }

/* Contact form: server-send success state and spam honeypot */
.talk .hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; padding: 0; border: 0; pointer-events: none; }
.form-done { align-self: center; }
.form-done-title { font-size: clamp(36px, 4vw, 52px); line-height: 1; margin: 0; }
.form-done p { margin: 14px 0 0; color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; max-width: 46ch; }
