/* =========================================================
   SPARTA PRODUCTIONS — Design System
   Direction: prestige / cinematic / editorial-dark
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,340;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,650;1,9..144,400;1,9..144,500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=switzer@400,500,600,700&display=swap');

:root{
  /* --- color --- */
  --bg:        #0a0908;
  --bg-raised: #15130f;
  --bg-deep:   #060605;
  --panel:     #1c1913;
  --line:      #322c22;
  --line-soft: rgba(180,134,62,0.16);

  --ink:       #f3eee3;
  --ink-dim:   #b8ab93;
  --ink-faint: #746a56;

  --bronze:        #b4863e;
  --bronze-bright: #dcac4f;
  --bronze-dim:    #7d6535;
  --oxblood:       #7a3232;
  --oxblood-bright:#a34a4a;

  /* --- type --- */
  --f-display: 'Fraunces', 'Iowan Old Style', 'Georgia', serif;
  --f-body: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad: clamp(48px, 6vw, 88px);
  --edge: clamp(24px, 6vw, 72px);
  --col-copy: 700px;

  --ease: cubic-bezier(.16,.8,.24,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* film-grain atmosphere, fixed over everything */
body::before{
  content:'';
  position:fixed; inset:0;
  z-index:2000;
  pointer-events:none;
  opacity:0.035;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* vignette for depth */
body::after{
  content:'';
  position:fixed; inset:0;
  z-index:1999;
  pointer-events:none;
  background:radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--f-display); margin:0; font-weight:500; letter-spacing:-0.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

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

:focus-visible{
  outline:2px solid var(--bronze-bright);
  outline-offset:3px;
}

.container{
  max-width:1320px;
  margin:0 auto;
  padding-left:var(--edge);
  padding-right:var(--edge);
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:14px;
  font-family:var(--f-body);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.22em;
  text-transform:uppercase;
  color:var(--bronze);
}
.eyebrow::before{
  content:'';
  width:28px; height:1px;
  background:var(--bronze);
  display:block;
}

.rule{
  height:1px;
  width:100%;
  background:linear-gradient(90deg, var(--line-soft), var(--line) 40%, transparent);
}

/* =========================================================
   NAV
   ========================================================= */
.site-nav{
  position:fixed; top:0; left:0; right:0;
  z-index:1000;
  padding:26px var(--edge);
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom:1px solid transparent;
}
.site-nav.is-scrolled{
  background:rgba(10,9,8,0.86);
  backdrop-filter:blur(14px) saturate(140%);
  padding-top:16px; padding-bottom:16px;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--f-display);
  font-size:19px;
  letter-spacing:0.04em;
}
.brand .brand-word{ 
  font-weight:500;
  background: linear-gradient(135deg, #ffffff 25%, #A38944 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.brand .brand-word i{ 
  font-style:italic; 
  background: linear-gradient(135deg, #ffffff 25%, #A38944 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.aperture{
  width:30px; height:30px;
  flex:none;
  animation:spin 40s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

.nav-links{
  display:flex;
  align-items:center;
  gap:clamp(18px, 2.4vw, 40px);
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
}
.nav-links a{
  position:relative;
  padding:6px 0;
  color:var(--ink-dim);
  transition:color .3s var(--ease);
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; right:0; bottom:0;
  height:1px;
  background:var(--bronze-bright);
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .4s var(--ease);
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after{ transform:scaleX(1); transform-origin:left; }
.nav-links a.is-active{ color:var(--ink); }
.nav-links a.is-active::after{ transform:scaleX(1); }

.nav-toggle{
  display:none;
  width:34px; height:22px;
  position:relative;
  background:none; border:none;
  cursor:pointer;
  z-index:1100;
}
.nav-toggle span{
  position:absolute; left:0; right:0; height:1px;
  background:var(--ink);
  transition:transform .35s var(--ease), opacity .3s var(--ease), top .35s var(--ease);
}
.nav-toggle span:nth-child(1){ top:0; }
.nav-toggle span:nth-child(2){ top:10px; }
.nav-toggle span:nth-child(3){ top:20px; }
.nav-toggle.is-open span:nth-child(1){ top:10px; transform:rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; }
.nav-toggle.is-open span:nth-child(3){ top:10px; transform:rotate(-45deg); }

@media (max-width:860px){
  .nav-toggle{ display:block; }
  .nav-links{
    position:fixed; inset:0;
    z-index:1000;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:rgba(10, 9, 8, 0.98);
    backdrop-filter:blur(20px);
    gap:34px;
    font-size:22px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transform:translateY(-100%);
    transition:transform .45s var(--ease), opacity .35s var(--ease), visibility .35s var(--ease);
  }
  .nav-links.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(0);
  }
}

/* =========================================================
   HERO (landing)
   ========================================================= */
.hero{
  min-height: calc(100svh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 130px var(--edge) 60px;
  background: #000000 !important;
}
.hero-clean-black,
.home .hero {
  background: #000000 !important;
}
.hero-clean-black .hero-bg-overlay,
.home .hero-bg-overlay {
  display: none !important;
}
.hero-frame{
  position:absolute;
  top:18px; left:18px; right:18px; bottom:0;
  border:1px solid rgba(207, 168, 110, 0.12);
  border-bottom:none;
  pointer-events:none;
}
.hero-mark{
  position:absolute;
  top:110px; left:50%;
  transform:translateX(-50%);
  width:clamp(46px,6vw,64px);
  height:clamp(46px,6vw,64px);
  opacity:0.9;
}
.hero-mark svg{ width:100%; height:100%; animation:spin 60s linear infinite; }

.hero-video-logo-wrap,
.hero-full-logo-wrap,
.hero-lottie-wrap {
  margin: 0 auto 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: min(970px, 94vw);
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.1s forwards;
}

.hero-logo-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
  object-fit: contain;
  cursor: pointer;
  filter: none !important;
  transition: transform 0.4s var(--ease);

  pointer-events: none !important;
  user-select: none !important;}



.hero-sound-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 16, 12, 0.8);
  border: 1px solid rgba(207, 168, 110, 0.3);
  color: var(--bronze);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
}

.hero-sound-btn:hover {
  border-color: var(--bronze-bright);
  color: var(--bronze-bright);
  background: rgba(30, 26, 18, 0.95);
  transform: translateY(-1px);
}

.hero-sound-btn.is-active {
  color: #ffffff;
  border-color: var(--bronze);
  background: rgba(163, 137, 68, 0.3);
}

.hero-full-logo-img {
  max-width: min(200px, 50vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.8)) drop-shadow(0 0 30px rgba(207,168,110,0.2));
  transition: transform 0.4s var(--ease);
}

.hero-full-logo-img:hover {
  transform: scale(1.03);
}

.hero-lottie-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  align-items: center;
  mix-blend-mode: screen;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.8)) drop-shadow(0 0 35px rgba(207,168,110,0.25));
  transition: transform 0.4s var(--ease);
}

