:root{
  --bg:#0f1216;
  --panel:#151a21;
  --text:#e9edf3;
  --muted:#b8c0cc;
  --line:rgba(255,255,255,.10);
  --accent:#f5b942;
  --accent-2:#ff7a59;
  --max:1120px;
  --radius:18px;
  --shadow:0 14px 40px rgba(0,0,0,.35);
  --header-height:76px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
  background:linear-gradient(180deg,#0b0e12 0%, #0f1216 40%, #0b0e12 100%);
  color:var(--text);
  line-height:1.55;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{color:inherit}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

.skip{
  position:absolute;
  left:-9999px;
}

.skip:focus{
  left:20px;
  top:20px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:10000;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--text);
  padding:10px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.18);
}

.btn-primary{
  border-color:rgba(245,185,66,.35);
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#101318;
}

.btn-primary:hover{
  border-color:rgba(245,185,66,.55);
  background:linear-gradient(135deg,#ffd06a,var(--accent-2));
}

.btn-ghost{
  border-color:rgba(255,255,255,.12);
  background:transparent;
  color:var(--text);
}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(10px);
  background:rgba(11,14,18,.72);
  border-bottom:1px solid var(--line);
}

.nav{
  min-height:var(--header-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 0;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex-shrink:0;
}

.brand img{
  height:38px;
  width:auto;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:18px;
  margin-left:auto;
}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
  font-weight:600;
}

.menu a{
  opacity:.92;
  text-decoration:none;
}

.menu a:hover{
  opacity:1;
}

.cta{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.mobile-top-actions{
  display:none;
  align-items:center;
  gap:10px;
  margin-left:auto;
}

.mobile-wa{
  min-height:44px;
}

.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-shrink:0;
}

.nav-toggle:hover{
  background:rgba(255,255,255,.06);
}

.nav-toggle svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  stroke-width:2;
  fill:none;
}

.mobile-nav{
  display:none;
  padding:0 0 16px;
}

.mobile-nav-inner{
  display:grid;
  gap:12px;
  border-top:1px solid var(--line);
  padding-top:14px;
}

.mobile-menu{
  display:grid;
  gap:8px;
}

.mobile-menu a{
  text-decoration:none;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(255,255,255,.02);
  font-weight:700;
}

.mobile-cta{
  display:grid;
  gap:8px;
}

body.menu-open{
  overflow:hidden;
}

/* Main */
main{
  padding:0;
}

/* Hero */
.hero{
  padding:42px 0 26px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

.hero-copy{
  padding:26px 0;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:rgba(245,185,66,.95);
  font-size:12px;
}

.kicker::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(245,185,66,.12);
}

h1{
  margin:14px 0 10px;
  font-size:clamp(30px, 3.7vw, 52px);
  line-height:1.08;
  letter-spacing:-.6px;
}

.subline{
  margin:0 0 18px;
  color:var(--muted);
  font-size:clamp(15px, 1.5vw, 18px);
  max-width:52ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 14px;
}

.trustline{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:10px;
  color:rgba(233,237,243,.85);
  font-weight:650;
  font-size:14px;
}

.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  padding:8px 10px;
  border-radius:999px;
}

.hero-media{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:
    radial-gradient(1200px 500px at 30% 10%, rgba(245,185,66,.20), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  box-shadow:var(--shadow);
  min-height:360px;
}

.hero-media video,
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05) contrast(1.05);
  opacity:.95;
}

.video-teaser{
  position:relative;
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
  z-index:1;
}

.video-teaser img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.video-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:74px;
  height:74px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(15,18,22,.72);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size:28px;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  transition:transform .15s ease, background .15s ease;
}

.video-teaser:hover .video-play{
  transform:translate(-50%, -50%) scale(1.05);
  background:rgba(245,185,66,.88);
  color:#101318;
}

.hero-badge{
  position:absolute;
  left:16px;
  bottom:16px;
  background:rgba(15,18,22,.65);
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:14px;
  max-width:70%;
  z-index:2;
}

.hero-badge strong{
  display:block;
  font-size:13px;
}

.hero-badge span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

/* Sections */
section{
  padding:28px 0;
}

.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:14px;
}

h2{
  margin:0;
  font-size:clamp(20px, 2.2vw, 28px);
  letter-spacing:-.3px;
}

h3{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:-.2px;
}

.section-note{
  color:var(--muted);
  max-width:60ch;
  margin:0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:14px;
}

.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 10px 26px rgba(0,0,0,.22);
}

.card p{
  margin:0;
  color:var(--muted);
}

.card .link{
  display:inline-block;
  margin-top:10px;
  color:rgba(245,185,66,.95);
  font-weight:750;
  text-decoration:none;
}

.card .link:hover{
  text-decoration:underline;
}

/* Audience */
.audience{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:14px;
}

/* Showreel */
.video-embed{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:#000;
}

.video-embed iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
  margin-top:14px;
}

.shot{
  grid-column:span 6;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:#0c0f13;
  min-height:220px;
  box-shadow:0 12px 30px rgba(0,0,0,.28);
  position:relative;
}

.shot:nth-child(3){grid-column:span 4}
.shot:nth-child(4){grid-column:span 8}

.shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:.95;
}

.shot .cap{
  position:absolute;
  left:12px;
  bottom:12px;
  background:rgba(15,18,22,.60);
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius:12px;
  font-size:12px;
  color:rgba(233,237,243,.9);
}

/* Why */
.why{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:14px;
  margin-top:14px;
  align-items:stretch;
}

