/* ==========================================================================
   TRUTHLINE STUDIO — stylesheet
   Palette: --navy (#0C1D3B) --navy-deep (#061B39) --gold (#CCAA43)
            --bluegrey (#76869D) --white (#FFFFFF)
   ========================================================================== */

:root{
  --navy:#0C1D3B;
  --navy-deep:#061B39;
  --gold:#CCAA43;
  --bluegrey:#76869D;
  --white:#FFFFFF;

  --gold-glow: 0 0 0 3px rgba(204,170,67,0.14), 0 0 24px rgba(204,170,67,0.35);
  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(.16,.84,.44,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  background:var(--navy);
  color:var(--white);
  font-family:var(--font-body);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
a{ color:inherit; text-decoration:none; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.section-eyebrow{
  font-family:var(--font-body);
  font-size:0.72rem;
  letter-spacing:0.28em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:14px;
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader{
  position:fixed; inset:0; z-index:999;
  background:radial-gradient(120% 120% at 50% 15%, var(--navy) 0%, var(--navy-deep) 70%, #030d1e 100%);
  display:flex; align-items:center; justify-content:center;
  transition:opacity .9s var(--ease), visibility .9s var(--ease);
}
#preloader.hidden{ opacity:0; visibility:hidden; pointer-events:none; }

.preloader-inner{ display:flex; flex-direction:column; align-items:center; gap:26px; width:min(400px,80vw); }

/* Brand mark — logo image, used in preloader, navbar, footer.
   Swap /assets/logo.svg for the real logo file; this class keeps it
   sized and glowing consistently wherever it appears. */
.brand-mark-img{
  width:100%; height:100%; object-fit:contain; display:block;
  filter:drop-shadow(0 0 6px rgba(204,170,67,0.35));
}

.preloader-mark{ position:relative; width:190px; height:190px; display:flex; align-items:center; justify-content:center; }
.mark-large{ position:relative; z-index:1; animation:markGlow 2.4s ease-in-out infinite; }
.mark-large.brand-mark-img{ width:170px; height:170px; margin:0 auto; }
@keyframes markGlow{
  0%,100%{ filter:drop-shadow(0 0 10px rgba(204,170,67,0.45)); }
  50%{ filter:drop-shadow(0 0 26px rgba(204,170,67,0.85)); }
}

.mark-aura{
  position:absolute; inset:-50px; border-radius:50%; z-index:0;
  background:radial-gradient(circle, rgba(204,170,67,0.55) 0%, rgba(204,170,67,0.18) 45%, transparent 72%);
  filter:blur(6px);
  animation:auraPulse 2.4s ease-in-out infinite;
}
@keyframes auraPulse{
  0%,100%{ transform:scale(0.82); opacity:0.55; }
  50%{ transform:scale(1.12); opacity:1; }
}

.preloader-word{ text-align:center; line-height:1; }
.preloader-word span{
  display:block; font-family:var(--font-display); font-weight:600;
  font-size:clamp(1.6rem,5vw,2.3rem); letter-spacing:0.14em;
}
.preloader-word em{
  display:block; font-style:normal; font-size:0.68rem; letter-spacing:0.5em;
  color:var(--bluegrey); margin-top:8px;
}

.preloader-bar-track{
  width:100%; height:2px; background:rgba(118,134,157,0.25); position:relative; overflow:hidden; border-radius:2px;
}
.preloader-bar-fill{
  position:absolute; left:0; top:0; bottom:0; width:0%;
  background:linear-gradient(90deg, rgba(204,170,67,0.4), var(--gold));
  box-shadow:0 0 12px 2px rgba(204,170,67,0.65);
  transition:width .25s ease-out;
}
.preloader-meta{
  width:100%; display:flex; justify-content:space-between; align-items:center;
  font-size:0.68rem; letter-spacing:0.16em; color:var(--bluegrey); font-variant-numeric:tabular-nums;
}
#preloaderPct{ color:var(--gold); font-weight:600; }

.sprocket-row{
  position:absolute; left:0; right:0; height:14px; display:flex; gap:18px; padding:0 24px;
  opacity:0.35;
}
.sprocket-row.top{ top:20px; }
.sprocket-row.bottom{ bottom:20px; }
.sprocket-row::before, .sprocket-row::after{ content:''; }
.sprocket-row{ background-image:repeating-linear-gradient(90deg, var(--bluegrey) 0 6px, transparent 6px 22px); background-position:center; background-size:22px 2px; background-repeat:repeat-x; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar{
  position:fixed; top:0; left:0; right:0; z-index:300;
  padding:22px clamp(20px,5vw,56px);
  display:flex; align-items:center;
  background:linear-gradient(to bottom, rgba(6,27,57,0.75), transparent);
  transition:background .4s ease, padding .4s ease;
}
.navbar.scrolled{
  background:rgba(6,27,57,0.86);
  backdrop-filter:blur(14px);
  padding-top:14px; padding-bottom:14px;
  border-bottom:1px solid rgba(118,134,157,0.15);
}
.nav-inner{ width:100%; display:flex; align-items:center; justify-content:space-between; }

.nav-logo{ display:flex; align-items:center; gap:12px; }
.nav-logo-mark{
  width:46px; height:46px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.nav-logo-mark.small{ width:36px; height:36px; }
.nav-logo-text{ font-family:var(--font-display); letter-spacing:0.12em; font-size:0.95rem; }
.nav-logo-text em{ display:block; font-style:normal; font-size:0.55rem; letter-spacing:0.4em; color:var(--bluegrey); margin-top:2px; }

.nav-links{ display:flex; align-items:center; gap:clamp(20px,3vw,40px); }
.nav-link{
  font-size:0.72rem; letter-spacing:0.18em; color:var(--white); opacity:0.85; font-weight:500;
  position:relative; padding:4px 0; transition:opacity .25s, color .25s;
}
.nav-link::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:1px;
  background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease);
}
.nav-link:hover{ opacity:1; color:var(--gold); }
.nav-link:hover::after{ transform:scaleX(1); }
.nav-contact{ border:1px solid var(--bluegrey); padding:9px 18px; border-radius:2px; letter-spacing:0.18em; }
.nav-contact:hover{ border-color:var(--gold); color:var(--gold); }

.nav-burger{ display:none; flex-direction:column; gap:5px; width:26px; }
.nav-burger span{ height:1px; background:var(--white); width:100%; transition:transform .3s, opacity .3s; }
.nav-burger.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.mobile-menu{
  display:none; position:fixed; top:0; right:0; height:100vh; width:min(78vw,340px);
  background:var(--navy-deep); z-index:290; padding:110px 34px 40px;
  flex-direction:column; gap:6px;
  transform:translateX(100%); transition:transform .45s var(--ease);
  border-left:1px solid rgba(118,134,157,0.2);
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-link{
  padding:16px 0; font-size:0.85rem; letter-spacing:0.18em; color:var(--white); font-weight:500;
  border-bottom:1px solid rgba(118,134,157,0.15); text-align:left;
}
.mobile-link:hover{ color:var(--gold); }

@media (max-width:860px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  .mobile-menu{ display:flex; }
}

/* ==========================================================================
   HERO / SLIDER
   ========================================================================== */
.hero{
  position:relative; height:100svh; min-height:560px; overflow:hidden;
  display:flex; align-items:center;
}
.hero-slider{ position:absolute; inset:0; z-index:0; }
.slide{
  position:absolute; inset:0; background-size:cover; background-position:center top 15%;
  opacity:0; will-change:opacity, transform;
  transform:scale(1.06) translateX(0);
  transition:opacity 1.6s var(--ease);
  filter:grayscale(0.15) contrast(1.05);
}
.slide.active{ opacity:1; animation:slideDrift 9s linear forwards; }
@keyframes slideDrift{
  from{ transform:scale(1.06) translateX(0); }
  to{ transform:scale(1.12) translateX(-1.5%); }
}
.hero-vignette{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to top, var(--navy) 0%, rgba(12,29,59,0.55) 32%, rgba(12,29,59,0.25) 55%, rgba(6,27,57,0.65) 100%),
    linear-gradient(to right, rgba(6,27,57,0.65) 0%, transparent 45%, transparent 55%, rgba(6,27,57,0.5) 100%);
}
.hero-grain{
  position:absolute; inset:0; z-index:1; pointer-events:none; opacity:0.05; 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");
}

.hero-content{ position:relative; z-index:2; max-width:820px; padding:0 clamp(20px,6vw,56px); margin-top:40px; }
.hero-eyebrow{ font-size:0.75rem; letter-spacing:0.3em; text-transform:uppercase; color:var(--gold); margin-bottom:22px; }
.hero-title{
  font-family:var(--font-display); font-weight:300;
  font-size:clamp(2.6rem,7vw,5.2rem); line-height:1.05; letter-spacing:0.01em;
}
.hero-title span{ font-style:normal; font-weight:500; color:var(--gold); text-shadow:0 0 30px rgba(204,170,67,0.35); }
.hero-sub{
  margin-top:26px; max-width:520px; color:var(--bluegrey); font-size:1rem; line-height:1.7;
}
.hero-actions{ display:flex; gap:18px; margin-top:40px; flex-wrap:wrap; }

.btn{
  padding:16px 32px; font-size:0.75rem; letter-spacing:0.2em; text-transform:uppercase;
  border-radius:2px; transition:all .3s var(--ease); font-weight:500;
}
.btn-gold{ background:var(--gold); color:var(--navy-deep); }
.btn-gold:hover{ box-shadow:var(--gold-glow); transform:translateY(-2px); }
.btn-ghost{ border:1px solid var(--bluegrey); color:var(--white); }
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold); }

.hero-scroll-cue{
  position:absolute; left:clamp(20px,6vw,56px); bottom:36px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-size:0.62rem; letter-spacing:0.3em; color:var(--bluegrey);
}
.scroll-line{ width:1px; height:44px; background:linear-gradient(to bottom, var(--gold), transparent); animation:scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse{ 0%,100%{ opacity:0.3; } 50%{ opacity:1; } }

.slide-progress{
  position:absolute; right:clamp(20px,6vw,56px); bottom:40px; z-index:2;
  display:flex; gap:8px;
}
.slide-progress span{ width:22px; height:2px; background:rgba(118,134,157,0.4); position:relative; overflow:hidden; }
.slide-progress span.active::after{
  content:''; position:absolute; inset:0; background:var(--gold); transform-origin:left;
  animation:progFill 4.5s linear forwards;
}
@keyframes progFill{ from{ transform:scaleX(0); } to{ transform:scaleX(1); } }

@media (max-width:640px){ .hero-scroll-cue{ display:none; } }

/* ==========================================================================
   GLANCE STRIP
   ========================================================================== */
.glance{
  background:var(--navy-deep); border-top:1px solid rgba(118,134,157,0.15); border-bottom:1px solid rgba(118,134,157,0.15);
  padding:36px clamp(20px,6vw,56px);
}
.glance-track{ display:flex; align-items:center; justify-content:center; gap:48px; flex-wrap:wrap; max-width:1200px; margin:0 auto; }
.glance-item{ display:flex; flex-direction:column; gap:6px; text-align:center; max-width:260px; }
.glance-item strong{ font-family:var(--font-display); font-size:1.05rem; font-weight:600; }
.glance-item span{ font-size:0.8rem; color:var(--bluegrey); line-height:1.5; }
.glance-divider{ width:1px; height:34px; background:rgba(118,134,157,0.3); }
@media (max-width:760px){ .glance-divider{ display:none; } }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ padding:min(14vh,140px) clamp(20px,6vw,56px); position:relative; }
.contact::before{
  content:''; position:absolute; inset:0; z-index:0;
  background:radial-gradient(60% 50% at 15% 20%, rgba(204,170,67,0.06), transparent 70%);
}
.contact-inner{
  position:relative; z-index:1; max-width:1180px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:min(8vw,90px);
}
.section-title{ font-family:var(--font-display); font-weight:300; font-size:clamp(2.1rem,4.5vw,3.1rem); line-height:1.12; letter-spacing:0.01em; margin-bottom:22px; }
.contact-copy{ color:var(--bluegrey); line-height:1.75; max-width:440px; margin-bottom:36px; }
.contact-detail{ display:flex; flex-direction:column; gap:4px; padding:16px 0; border-top:1px solid rgba(118,134,157,0.2); }
.cd-label{ font-size:0.65rem; letter-spacing:0.2em; color:var(--gold); text-transform:uppercase; }
.cd-value{ font-size:0.95rem; }
.cd-social{ display:flex; align-items:center; gap:8px; }
.cd-social a{ color:var(--white); border-bottom:1px solid rgba(204,170,67,0.4); transition:color .3s, border-color .3s; }
.cd-social a:hover{ color:var(--gold); border-color:var(--gold); }
.cd-social span{ color:var(--bluegrey); font-size:0.8rem; }

.contact-right{ position:relative; }
.contact-form{ display:flex; flex-direction:column; gap:20px; }
.field-group{ display:flex; flex-direction:column; gap:8px; }
.field-group label{ font-size:0.68rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--bluegrey); }
.field-group input, .field-group select, .field-group textarea{
  background:rgba(255,255,255,0.02); border:1px solid rgba(118,134,157,0.35); color:var(--white);
  padding:14px 16px; border-radius:2px; font-family:var(--font-body); font-size:0.92rem;
  transition:box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.field-group select{ appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2376869D' fill='none' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:var(--gold-glow);
}
.field-group textarea{ resize:vertical; min-height:110px; }

.btn-submit{ position:relative; margin-top:6px; display:flex; align-items:center; justify-content:center; gap:10px; }
.btn-spinner{
  width:14px; height:14px; border-radius:50%; border:2px solid rgba(6,27,57,0.3); border-top-color:var(--navy-deep);
  display:none; animation:spin .7s linear infinite;
}
.btn-submit.loading .btn-label{ opacity:0.6; }
.btn-submit.loading .btn-spinner{ display:inline-block; }
@keyframes spin{ to{ transform:rotate(360deg); } }
.form-note{ font-size:0.72rem; color:var(--bluegrey); text-align:center; margin-top:4px; }

.success-card{
  display:none; flex-direction:column; align-items:flex-start; gap:16px;
  padding:44px; border:1px solid rgba(204,170,67,0.3); background:rgba(204,170,67,0.04); border-radius:4px;
  animation:successIn .6s var(--ease);
}
.success-card.visible{ display:flex; }
@keyframes successIn{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:translateY(0); } }
.success-mark{ width:52px; height:52px; }
.success-mark svg{ width:100%; height:100%; }
.success-mark circle{ fill:none; stroke:var(--gold); stroke-width:2; stroke-dasharray:151; stroke-dashoffset:151; animation:circleDraw 0.7s var(--ease) forwards; }
.success-mark path{ fill:none; stroke:var(--gold); stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:40; stroke-dashoffset:40; animation:checkDraw 0.5s var(--ease) 0.5s forwards; }
@keyframes circleDraw{ to{ stroke-dashoffset:0; } }
@keyframes checkDraw{ to{ stroke-dashoffset:0; } }
.success-card h3{ font-family:var(--font-display); font-size:1.6rem; font-weight:600; }
.success-card p{ color:var(--bluegrey); line-height:1.7; }

@media (max-width:900px){
  .contact-inner{ grid-template-columns:1fr; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ padding:30px clamp(20px,6vw,56px); border-top:1px solid rgba(118,134,157,0.15); }
.footer-inner{ max-width:1180px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:18px; }
.footer-brand{ display:flex; align-items:center; gap:10px; font-size:0.75rem; letter-spacing:0.16em; }
.site-footer p{ font-size:0.72rem; color:var(--bluegrey); order:3; width:100%; text-align:center; }
.footer-social{ display:flex; gap:14px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(118,134,157,0.3);
  display:flex; align-items:center; justify-content:center; transition:border-color .3s, background .3s;
}
.footer-social a:hover{ border-color:var(--gold); background:rgba(204,170,67,0.08); }
.footer-social svg{ width:16px; height:16px; fill:none; stroke:var(--white); stroke-width:1.6; stroke-linejoin:round; }
.footer-social svg path{ fill:var(--white); stroke:none; }
.footer-social svg .ig-dot{ fill:var(--white); stroke:none; }
.footer-social a:hover svg{ stroke:var(--gold); }
.footer-social a:hover svg path{ fill:var(--gold); }
.footer-social a:hover svg .ig-dot{ fill:var(--gold); }

@media (min-width:640px){
  .site-footer p{ order:2; width:auto; text-align:left; }
}

/* ==========================================================================
   OVERLAYS (WHO WE ARE / PRODUCTIONS)
   ========================================================================== */
.overlay{
  position:fixed; inset:0; z-index:400;
  background:rgba(6,27,57,0.55);
  backdrop-filter:blur(40px) saturate(1.1);
  -webkit-backdrop-filter:blur(40px) saturate(1.1);
  transform:translateY(100%);
  transition:transform .65s var(--ease);
  overflow:hidden;
}
.overlay.active{ transform:translateY(0); }

.overlay-panel{ height:100%; display:flex; flex-direction:column; }
.overlay-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:26px clamp(20px,6vw,56px); border-bottom:1px solid rgba(118,134,157,0.2);
  flex-shrink:0;
}
.overlay-back{ display:flex; align-items:center; gap:10px; font-size:0.72rem; letter-spacing:0.2em; color:var(--white); font-weight:500; }
.overlay-back svg{ width:16px; height:16px; fill:none; stroke:var(--gold); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.overlay-back:hover{ color:var(--gold); }
.overlay-tag{ font-size:0.68rem; letter-spacing:0.24em; color:var(--bluegrey); }

.overlay-scroll{ flex:1; overflow-y:auto; padding:min(6vh,60px) clamp(20px,6vw,56px) 100px; }
.overlay-title{ font-family:var(--font-display); font-weight:300; font-size:clamp(2.1rem,5vw,3.4rem); line-height:1.12; letter-spacing:0.01em; max-width:700px; margin-bottom:22px; }
.manifesto-lead{ max-width:640px; color:var(--bluegrey); font-size:1.05rem; line-height:1.75; margin-bottom:56px; }

.manifesto-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:34px; margin-bottom:min(10vh,100px); }
.manifesto-item{ border-top:1px solid rgba(204,170,67,0.35); padding-top:20px; }
.mi-num{ font-family:var(--font-display); font-size:0.9rem; color:var(--gold); }
.manifesto-item h3{ font-family:var(--font-display); font-size:1.3rem; font-weight:600; margin:14px 0 10px; }
.manifesto-item p{ color:var(--bluegrey); line-height:1.7; font-size:0.92rem; }

.founder-block{
  display:grid; grid-template-columns:0.8fr 1.2fr; gap:min(6vw,60px); align-items:center;
  padding:min(8vh,70px) 0; border-top:1px solid rgba(118,134,157,0.2); margin-bottom:min(10vh,100px);
}
.founder-photo{
  position:relative; aspect-ratio:4/5; background-size:cover; background-position:center top 12%;
  border-radius:4px; overflow:hidden;
}
.founder-photo-glow{ position:absolute; inset:0; box-shadow:inset 0 0 60px rgba(6,27,57,0.6); border:1px solid rgba(204,170,67,0.25); }
.founder-name{ font-family:var(--font-display); font-size:clamp(1.8rem,3vw,2.4rem); font-weight:600; margin-bottom:18px; }
.founder-copy p{ color:var(--bluegrey); line-height:1.8; margin-bottom:16px; font-size:0.96rem; }

.team-eyebrow{ margin-top:0; }
.overlay-subtitle{ font-family:var(--font-display); font-size:1.8rem; font-weight:600; margin-bottom:36px; }
.team-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:22px; }
.team-card{ text-align:left; }
.team-photo{
  aspect-ratio:3/4; background-size:cover; background-position:center top 15%; border-radius:3px;
  border:1px solid rgba(118,134,157,0.2); margin-bottom:14px; transition:border-color .3s;
}
.team-card:hover .team-photo{ border-color:var(--gold); }
.team-card h4{ font-family:var(--font-display); font-size:1rem; font-weight:600; }
.team-card span{ font-size:0.75rem; color:var(--bluegrey); }

@media (max-width:1000px){
  .manifesto-grid{ grid-template-columns:1fr; gap:30px; }
  .founder-block{ grid-template-columns:1fr; }
  .founder-photo{ max-width:320px; }
  .team-grid{ grid-template-columns:repeat(2,1fr); }
}

/* Productions — Coming Soon status blocks */
.coming-soon-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-bottom:44px; }
.cs-card{
  padding:32px 28px; border:1px solid rgba(118,134,157,0.25); border-radius:4px;
  background:rgba(255,255,255,0.015); transition:border-color .35s, transform .35s var(--ease);
}
.cs-card:hover{ border-color:rgba(204,170,67,0.4); transform:translateY(-4px); }
.cs-status{
  display:inline-flex; align-items:center; gap:8px; font-size:0.66rem; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--gold); margin-bottom:20px;
}
.cs-dot{
  width:7px; height:7px; border-radius:50%; background:var(--gold); display:inline-block;
  box-shadow:0 0 8px rgba(204,170,67,0.8);
  animation:dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse{ 0%,100%{ opacity:0.5; transform:scale(0.85); } 50%{ opacity:1; transform:scale(1.15); } }
.cs-card h3{ font-family:var(--font-display); font-size:1.4rem; font-weight:600; margin-bottom:14px; }
.cs-card p{ color:var(--bluegrey); line-height:1.7; font-size:0.9rem; }
.cs-card p em{ color:var(--white); font-style:italic; }

.cs-footer-note{ border-top:1px solid rgba(118,134,157,0.2); padding-top:28px; }
.cs-footer-note p{ color:var(--bluegrey); font-size:0.92rem; }
.cs-inline-link{ color:var(--gold); border-bottom:1px solid rgba(204,170,67,0.4); transition:border-color .3s; }
.cs-inline-link:hover{ border-color:var(--gold); }

@media (max-width:900px){
  .coming-soon-grid{ grid-template-columns:1fr; }
}

/* ==========================================================================
   LATEST RELEASE — 3D flip card
   ========================================================================== */
.latest-release{ padding:min(14vh,130px) clamp(20px,6vw,56px) min(8vh,80px); }
.lr-inner{
  max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1fr 0.85fr;
  gap:min(6vw,70px); align-items:center;
}
.lr-text{ color:var(--bluegrey); line-height:1.75; max-width:420px; margin-top:22px; }

.flip-card{
  perspective:1800px; aspect-ratio:3/4; max-width:340px; margin:0 auto; width:100%;
  cursor:pointer;
}
.flip-card-inner{
  position:relative; width:100%; height:100%; transition:transform .8s var(--ease);
  transform-style:preserve-3d;
}
.flip-card:hover .flip-card-inner,
.flip-card:focus-visible .flip-card-inner,
.flip-card.flipped .flip-card-inner{ transform:rotateY(180deg); }

.flip-card-front, .flip-card-back{
  position:absolute; inset:0; backface-visibility:hidden; -webkit-backface-visibility:hidden;
  border-radius:6px; overflow:hidden; border:1px solid rgba(118,134,157,0.25);
}
.flip-card-front{ background-size:cover; background-position:center top 18%; display:flex; align-items:flex-end; }
.flip-front-overlay{
  width:100%; padding:26px; background:linear-gradient(to top, rgba(6,27,57,0.95) 10%, rgba(6,27,57,0.35) 60%, transparent 100%);
  display:flex; flex-direction:column; gap:8px;
}
.flip-ribbon{
  align-self:flex-start; font-size:0.62rem; letter-spacing:0.18em; text-transform:uppercase;
  color:var(--navy-deep); background:var(--gold); padding:5px 12px; border-radius:2px; font-weight:600;
}
.flip-front-title{ font-family:var(--font-display); font-size:1.6rem; font-weight:600; }
.flip-front-hint{ font-size:0.68rem; letter-spacing:0.14em; color:var(--bluegrey); text-transform:uppercase; }

.flip-card-back{
  transform:rotateY(180deg); background:var(--navy-deep);
  display:flex; flex-direction:column; justify-content:center; gap:14px; padding:36px;
  box-shadow:inset 0 0 60px rgba(204,170,67,0.06);
}
.flip-back-title{ font-family:var(--font-display); font-size:1.7rem; font-weight:600; }
.flip-back-desc{ color:var(--bluegrey); font-size:0.88rem; line-height:1.7; }
.flip-cta{ align-self:flex-start; padding:13px 24px; margin-top:6px; }

@media (max-width:900px){
  .lr-inner{ grid-template-columns:1fr; text-align:center; }
  .lr-text{ margin-left:auto; margin-right:auto; }
}

/* ==========================================================================
   MANIFESTO TEASER
   ========================================================================== */
.manifesto-teaser{
  padding:min(10vh,100px) clamp(20px,6vw,56px); background:var(--navy-deep);
  border-top:1px solid rgba(118,134,157,0.15); border-bottom:1px solid rgba(118,134,157,0.15);
  position:relative; overflow:hidden;
}
.manifesto-teaser::before{
  content:''; position:absolute; inset:0; background:radial-gradient(50% 60% at 85% 30%, rgba(204,170,67,0.07), transparent 70%);
}
.mt-inner{ position:relative; z-index:1; max-width:720px; margin:0 auto; text-align:center; }
.mt-text{ color:var(--bluegrey); line-height:1.8; margin:22px auto 34px; max-width:600px; }
.manifesto-link{
  display:inline-flex; align-items:center; gap:10px; font-size:0.74rem; letter-spacing:0.18em;
  text-transform:uppercase; color:var(--gold); padding-bottom:6px; border-bottom:1px solid rgba(204,170,67,0.4);
  transition:gap .3s var(--ease), border-color .3s;
}
.manifesto-link svg{ width:16px; height:16px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; transition:transform .3s var(--ease); }
.manifesto-link:hover{ gap:16px; border-color:var(--gold); }
.manifesto-link:hover svg{ transform:translateX(3px); }

/* ==========================================================================
   BEHIND-THE-SCENES SLIDER
   ========================================================================== */
.bts{ padding:min(10vh,90px) 0; }
.bts-head{ padding:0 clamp(20px,6vw,56px); margin-bottom:32px; }
.bts-title{ font-family:var(--font-display); font-size:clamp(1.7rem,3.2vw,2.3rem); font-weight:600; }

.bts-slider{ overflow:hidden; -webkit-mask-image:linear-gradient(to right, transparent, black 4%, black 96%, transparent); mask-image:linear-gradient(to right, transparent, black 4%, black 96%, transparent); }
.bts-track{
  display:flex; gap:20px; width:max-content; padding:0 clamp(20px,6vw,56px);
  animation:btsScroll 46s linear infinite;
}
.bts-slider:hover .bts-track{ animation-play-state:paused; }
@keyframes btsScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

.bts-node{
  flex:0 0 260px; aspect-ratio:4/3; background-size:cover; background-position:center;
  border-radius:4px; position:relative; border:1px solid rgba(118,134,157,0.2);
  display:flex; align-items:flex-end; overflow:hidden;
}
.bts-node span{
  display:block; width:100%; padding:14px 16px; font-size:0.76rem; letter-spacing:0.02em;
  background:linear-gradient(to top, rgba(6,27,57,0.92), transparent);
}
@media (max-width:640px){ .bts-node{ flex-basis:200px; } }

/* ==========================================================================
   BEHIND-THE-SCENES — VIDEO REEL (separate from the photo slider)
   ========================================================================== */
.bts-video{ padding:min(10vh,90px) 0; }
.bts-video-head{
  padding:0 clamp(20px,6vw,56px); margin-bottom:32px;
  display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.bts-video-title{ font-family:var(--font-display); font-size:clamp(1.7rem,3.2vw,2.3rem); font-weight:600; margin-top:4px; }
.bts-video-sub{ color:var(--bluegrey); font-size:0.9rem; max-width:440px; margin-top:10px; line-height:1.6; }

.bts-video-nav{ display:flex; gap:10px; flex-shrink:0; }
.bts-arrow{
  width:42px; height:42px; border-radius:50%; border:1px solid rgba(118,134,157,0.35);
  display:flex; align-items:center; justify-content:center; transition:border-color .3s, background .3s;
}
.bts-arrow:hover{ border-color:var(--gold); background:rgba(204,170,67,0.08); }
.bts-arrow svg{ width:16px; height:16px; fill:none; stroke:var(--white); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

.bts-video-track{
  display:flex; gap:24px; justify-content:center; overflow-x:auto; padding:0 clamp(20px,6vw,56px) 12px;
  scroll-snap-type:x proximity; scroll-behavior:smooth;
  scrollbar-width:thin; scrollbar-color:var(--bluegrey) transparent;
}
.bts-video-track::-webkit-scrollbar{ height:5px; }
.bts-video-track::-webkit-scrollbar-thumb{ background:rgba(118,134,157,0.4); border-radius:4px; }

.bts-video-node{
  position:relative; flex:0 0 260px; aspect-ratio:9/16; border-radius:6px; overflow:hidden;
  border:1px solid rgba(118,134,157,0.25); scroll-snap-align:start; background:var(--navy-deep);
}
.bts-video-el{ width:100%; height:100%; object-fit:cover; display:block; }
.bts-video-badge{
  position:absolute; top:14px; left:14px; font-size:0.6rem; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--navy-deep); background:var(--gold); padding:5px 10px; border-radius:2px; font-weight:600;
}
.bts-play-icon{
  position:absolute; inset:0; margin:auto; width:48px; height:48px; border-radius:50%;
  background:rgba(6,27,57,0.55); border:1px solid rgba(255,255,255,0.5);
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(4px);
}
.bts-play-icon svg{ width:18px; height:18px; fill:var(--white); margin-left:2px; }
.bts-video-caption{
  position:absolute; left:0; right:0; bottom:0; padding:14px 16px; font-size:0.76rem;
  background:linear-gradient(to top, rgba(6,27,57,0.92), transparent);
}
@media (max-width:640px){ .bts-video-node{ flex-basis:170px; } }