.hero-lottie-player:hover {
  transform: scale(1.02);
}

.hero-lottie-player svg {
  width: 100% !important;
  height: 100% !important;
  transform: translate3d(0,0,0);
}

.aperture-wheel-right {
  width: 96px;
  height: 96px;
  flex: none;
  opacity: 0.85;
}

.aperture-wheel-right svg {
  width: 100%;
  height: 100%;
  animation: spin 50s linear infinite;
}

.hero-content{ max-width:1180px; margin:0 auto; width:100%; text-align:center; position:relative; z-index:5; }
.hero-kicker{
  font-size:13px; font-weight:600; letter-spacing:0.3em; text-transform:uppercase;
  color:var(--bronze);
  margin-bottom:28px;
  opacity:0;
  animation:riseIn .9s var(--ease) 0.15s forwards;
}
.hero-title{
  font-size:clamp(40px, 7.2vw, 104px);
  line-height:1.22;
  font-weight:400;
  letter-spacing:-0.01em;
}
.hero-title .line{
  display:block;
  overflow:visible;
  padding:6px 0;
}
.hero-title .line span{
  display:block;
  opacity:0;
  transform:translateY(100%);
  animation:riseIn 1s var(--ease) forwards;
  padding-bottom:4px;
}
.hero-title .line:nth-child(1) span{ animation-delay:.32s; }
.hero-title .line:nth-child(2) span{ animation-delay:.46s; }
.hero-title .line:nth-child(3) span{ animation-delay:.60s; }
.hero-title em{ font-style:normal; color:var(--bronze-bright); font-weight:500; letter-spacing:0.04em; font-family:inherit; }