.list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.list li{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  padding:12px;
  border-radius:14px;
  color:rgba(233,237,243,.92);
  font-weight:650;
}

.list li span{
  display:block;
  color:var(--muted);
  font-weight:600;
  margin-top:2px;
  font-size:13px;
}

ul.list.bullets{
  padding-left:18px;
  list-style:disc;
  display:block;
}

ul.list.bullets li{
  border:none;
  background:none;
  padding:0;
  border-radius:0;
  font-weight:400;
  color:rgba(233,237,243,.92);
  margin:6px 0;
}

/* CTA band */
.cta-band{
  border:1px solid rgba(245,185,66,.28);
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(245,185,66,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow);
}

.cta-band .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.cta-band p{
  margin:6px 0 0;
  color:var(--muted);
}

.cta-band h2{
  margin:0;
}

/* Contact */
form{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

label{
  font-weight:700;
  font-size:13px;
}

input,
textarea,
select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
  font:inherit;
}

textarea{
  min-height:120px;
  resize:vertical;
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(245,185,66,.45);
}

.fineprint{
  color:var(--muted);
  font-size:12px;
  margin:0;
}

/* References */
.reference-section{
  padding:20px 0 10px;
}

.reference-box{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:24px;
  padding:22px 20px;
  text-align:center;
  box-shadow:0 10px 26px rgba(0,0,0,.18);
}

.reference-text{
  margin:0 0 18px;
  color:rgba(233,237,243,.82);
  font-weight:650;
  font-size:14px;
}

.reference-logos{
  display:flex;
  gap:55px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.reference-logos img{
  height:52px;
  width:auto;
  max-width:100%;
  filter:brightness(0) invert(1);
  opacity:.92;
}

/* Generic content pages */
.page-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:18px;
  margin-bottom:14px;
}

.wrap{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:18px;
}

.muted{
  color:var(--muted);
}

/* Footer */
footer{
  padding:22px 0 34px;
  border-top:1px solid var(--line);
  margin-top:16px;
  color:var(--muted);
}

.foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.foot-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.foot a{
  color:var(--muted);
  text-decoration:none;
}

.foot a:hover{
  text-decoration:underline;
}

.social{
  display:flex;
  gap:12px;
  align-items:center;
}

.social a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  transition:transform .15s ease, background .15s ease;
}

.social a:hover{
  transform:translateY(-2px);
  background:rgba(245,185,66,.12);
  border-color:rgba(245,185,66,.55);
  box-shadow:0 0 0 6px rgba(245,185,66,.10);
}

.social svg{
  width:18px;
  height:18px;
  fill:rgba(233,237,243,.88);
}

/* Cookie Banner */
.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:9999;
  border:1px solid var(--line);
  background:rgba(11,14,18,.92);
  backdrop-filter:blur(10px);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.cookie-inner{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  padding:14px;
  max-width:var(--max);
  margin:0 auto;
}

.cookie-text{
  max-width:78ch;
  color:rgba(233,237,243,.92);
  font-size:14px;
}

.cookie-text p{
  margin:0 0 6px;
}

.cookie-text a{
  color:rgba(245,185,66,.95);
  font-weight:800;
  text-decoration:none;
}

.cookie-text a:hover{
  text-decoration:underline;
}

.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

.cookie-hidden{
  display:none;
}

/* Responsive */
@media (max-width: 1100px){
  .cards,
  .audience{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 960px){
  .nav-right{
    display:none;
  }

  .mobile-top-actions{
    display:flex;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .mobile-nav.is-open{
    display:block;
  }

  .hero-grid,
  .why{
    grid-template-columns:1fr;
  }

  .hero-copy{
    padding:8px 0 0;
  }

  .hero-media{
    min-height:280px;
  }

  .gallery{
    grid-template-columns:repeat(2,1fr);
  }

  .shot,
  .shot:nth-child(3),
  .shot:nth-child(4){
    grid-column:span 1;
  }
}

@media (max-width: 720px){
  .container{
    padding:0 16px;
  }

  section{
    padding:22px 0;
  }

  .section-title,
  .page-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .cards,
  .audience,
  .gallery,
  .grid2{
    grid-template-columns:1fr;
  }

  .hero{
    padding:26px 0 18px;
  }

  h1{
    line-height:1.15;
  }

  .subline{
    max-width:none;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .hero-actions .btn{
    width:100%;
  }

  .trustline{
    gap:10px;
  }

  .pill{
    width:100%;
    text-align:center;
  }

  .hero-badge{
    left:12px;
    right:12px;
    bottom:12px;
    max-width:none;
  }

  .card,
  .wrap{
    padding:14px;
  }

  .shot{
    min-height:200px;
  }

  .video-play{
    width:62px;
    height:62px;
    font-size:24px;
  }

  .cta-band .row{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-band .btn{
    width:100%;
  }

  .reference-box{
    padding:18px 14px;
  }

  .reference-logos{
    gap:24px;
  }

  .reference-logos img{
    height:36px;
  }

  .foot{
    flex-direction:column;
    align-items:flex-start;
  }

  .foot-links{
    gap:14px;
  }

  .cookie-inner{
    flex-direction:column;
    align-items:stretch;
  }

  .cookie-actions{
    justify-content:flex-start;
  }

  .cookie-actions .btn{
    width:100%;
  }

  .mobile-top-actions{
    gap:8px;
  }

  .mobile-wa{
    padding:10px 12px;
    font-size:14px;
  }
}