/* ===================== RESET & BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #111111;
  --white: #ffffff;
  --gray-bg: #f4f4f4;
  --gray-line: #e2e2e2;
  --gray-text: #555555;
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Display / heading typography */
.hero-title,
.section-title,
.cta-title,
.work-card h3,
.service h3 {
  font-family: "Anton", "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo { display: flex; align-items: center; gap: 12px; color: var(--black); }
.logo-img { height: 56px; width: auto; object-fit: contain; }

.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  transition: opacity .2s;
}
.main-nav a:hover { opacity: .55; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--black);
  transition: .3s;
}

/* ===================== HERO ===================== */
.hero {
  background:
    radial-gradient(120% 140% at 50% 35%, #fbfbfb 0%, #eaeaea 55%, #d8d8d8 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  min-height: 560px;
}
.hero-copy { padding: 60px 0; align-self: start; }
.hero-title {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.92;
  margin-bottom: 28px;
}
.hero-subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 22px;
}
.hero-desc {
  max-width: 380px;
  color: #333;
  margin-bottom: 34px;
}

.hero-visual { align-self: end; height: 100%; display: flex; align-items: flex-end; justify-content: center; overflow: visible; }
.hero-photo-img {
  width: 160%;
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
  transform: translateX(0%);
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 17px 30px;
  transition: transform .2s, background .2s, color .2s;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(5px); }

/* ===================== TRUSTED / CLIENTS ===================== */
.trusted { padding: 46px 0; border-bottom: 1px solid var(--gray-line); }
.trusted-label {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.client-logo-img {
  flex: none;
  height: 88px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .85;
}
.client-logo-img--tnt { height: 118px; max-width: 280px; }

/* ===================== SECTION HEAD ===================== */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.section-title { font-size: clamp(30px, 4vw, 42px); }
.section-title.center { text-align: center; margin-bottom: 48px; }

.link-arrow {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  color: var(--black);
  cursor: pointer;
}
.link-arrow:hover { opacity: .6; }

/* ===================== RECENT WORK ===================== */
.work { padding: 74px 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.work-card {
  position: relative;
  aspect-ratio: 3 / 4.2;
  border-radius: 2px;
  overflow: hidden;
  background: #1a1a1a;
  cursor: pointer;
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.85) 100%),
    repeating-linear-gradient(115deg, #2a2a2a 0 14px, #1c1c1c 14px 28px);
  filter: grayscale(1);
  transition: transform .5s ease;
}
.work-card.wc-1::before { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.85)), url("assets/work-davis-cup-qualifiers.png") center/cover no-repeat; filter: none; }
.work-card.wc-2::before { background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.85)), url("assets/work-inter-miami.png") center/cover no-repeat; filter: none; }
.work-card.wc-3::before { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.88)), url("assets/work-boxing.png") center/cover no-repeat; filter: none; }
.work-card.wc-4::before { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.88)), url("assets/work-mba.png") center/cover no-repeat; filter: none; }
.work-card.wc-5::before { background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.85)), url("assets/work-baller-league.png") center/cover no-repeat; filter: none; }
.work-card:hover::before { transform: scale(1.07); }

.work-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px;
  color: var(--white);
  z-index: 1;
}
.work-card h3 { font-size: 15px; line-height: 1.1; margin-bottom: 4px; }
.work-caption p {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .8;
}

/* ===================== SERVICES ===================== */
.services { background: var(--gray-bg); padding: 74px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service {
  text-align: center;
  padding: 10px 34px;
  border-right: 1px solid var(--gray-line);
}
.service:last-child { border-right: none; }
.service-icon { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--black); }
.service-icon svg { width: 66px; height: 48px; }
.service h3 { font-size: 20px; margin-bottom: 14px; }
.service p { color: var(--gray-text); max-width: 260px; margin: 0 auto; }

/* ===================== ABOUT ===================== */
.about { background: var(--gray-bg); padding: 20px 0 80px; }
.about-inner { max-width: 820px; }
.about .section-title { margin-bottom: 26px; }
.about-text p { color: #2f2f2f; margin-bottom: 16px; font-size: 16.5px; }

/* ===================== CTA ===================== */
.cta { background: #ededed; padding: 48px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-title { font-size: clamp(26px, 3.4vw, 40px); line-height: 1; margin-bottom: 8px; }
.cta-copy p { color: var(--gray-text); }
.btn-wa .wa-icon { width: 22px; height: 22px; }

/* ===================== FOOTER ===================== */
.site-footer { border-top: 1px solid var(--gray-line); padding: 30px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo-img { height: 44px; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-logo-text small { font-size: 10px; letter-spacing: 1px; color: var(--gray-text); text-transform: uppercase; }
.footer-contact { display: flex; gap: 34px; flex-wrap: wrap; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #222; }
.footer-contact a:hover { opacity: .6; }
.fc-ico { font-size: 15px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .work-card:nth-child(4), .work-card:nth-child(5) { aspect-ratio: 3/3.4; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--gray-line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a { padding: 16px 24px; border-top: 1px solid var(--gray-line); }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 50px 0 10px; }
  .hero-visual { max-width: 380px; margin: 0 auto; overflow: hidden; }
  .hero-photo-img { width: 100%; transform: none; }
  .hero-desc { max-width: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--gray-line); padding: 30px 10px; }
  .service:last-child { border-bottom: none; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card { aspect-ratio: 3/3.6; }
  .work-card:nth-child(5) { grid-column: 1 / -1; aspect-ratio: 16/7; }
  .work-card:nth-child(5)::before, .work-card:nth-child(5) { }

  .trusted-logos { gap: 34px 44px; justify-content: center; }
  .client-logo-img { flex: 0 0 auto; height: 56px; }
  .client-logo-img--tnt { height: 74px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-contact { gap: 14px 24px; }
  .btn-wa { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card, .work-card:nth-child(5) { aspect-ratio: 16/8; }
}

/* ===================== INSTAGRAM VIDEO MODAL ===================== */
.ig-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.ig-modal.is-open { display: block; }
.ig-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .82);
}
.ig-modal-panel {
  position: relative;
  z-index: 1;
  max-width: 960px;
  max-height: 88vh;
  margin: 6vh auto;
  background: var(--white);
  border-radius: 6px;
  overflow-y: auto;
  padding: 48px 20px 24px;
  transition: max-width .2s ease;
}
.ig-modal-panel.is-wide {
  max-width: 1240px;
  width: 92vw;
  max-height: 90vh;
  margin: 5vh auto;
}
.ig-modal-close {
  position: absolute;
  top: 8px; right: 12px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--black);
  cursor: pointer;
  padding: 6px 10px;
}
.ig-modal-body {
  display: flex;
  justify-content: center;
}
.ig-modal-body.is-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.ig-modal-body.is-grid .instagram-media {
  flex: 0 1 320px !important;
  width: 100% !important;
  max-width: 320px !important;
  margin: 0 18px 44px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid var(--gray-line) !important;
  box-sizing: border-box !important;
}
.ig-modal-video {
  display: block;
  width: 100%;
  max-width: 540px;
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 3px;
  background: #000;
}
.ig-modal-body.is-grid .ig-modal-video {
  flex: 0 1 320px;
  width: 100%;
  max-width: 320px;
  max-height: none;
  margin: 0 18px 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-line);
  box-sizing: border-box;
}
.ig-modal-loading {
  padding: 60px 20px;
  text-align: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  color: var(--gray-text);
}
@media (max-width: 620px) {
  .ig-modal-panel { margin: 3vh auto; max-height: 94vh; padding: 44px 12px 16px; }
}