.hero-sub{
  margin:34px auto 0;
  max-width:560px;
  font-size:15px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--ink-dim);
  opacity:0;
  animation:riseIn .9s var(--ease) .8s forwards;
}
.hero-sub b{ color:var(--ink); font-weight:600; }

.hero-marquee-section {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
  z-index: 5;
}

.marquee-track{
  display:flex; gap:34px; width:max-content; white-space:nowrap;
  animation:marquee 32s linear infinite;
  font-size:12px; font-weight:500; letter-spacing:0.2em; text-transform:uppercase; color:var(--ink-dim);
}
.marquee-track .dot{ color:var(--bronze-bright); }
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .marquee-track{ animation:none; } }

.scroll-cue{
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0;
  animation: riseIn .9s var(--ease) 1.1s forwards;
  z-index: 5;
  width: 100%;
}
.scroll-cue .stem{ width:1px; height:38px; background:linear-gradient(var(--bronze), transparent); position:relative; overflow:hidden; }
.scroll-cue .stem::after{
  content:''; position:absolute; left:0; top:-38px; width:100%; height:38px;
  background:linear-gradient(var(--bronze-bright), transparent);
  animation:drip 2.4s ease-in-out infinite;
}
@keyframes drip{ to{ top:38px; } }

@media (max-width:768px){
  .hero{ min-height:auto; padding:130px var(--edge) 70px; }
  .scroll-cue{ display:none; }
}

@keyframes riseIn{ to{ opacity:1; transform:translateY(0); } }

/* =========================================================
   PAGE HERO (interior pages — no photos)
   ========================================================= */
.page-hero{
  padding:calc(var(--section-pad) + 72px) var(--edge) 68px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0d0c0a 0%, var(--bg) 100%);
  border-bottom:1px solid var(--line);
}
.page-hero-inner{ max-width:1320px; margin:0 auto; position: relative; z-index: 5; }
.page-hero h1{
  margin-top:22px;
  font-size:clamp(38px, 6vw, 78px);
  line-height:1.04;
  max-width:820px;
}
.page-hero h1 em{ font-style:italic; color:var(--bronze-bright); font-weight:400; }
.page-hero .dek{
  margin-top:24px;
  max-width:560px;
  color:var(--ink-dim);
  font-size:17px;
  line-height:1.7;
}

/* =========================================================
   SECTIONS / TYPOGRAPHY UTILITIES
   ========================================================= */
section{ position:relative; }
.section{ padding:var(--section-pad) var(--edge); }
.section-tight{ padding:calc(var(--section-pad)*0.6) var(--edge); }

.lede{
  font-family:var(--f-display);
  font-weight:400;
  font-size:clamp(24px, 3vw, 34px);
  line-height:1.45;
  color:var(--ink);
  max-width:var(--col-copy);
}
.lede em{ font-style:italic; color:var(--bronze-bright); }

.copy{
  max-width:var(--col-copy);
  color:var(--ink-dim);
  font-size:17px;
  line-height:1.85;
}
.copy + .copy{ margin-top:26px; }
.copy b, .copy strong{ color:var(--ink); font-weight:600; }

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ transition-delay:calc(var(--i,0) * 90ms); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:16px 30px;
  font-size:12.5px;
  font-weight:600;
  letter-spacing:0.16em;
  text-transform:uppercase;
  border:1px solid var(--bronze);
  color:var(--ink);
  position:relative;
  overflow:hidden;
  transition:color .4s var(--ease), border-color .4s var(--ease);
}
.btn::before{
  content:'';
  position:absolute; inset:0;
  background:var(--bronze);
  transform:translateX(-100%);
  transition:transform .45s var(--ease);
  z-index:-1;
}
.btn:hover{ color:var(--bg-deep); }
.btn:hover::before{ transform:translateX(0); }
.btn svg{ width:14px; height:14px; transition:transform .4s var(--ease); }
.btn:hover svg{ transform:translateX(4px); }

