/* ============================================================
   SKY FILMS — global stylesheet
   Design tokens: bg #000 · cards #0d0d0d / #0b0b0b · accent #9c1f1a
   Font: Manrope 300–800
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #000; }
body {
  font-family: 'Manrope', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  overflow-x: clip;
}
a { color: #fff; }
a:hover { color: #c9c9c9; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }

/* ---------- keyframes ---------- */
@keyframes shine    { to { background-position: -200% center; } }
@keyframes spin     { to { transform: rotate(1turn); } }
@keyframes marquee  { to { transform: translateX(-50%); } }
@keyframes floaty   { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes blink    { 0%,100% { opacity: 1; box-shadow: 0 0 9px 3px rgba(150,20,16,0.75); }
                      50%     { opacity: 0.25; box-shadow: 0 0 0 0 rgba(150,20,16,0); } }
@keyframes logoGlow { 0%,100% { text-shadow: 0 0 16px rgba(255,255,255,0.75), 0 0 4px rgba(255,255,255,0.5); }
                      50%     { text-shadow: 0 0 2px rgba(255,255,255,0.1); } }

/* ---------- shine headline utility ---------- */
.shine {
  background: linear-gradient(110deg,
    rgba(255,255,255,0.93) 36%, rgba(255,255,255,0.55) 45%, #ffffff 50%,
    rgba(255,255,255,0.55) 55%, rgba(255,255,255,0.93) 64%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shine var(--shine-dur, 4.2s) linear var(--shine-delay, 0s) infinite;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.65)) drop-shadow(0 0 30px rgba(255,255,255,0.35));
}

/* ---------- header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 22px;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.logo {
  font-size: 15px; font-weight: 800; letter-spacing: 0.14em;
  text-decoration: none; color: #fff;
  animation: logoGlow 2.6s ease-in-out infinite;
  display: inline-flex; flex-shrink: 0;
}
.logo span { display: inline-block; transition: transform 0.15s ease-out; }
.logo .gap { width: 0.45em; }

.site-nav {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  flex: 1; justify-content: center;
}
.nav-link {
  font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none;
  cursor: pointer; padding: 12px 0; display: inline-block;
  background: none; border: none; font-family: inherit;
}
.nav-link.current { color: #fff; font-weight: 700; }
.nav-link:hover {
  background: linear-gradient(110deg, currentColor 30%, #ffffff 45%, #ffffff 55%, currentColor 70%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 1.6s linear infinite;
}
.navdrop { position: relative; }
.navdrop .menu {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  flex-direction: column; gap: 2px;
  background: #0b0b0b; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 8px; min-width: 200px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}
.navdrop:hover .menu, .navdrop.open .menu { display: flex; }
.menu a {
  font-size: 13px; color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 10px 14px; border-radius: 8px; white-space: nowrap;
}
.menu a:hover { color: #9c1f1a; background: rgba(255,255,255,0.05); }

.book-pill {
  font-size: 13px; font-weight: 700; color: #000; background: #fff;
  padding: 9px 16px; border-radius: 10px; text-decoration: none; flex-shrink: 0;
}
.book-pill:hover { background: #9c1f1a; color: #fff; }

.back-link { font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; }
.back-link:hover { color: #fff; }

/* hamburger (mobile only) */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-shrink: 0; order: 3;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: #fff;
  margin: 4px 0; border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- shimmer CTA (conic light orbiting the border) ---------- */
.shimmer-cta {
  position: relative; display: inline-flex; padding: 2px; border-radius: 14px;
  overflow: hidden; text-decoration: none; isolation: isolate;
}
.shimmer-cta .orbit {
  position: absolute; inset: -120%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 290deg, rgba(255,255,255,0.95) 330deg, transparent 360deg);
  animation: spin 3.2s linear infinite;
}
.shimmer-cta .inner {
  position: relative; background: #0a0a0a; border-radius: 12px;
  padding: 15px 30px; color: #fff; font-size: 15px; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}
.shimmer-cta.small { border-radius: 12px; }
.shimmer-cta.small .orbit { inset: -160%; }
.shimmer-cta.small .inner { border-radius: 10px; padding: 12px 22px; font-size: 14px; }

/* ---------- badges / cards ---------- */
.badge-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 22px; border-radius: 999px;
  background: rgba(20,20,20,0.7); border: 1px solid rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 14px; color: rgba(255,255,255,0.85);
}
.badge-pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #9c1f1a;
  display: inline-block; animation: blink 1.4s ease-in-out infinite;
}
.section-tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.card {
  background: #0d0d0d; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 26px;
}
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.card-body  { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }
a.card { text-decoration: none; display: block; }
a.card:hover { border-color: rgba(255,255,255,0.28); }
.card .explore { margin-top: 14px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65); }