.btn-ghost{ border-color:var(--line); color:var(--ink-dim); }
.btn-ghost:hover{ color:var(--ink); border-color:var(--ink-dim); }
.btn-ghost::before{ display:none; }

/* =========================================================
   SERVICES / WHAT WE OFFER (Ultra-Clean Minimalist Grid)
   ========================================================= */
.pillars-section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars-header {
  margin-bottom: 40px;
}

.pillars-title {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  margin-top: 16px;
}

.pillars-title em {
  font-style: italic;
  color: var(--bronze-bright);
}

.pillars-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillar-item {
  padding: 48px 36px 48px 24px;
  border-right: 1px solid var(--line);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}

.pillar-item:last-child {
  border-right: none;
}

.pillar-item:hover {
  background: rgba(180, 134, 62, 0.03);
}

.pillar-num {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--bronze-bright);
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

.pillar-heading {
  font-family: var(--f-display);
  font-size: 25px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color 0.3s var(--ease);
}

.pillar-item:hover .pillar-heading {
  color: var(--bronze-bright);
}

.pillar-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 28px;
}

.pillar-arrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.pillar-item:hover .pillar-arrow {
  color: var(--bronze-bright);
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .pillars-container { grid-template-columns: repeat(2, 1fr); }
  .pillar-item:nth-child(2) { border-right: none; }
  .pillar-item { border-bottom: 1px solid var(--line); }
}

@media (max-width: 600px) {
  .pillars-container { grid-template-columns: 1fr; }
  .pillar-item { border-right: none; padding-left: 0; padding-right: 0; }
}



/* =========================================================
   SERVICES PAGE — alternating editorial list
   ========================================================= */
.service-row{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:60px;
  padding:40px 0;
  border-top:1px solid var(--line);
}
.service-row:last-child{ border-bottom:1px solid var(--line); }
.service-row .service-name{
  font-size:clamp(30px,3.4vw,44px);
  line-height:1.1;
}
.service-row .service-name em{ font-style:italic; color:var(--bronze-bright); }
.service-row .service-body{ max-width:640px; color:var(--ink-dim); font-size:16.5px; line-height:1.85; }
.service-row .service-body p + p{ margin-top:20px; }
.service-index{ font-family:var(--f-display); font-size:14px; color:var(--ink-faint); letter-spacing:0.08em; display:block; margin-bottom:14px; }

.service-photo-frame {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: var(--bg-raised);
}

.service-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-photo-frame:hover img {
  transform: scale(1.03);
}

@media (max-width:820px){
  .service-row{ grid-template-columns:1fr; gap:20px; }
}

/* =========================================================
   VERTICAL MICRODRAMA PAGE
   ========================================================= */
/* =========================================================
   VERTICAL MICRODRAMA PAGE
   ========================================================= */
.vertical-hero{
  padding:calc(var(--section-pad) + 64px) var(--edge) 90px;
  background-image: 
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(122,50,50,0.16), transparent 60%),
    linear-gradient(180deg, rgba(13,12,10,0.65) 0%, rgba(13,12,10,0.85) 60%, var(--bg) 100%),
    url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  border-bottom:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr auto;
  gap:60px;
  align-items:end;
}
.vertical-hero h1{
  font-size:clamp(38px,6.4vw,84px);
  line-height:1.03;
  max-width:900px;
}
.vertical-hero h1 em{ font-style:italic; color:var(--bronze-bright); }

.vertical-teaser-image-wrap {
  max-width: 460px;
  width: 100%;
  flex: none;
  justify-self: end;
}

.logo-video-card {
  position: relative;
  max-width: 440px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bronze-dim);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.7), 0 0 32px rgba(207, 168, 110, 0.2);
  background: #000000;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.logo-video-card:hover {
  transform: translateY(-4px);
  border-color: var(--bronze-bright);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.8), 0 0 44px rgba(207, 168, 110, 0.35);
}

.logo-video-card video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.vertical-teaser-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.7)) drop-shadow(0 0 30px rgba(207,168,110,0.15));
  transition: transform 0.4s var(--ease);
}

.vertical-teaser-img:hover {
  transform: scale(1.03);
}

.frame-9x16{
  width: 220px;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  border: 1px solid var(--bronze);
  position: relative;
  overflow: hidden;
  flex: none;
  justify-self: end;
  box-shadow: 0 20px 48px rgba(0,0,0,0.6), 0 0 30px rgba(207,168,110,0.2);
  background: var(--bg-raised);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.frame-9x16:hover {
  transform: translateY(-6px);
  border-color: var(--bronze-bright);
}

.frame-9x16 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.frame-9x16:hover img {
  transform: scale(1.06);
}

@media (max-width:760px){
  .vertical-hero{ grid-template-columns:1fr; }
  .frame-9x16{ display:none; }
}

.capability-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  margin-top:28px;
}
.capability-grid span{
  background:var(--bg-raised);
  padding:15px 18px;
  font-size:14px;
  color:var(--ink-dim);
  letter-spacing:0.01em;
}
@media (max-width:820px){ .capability-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .capability-grid{ grid-template-columns:1fr; } }

.vm-block{
  padding:52px var(--edge);
  border-top:1px solid var(--line);
}
.vm-block-inner{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:48px;
}
@media (max-width:860px){ .vm-block-inner{ grid-template-columns:1fr; gap:22px; } }

.cta-band{
  padding:60px var(--edge);
  text-align:center;
  background:linear-gradient(180deg, var(--bg), #100d0a);
  border-top:1px solid var(--line);
}
.cta-band h2{
  font-size:clamp(30px,4.5vw,52px);
  max-width:760px;
  margin:0 auto;
  line-height:1.15;
}
.cta-band h2 em{ font-style:italic; color:var(--bronze-bright); }
.cta-band .copy{ margin:18px auto 32px; text-align:center; }

/* =========================================================
   NARRATIVE PAGE GRID (2 ROWS OF 4 DESKTOP GRID)
   ========================================================= */
.narrative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.narrative-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.narrative-card:hover {
  transform: translateY(-8px);
  border-color: var(--bronze-bright);
  box-shadow: 0 20px 48px rgba(207, 168, 110, 0.2);
}

.narrative-poster-link {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 3;
  display: block;
  overflow: hidden;
  background: #000;
}

.narrative-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.narrative-poster-link:hover .narrative-poster-img {
  transform: scale(1.06);
}

.narrative-year-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(13, 12, 10, 0.85);
  border: 1px solid var(--bronze-bright);
  color: var(--bronze-bright);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.narrative-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.narrative-poster-link:hover .narrative-card-overlay {
  opacity: 1;
}

.narrative-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bronze-bright);
  color: #0d0c0a;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(10px);
  transition: transform 0.35s var(--ease);
}

.narrative-poster-link:hover .narrative-play-btn {
  transform: translateY(0);
}

.narrative-card-meta {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.narrative-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}

.narrative-year {
  font-size: 13px;
  color: var(--bronze);
  font-weight: 500;
  margin: 0;
}

@media (max-width: 1024px) {
  .narrative-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .narrative-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =========================================================
   OUR WORK — holding state
   ========================================================= */
.holding{
  min-height:70vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:var(--section-pad) var(--edge);
}
.holding .aperture-lg{ width:96px; height:96px; margin-bottom:36px; opacity:0.85; }
.holding .aperture-lg svg{ animation:spin 50s linear infinite; }
.holding h1{ font-size:clamp(34px,5.6vw,64px); }
.holding h1 em{ font-style:italic; color:var(--bronze-bright); }
.holding p{ margin-top:20px; color:var(--ink-dim); max-width:480px; font-size:16px; line-height:1.8; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:80px;
}
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:50px; } }