/* stat cards on service pages */
.stat-card {
  background: #0d0d0d; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px;
  padding: 28px 26px; text-align: center;
  display: flex; flex-direction: column; gap: 8px;
}
.stat-card .num { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; }
.stat-card .cap { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ---------- marquees ---------- */
.marquee-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-mask.wide-fade {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex; align-items: center; gap: 80px; width: max-content;
  animation: marquee 26s linear infinite; padding: 6px 0;
}
.logo-track img { height: 30px; width: auto; opacity: 0.8; display: block; }
.logo-track img.lg-ufc { height: 38px; }
.logo-track img.lg-pga { height: 24px; }
.logo-track img.lg-raf { height: 46px; }
.logo-track img.lg-ot  { height: 44px; }
.logo-track img.lg-tr  { height: 30px; }
.logo-track img.lg-jk  { height: 19px; }
.testi-track { display: flex; gap: 24px; width: max-content; padding: 4px 0; }

.testi-card {
  width: min(400px, 84vw); flex: none;
  background: #0d0d0d; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.testi-card .who { display: flex; align-items: center; gap: 14px; }
.testi-card .who img, .testi-card .who .avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: #1a1a1a;
}
.testi-card .who .avatar {
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: rgba(255,255,255,0.85);
  background: #191919; border: 1px solid rgba(255,255,255,0.14); flex: none;
}
.testi-card .name { font-size: 17px; font-weight: 700; }
.testi-card .role { font-size: 13px; color: rgba(255,255,255,0.5); }
.testi-card p { margin: 0; font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.72); }
.testi-card .stars { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.testi-card .stars b { font-size: 14px; font-weight: 700; }
.testi-card .stars span { color: #e8b64c; font-size: 14px; letter-spacing: 2px; }

/* ---------- video frames / slots ---------- */
.video-frame {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14); background: #0c0c0c;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- per-video sound toggle ---------- */
.sf-snd {
  position: absolute; right: 10px; bottom: 10px; z-index: 5;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0.85; transition: opacity .15s, background .15s;
}
.sf-snd:hover { opacity: 1; background: rgba(0,0,0,0.85); }
.sf-snd svg { width: 16px; height: 16px; display: block; pointer-events: none; }

/* ---------- forms ---------- */
.field {
  background: #0e0e0e; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 14px 16px; color: #fff; font-size: 14px;
  font-family: inherit; min-width: 0; width: 100%;
}
textarea.field { resize: vertical; }
.btn-white {
  background: #fff; color: #000; border: none; border-radius: 12px;
  padding: 14px 32px; font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.btn-white:hover { background: #e6e6e6; }

/* ---------- gallery thumbnails (small fixed-size stills) ---------- */
.gal-thumb { width: 180px; flex: none; transition: border-color .15s; }
.gal-thumb.active { border-color: rgba(255,255,255,0.7); }
[data-slot-group]:has(.gal-thumb) > .slot-add {
  width: 180px; min-height: 0; aspect-ratio: 16/9; flex: none;
}
@media (max-width: 480px) {
  /* three small thumbnails per row with clear gaps */
  .gal-thumb { width: calc((100% - 24px) / 3); }
  [data-slot-group]:has(.gal-thumb) > .slot-add { width: calc((100% - 24px) / 3); }
}

/* ---------- video fade-in (no black pop) ---------- */
.video-frame > video, .spiral-card > video { opacity: 0; transition: opacity .45s ease; }
.video-frame > video.sf-ready, .spiral-card > video.sf-ready { opacity: 1; }

/* ---------- fullscreen video lightbox ---------- */
.sf-lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
}
.sf-lightbox video {
  max-width: 92vw; max-height: 84vh;
  border-radius: 14px; border: 1px solid rgba(255,255,255,0.2);
  background: #000;
  opacity: 0; transition: opacity .35s ease;
}
.sf-lightbox video.sf-ready { opacity: 1; }
.sf-lb-spin {
  position: absolute;
  width: 46px; height: 46px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.2); border-top-color: #fff;
  animation: spin 0.9s linear infinite;
}
.sf-lb-close {
  position: absolute; top: 16px; right: 16px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(20,20,20,0.9); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 17px; font-family: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.sf-lb-close:hover { background: #222; }

/* vertical video grids: 3 across on phones, centered */
@media (max-width: 760px) {
  [data-slot-group="social"], [data-slot-group="athlete"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
}

/* ---------- slot management (owner) ---------- */
.slot-hidden { display: none !important; }
.slot-add {
  border: 1.5px dashed rgba(255,255,255,0.25); border-radius: 12px;
  background: transparent; color: rgba(255,255,255,0.55);
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; min-height: 120px; padding: 10px;
}
.slot-add:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

/* ---------- footer ---------- */
.site-footer {
  margin-top: auto;
  padding: 40px 24px 48px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  max-width: 1200px; width: 100%; margin-left: auto; margin-right: auto;
}
.site-footer .wordmark { font-size: 15px; font-weight: 800; letter-spacing: 0.14em; }
.site-footer .copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.site-footer a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }

/* ---------- smoke background element ---------- */
smoke-bg { display: block; pointer-events: none; }
smoke-bg canvas {
  width: 100%; height: 100%; display: block;
  filter: blur(13px) contrast(1.3); opacity: 0.85;
}
.smoke-abs { position: absolute; inset: -6%; width: 112%; height: 112%; }

/* ---------- service page layout helpers ---------- */
.page-col { min-height: 100vh; display: flex; flex-direction: column; }
.svc-hero {
  position: relative; padding: 170px 20px 60px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 26px; overflow: hidden;
}
.svc-hero .inner {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 26px; width: 100%;
}
.svc-hero h1 {
  margin: 0; font-size: clamp(42px, 6.5vw, 84px); font-weight: 400;
  letter-spacing: -0.03em; line-height: 1.05; max-width: 940px;
}
.svc-hero .sub {
  margin: 0; max-width: 660px;
  font-size: clamp(16px, 2vw, 19px); line-height: 1.65; color: rgba(255,255,255,0.62);
}
.grid { display: grid; gap: 16px; }
.grid-240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-300 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.wrap-1100 { max-width: 1100px; margin: 0 auto; }
.wrap-1200 { max-width: 1200px; margin: 0 auto; }

/* ---------- mobile ---------- */
@media (max-width: 760px) {
  .site-nav {
    display: none;
    position: fixed; top: 61px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(0,0,0,0.94);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 18px 18px;
  }
  .site-nav.open { display: flex; }
  .nav-link { padding: 13px 4px; font-size: 15px; }
  .navdrop .menu {
    display: flex; position: static; transform: none;
    background: transparent; border: none; box-shadow: none;
    padding: 0 0 0 14px; min-width: 0;
  }
  .navdrop > .nav-link { display: none; }
  .menu a { font-size: 14px; padding: 11px 8px; }
  .nav-toggle { display: block; }
  .site-header { flex-wrap: nowrap; }
  .book-pill { order: 2; margin-left: auto; }
  .logo-track { gap: 44px; animation-duration: 11s; }
  .logo-track img { height: 24px; }
  .logo-track img.lg-ufc { height: 30px; }
  .logo-track img.lg-pga { height: 19px; }
  .logo-track img.lg-raf { height: 37px; }
  .logo-track img.lg-ot  { height: 35px; }
  .logo-track img.lg-tr  { height: 24px; }
  .logo-track img.lg-jk  { height: 15px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .shine, .nav-link:hover, .logo, .badge-pill .dot,
  .shimmer-cta .orbit, .logo-track, .scroll-float { animation: none !important; }
  .shine {
    background: none; color: rgba(255,255,255,0.93);
    -webkit-text-fill-color: currentColor;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.4));
  }
  smoke-bg { display: none; }
}