.contact-card{
  border:1px solid var(--line);
  padding:38px;
  background:var(--bg-raised);
}
.contact-card + .contact-card{ margin-top:24px; }
.contact-card .role{
  font-size:11.5px; letter-spacing:0.18em; text-transform:uppercase; color:var(--bronze);
}
.contact-card h3{ margin-top:14px; font-size:26px; }
.contact-card ul{ margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.contact-card a{
  font-size:15.5px; color:var(--ink-dim); transition:color .3s var(--ease);
  display:inline-flex; align-items:center; gap:10px;
}
.contact-card a:hover{ color:var(--bronze-bright); }

/* =========================================================
   ABOUT — no photos, straight into copy
   ========================================================= */
.about-lead{
  padding:0 var(--edge) var(--section-pad);
}
.about-lead .lede{ margin-bottom:0; }
.pullmark{
  font-family:var(--f-display);
  font-size:120px;
  line-height:1;
  color:var(--bronze-dim);
  margin-bottom:-30px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  border-top:1px solid var(--line);
  padding:70px var(--edge) 40px;
  background:var(--bg-deep);
}
.footer-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
  flex-wrap:wrap;
  padding-bottom:50px;
}
.footer-brand{
  font-family:var(--f-display);
  font-size:26px;
  background: linear-gradient(135deg, #ffffff 25%, #A38944 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.footer-brand em{ 
  font-style:italic; 
  background: linear-gradient(135deg, #ffffff 25%, #A38944 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.footer-tag{ margin-top:14px; color:var(--ink-faint); font-size:14px; max-width:280px; line-height:1.6; }

.footer-cols{ display:flex; gap:80px; flex-wrap:wrap; }
.footer-col h4{
  font-family:var(--f-body); font-size:11.5px; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--bronze); font-weight:600; margin-bottom:18px;
}
.footer-col a, .footer-col span{
  display:block; color:var(--ink-dim); font-size:14.5px; margin-bottom:10px; transition:color .3s var(--ease);
}
.footer-col a:hover{ color:var(--ink); }

.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:28px; border-top:1px solid var(--line);
  font-size:12.5px; color:var(--ink-faint);
  flex-wrap:wrap; gap:14px;
}
.footer-bottom a:hover{ color:var(--bronze-bright); }

/* =========================================================
   NEW MEDIA & POSTER SHOWCASE STYLES
   ========================================================= */
.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-logo-img {
  transform: scale(1.04);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .poster-grid {
    grid-template-columns: 1fr !important;
  }
  .poster-card[style*="span 2"],
  .poster-card-large {
    grid-column: span 1 !important;
  }
}



.poster-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  aspect-ratio: 9 / 16;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.poster-card:hover {
  transform: translateY(-8px);
  border-color: var(--bronze-bright);
  box-shadow: 0 20px 48px rgba(207, 168, 110, 0.2);
}

.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.poster-card:hover img {
  transform: scale(1.05);
}

.view-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: linear-gradient(135deg, #dcac4f, #b4863e);
  color: #0d0c0a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.view-badge.coming-soon {
  background: linear-gradient(135deg, #444, #222);
  color: var(--ink);
  border: 1px solid var(--line);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,8,0.95) 0%, rgba(10,9,8,0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 5;
}

.poster-title {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 6px;
}

.poster-subtitle {
  font-size: 13px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 36px;
  margin-top: 48px;
}

.work-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--bronze);
}

.work-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.work-card:hover .work-card-img img {
  transform: scale(1.06);
}

.work-card-body {
  padding: 24px;
}

.work-card-category {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 8px;
}

.work-card-title {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--ink);
}

/* =========================================================
   ABOUT US & SERVICES PHOTO GALLERY STYLES
   ========================================================= */
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.about-photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--bg-raised);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.about-photo-card:hover img {
  transform: scale(1.06);
}

.service-photo-frame {
  margin-top: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  max-height: 380px;
  background: var(--bg-raised);
}

.service-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.service-photo-frame:hover img {
  transform: scale(1.04);
}

/* =========================================================
   WORLD-CLASS ENHANCEMENTS: AMBIENT GLOWS, MODAL & FILTERS
   ========================================================= */

/* Ambient Lighting & Volumetric Depth */
.page-hero, .hero, .cta-band, .vertical-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before, .cta-band::before, .vertical-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(207, 168, 110, 0.12) 0%, rgba(180, 134, 62, 0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page-hero-inner, .cta-band *, .vertical-hero * {
  position: relative;
  z-index: 2;
}

/* Play Button Overlay on Poster Cards */
.poster-card {
  cursor: pointer;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(13, 12, 10, 0.75);
  border: 1px solid rgba(220, 172, 79, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze-bright);
  z-index: 8;
  opacity: 0;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.play-btn-overlay svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
  fill: currentColor;
}

.poster-card:hover .play-btn-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(220, 172, 79, 0.9);
  color: #0d0c0a;
  border-color: #ffffff;
  box-shadow: 0 0 30px rgba(220, 172, 79, 0.6);
}

/* Filter Bar Tabs */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  margin-bottom: 48px;
}

.filter-btn {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter-btn:hover {
  color: var(--ink);
  border-color: var(--bronze);
  transform: translateY(-2px);
}

.filter-btn.is-active {
  background: linear-gradient(135deg, rgba(220,172,79,0.2), rgba(180,134,62,0.1));
  border-color: var(--bronze-bright);
  color: var(--bronze-bright);
  box-shadow: 0 4px 20px rgba(220,172,79,0.15);
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 6, 5, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.8), 0 0 40px rgba(207, 168, 110, 0.15);
  transform: scale(0.92);
  transition: transform 0.4s var(--ease);
}

.video-modal.is-open .video-modal-content {
  transform: scale(1);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper.vertical-aspect {
  padding-bottom: 120%; /* Mobile vertical preview aspect ratio */
  max-width: 480px;
  margin: 0 auto;
}

.video-wrapper video, .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--ink-dim);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s var(--ease);
}

.modal-close:hover {
  color: var(--bronze-bright);
}

.modal-info {
  padding: 20px 24px;
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.modal-title {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--ink);
}

.modal-desc {
  font-size: 13px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================================
   HOME PAGE METRICS & FEATURED WORK SHOWCASE STYLES
   ========================================================= */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
  margin-top: 48px;
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--bronze-bright);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

@media (max-width: 900px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--line); }
}

@media (max-width: 500px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
}

/* =========================================================
   CONTACT FORM CARD & WPCF7 STYLING
   ========================================================= */
.contact-form-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 0 !important;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}

.follow-card {
  border-radius: 0 !important;
}

.wpcf7 {
  margin-top: 16px;
}
.wpcf7-form p,
.contact-form-styled .form-group {
  margin-bottom: 20px;
  display: block;
}
.wpcf7-form label,
.contact-form-styled label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--ink-dim) !important;
  margin-bottom: 8px !important;
}
.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select,
.wpcf7-date,
.contact-form-styled .form-control {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 18px !important;
  background: var(--bg) !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  color: var(--ink) !important;
  font-family: inherit !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease) !important;
}
.wpcf7-text:focus,
.wpcf7-textarea:focus,
.wpcf7-select:focus,
.contact-form-styled .form-control:focus {
  outline: none !important;
  border-color: var(--bronze-bright) !important;
  box-shadow: 0 0 16px rgba(207, 168, 110, 0.22) !important;
}
.wpcf7-submit,
.contact-submit-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 16px 32px !important;
  background: linear-gradient(135deg, #cfa86e 0%, #a38944 100%) !important;
  color: #0d0c0a !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4) !important;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease) !important;
}
.wpcf7-submit:hover,
.contact-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(207, 168, 110, 0.35) !important;
}
.wpcf7-response-output {
  margin-top: 24px !important;
  padding: 16px 20px !important;
  border-radius: 8px !important;
  border: 1px solid var(--bronze) !important;
  background: rgba(207, 168, 110, 0.08) !important;
  color: var(--ink) !important;
  font-size: 14px !important;
}

/* =========================================================
   SPARTA CINEMATIC VIDEO MODAL
   ========================================================= */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.video-modal-content {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-modal-close {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.video-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000000;
  transform: scale(1.08);
}
.video-player-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #000000;
  display: flex;
  justify-content: center;
}
.video-player-wrap video {
  max-width: 88vw;
  max-height: 80vh;
  display: block;
  border-radius: 16px;
  outline: none;
}




