*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
  --black:#0b0b0b;
  --dark:#111111;
  --dark2:#161616;
  --dark3:#1c1c1c;
  --dark4:#252525;
  --white:#ffffff;
  --off-white:#f0f0f0;
  --gray:#b0b0b0;
  --gray-light:#d5d5d5;
  --gray-dim:#787878;
  --red:#c8102e;
  --red-dark:#a30d24;
  --red-glow:rgba(200,16,46,.1);
  --red-bright:#e8193a;
}
html{scroll-behavior:smooth}
body{
  font-family:'Source Sans 3',sans-serif;
  background:var(--black);
  color:var(--off-white);
  overflow-x:clip;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,h5{font-family:'Oswald',sans-serif;text-transform:uppercase;font-weight:600;color:var(--white)}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--black)}
::-webkit-scrollbar-thumb{background:var(--red);border-radius:3px}

.topbar-wrap{position:fixed;top:0;left:0;right:0;z-index:500}
.topbar-upper{
  background:var(--red);padding:.35rem 2.5rem;
  display:flex;justify-content:space-between;align-items:center;
}
.topbar-upper-left{display:flex;align-items:center;gap:1.8rem}
.topbar-upper-item{
  display:flex;align-items:center;gap:.4rem;
  font-size:.7rem;font-weight:600;letter-spacing:.06em;color:var(--white);
}
.topbar-upper-item svg{width:13px;height:13px;stroke:var(--white);stroke-width:2;fill:none}
.topbar-upper-right a{
  display:flex;align-items:center;gap:.4rem;
  font-size:.68rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:var(--white);transition:opacity .2s;
}
.topbar-upper-right a:hover{opacity:.8}
.topbar-upper-right svg{width:15px;height:15px;fill:var(--white)}

.topbar{
  background:#000000;
  border-bottom:1px solid rgba(255,255,255,.04);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.topbar.scrolled{box-shadow:0 4px 40px rgba(0,0,0,.6)}
.topbar-inner{
  max-width:1320px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:.7rem 2.5rem;
}
.topbar-logo{display:flex;align-items:center}
.topbar-logo img{height:42px;width:auto}
.topbar-nav{display:flex;align-items:center;gap:2.8rem;list-style:none}
.topbar-nav a{
  font-family:'Oswald',sans-serif;font-size:.82rem;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;color:var(--gray);
  transition:color .25s;position:relative;
}
.topbar-nav a::after{
  content:'';position:absolute;left:0;bottom:-8px;
  width:0;height:2px;background:var(--red);
  transition:width .3s cubic-bezier(.16,1,.3,1);
}
.topbar-nav a:hover{color:var(--white)}
.topbar-nav a:hover::after{width:100%}
.topbar-cta{
  font-family:'Oswald',sans-serif;font-size:.8rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  padding:.7rem 2rem;background:var(--red);color:var(--white);
  border:none;border-radius:2px;cursor:pointer;transition:all .25s;
  display:inline-flex;align-items:center;gap:.5rem;
}
.topbar-cta svg{width:14px;height:14px;stroke:currentColor;stroke-width:2;fill:none}
.topbar-cta:hover{background:var(--red-bright);box-shadow:0 0 24px rgba(200,16,46,.35)}

.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none}
.hamburger span{width:24px;height:2px;background:var(--white);transition:all .3s}

.mobile-menu{
  display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:499;
  background:rgba(0,0,0,.98);
  flex-direction:column;align-items:center;justify-content:center;gap:2rem;
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  font-family:'Oswald',sans-serif;font-size:1.8rem;letter-spacing:.1em;
  text-transform:uppercase;color:var(--gray-light);transition:color .2s;
}
.mobile-menu a:hover{color:var(--red)}

.hero{
  min-height:100vh;display:flex;align-items:center;
  position:relative;overflow:hidden;padding:9rem 2.5rem 4rem;
}
.hero-bg{
  position:absolute;inset:0;overflow:hidden;
}
.hero-bg img{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.15) saturate(.5);
}
.hero-bg::after{
  content:'';position:absolute;inset:0;
  background:
    linear-gradient(135deg,rgba(200,16,46,.06) 0%,transparent 40%),
    linear-gradient(to right,rgba(0,0,0,.92) 0%,rgba(0,0,0,.35) 55%,rgba(0,0,0,.65) 100%),
    linear-gradient(to top,var(--black) 0%,transparent 25%);
}
.hero-inner{position:relative;z-index:2;max-width:1320px;margin:0 auto;width:100%}
.hero-eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;margin-bottom:1.8rem;
  font-size:.72rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--red);
}
.hero-eyebrow::before{content:'';width:40px;height:2px;background:var(--red)}
.hero h1{
  font-size:clamp(2.8rem,7vw,5.5rem);line-height:.95;letter-spacing:-.01em;
  max-width:700px;margin-bottom:1.8rem;color:var(--white);
}
.hero h1 .red{color:var(--red)}
.hero-sub{
  font-size:1.15rem;font-weight:300;color:var(--gray-light);
  max-width:520px;line-height:1.75;margin-bottom:2.8rem;
}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.btn-primary{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:'Oswald',sans-serif;font-size:.9rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;
  padding:1rem 2.4rem;background:var(--red);color:var(--white);
  border:none;border-radius:2px;cursor:pointer;transition:all .3s;
}
.btn-primary:hover{background:var(--red-bright);transform:translateY(-1px);box-shadow:0 6px 28px rgba(200,16,46,.3)}
.btn-outline{
  display:inline-flex;align-items:center;gap:.6rem;
  font-family:'Oswald',sans-serif;font-size:.9rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  padding:1rem 2.4rem;background:transparent;color:var(--white);
  border:1px solid rgba(255,255,255,.2);border-radius:2px;cursor:pointer;transition:all .3s;
}
.btn-outline:hover{border-color:var(--red);color:var(--red)}
.read-more{
  display:inline-flex;align-items:center;gap:.4rem;
  font-family:'Oswald',sans-serif;font-size:.75rem;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--red);margin-top:1rem;transition:gap .3s;
}
.read-more:hover{gap:.8rem}
.read-more svg{width:14px;height:14px;stroke:currentColor;stroke-width:2;fill:none}

.hero-stats{
  display:flex;gap:3.5rem;margin-top:4rem;
  padding-top:2.5rem;border-top:1px solid rgba(255,255,255,.08);
}
.topbar-logo img{height:63px}
.hero-stat h4{font-size:2rem;color:var(--red);margin-bottom:.25rem}
.hero-stat p{font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gray)}

.section{padding:7rem 2.5rem}
.section-dark{background:var(--dark2)}
.container{max-width:1320px;margin:0 auto}
.section-header{margin-bottom:3.5rem}
.section-eyebrow{
  font-size:.68rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;
  color:var(--red);margin-bottom:.6rem;display:flex;align-items:center;gap:.6rem;
}
.section-eyebrow::before{content:'';width:24px;height:2px;background:var(--red)}
.section-title{font-size:clamp(1.8rem,4vw,2.8rem);line-height:1.05;letter-spacing:.02em;color:var(--white)}
.section-subtitle{font-size:1.05rem;color:var(--gray-light);max-width:520px;margin-top:.8rem;font-weight:300;line-height:1.7}

.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.04);
}
.svc{
  background:var(--dark);padding:2.8rem 2.2rem;
  position:relative;transition:all .4s;overflow:hidden;
}
.svc::before{
  content:'';position:absolute;top:0;left:0;width:0;height:3px;
  background:var(--red);transition:width .5s cubic-bezier(.16,1,.3,1);
}
.svc:hover{background:var(--dark3)}
.svc:hover::before{width:100%}
.svc-icon{
  width:46px;height:46px;margin-bottom:1.5rem;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(200,16,46,.2);border-radius:3px;background:var(--red-glow);
}
.svc-icon svg{width:22px;height:22px;stroke:var(--red);stroke-width:1.5;fill:none}
.svc h3{font-size:1.1rem;letter-spacing:.06em;margin-bottom:.8rem;color:var(--white)}
.svc p{font-size:.9rem;color:var(--gray-light);line-height:1.7}

.cta-banner{position:relative;overflow:hidden;padding:8rem 2.5rem;text-align:center}
.cta-banner-bg{position:absolute;inset:0;overflow:hidden}
.cta-banner-bg img{width:100%;height:100%;object-fit:cover;filter:brightness(.18) saturate(.6)}
.cta-banner-bg::after{
  content:'';position:absolute;inset:0;
  background:
    linear-gradient(to bottom,rgba(11,11,11,.5) 0%,rgba(11,11,11,.2) 40%,rgba(11,11,11,.2) 60%,rgba(11,11,11,.5) 100%),
    linear-gradient(135deg,rgba(200,16,46,.15),transparent 60%);
}
.cta-banner .container{position:relative;z-index:2}
.cta-banner h2{font-size:clamp(2rem,5vw,3.5rem);margin-bottom:1rem;letter-spacing:.04em;color:var(--white)}
.cta-banner h2 .red{color:var(--red)}
.cta-banner p{color:var(--gray-light);font-size:1.1rem;margin-bottom:2.5rem;font-weight:300}

.case-layout{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.case-media{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.case-media img{
  width:100%;aspect-ratio:1;object-fit:cover;
  border-radius:4px;border:1px solid rgba(255,255,255,.06);
  transition:transform .4s,border-color .4s;
}
.case-media img:hover{transform:scale(1.02);border-color:rgba(200,16,46,.2)}
.case-media video{
  width:100%;max-height:500px;object-fit:contain;
  border-radius:4px;border:1px solid rgba(255,255,255,.06);
  background:#000;grid-column:1/-1;
}
.case-body{padding-top:1rem}
.case-body h3{font-size:1.6rem;letter-spacing:.04em;margin-bottom:1.2rem;color:var(--white)}
.case-body p{font-size:.95rem;color:var(--gray-light);line-height:1.8;margin-bottom:1rem}
.case-quote{
  margin:2rem 0;padding:1.5rem 0 1.5rem 1.5rem;
  border-left:3px solid var(--red);
  font-family:'Oswald',sans-serif;font-size:1.35rem;letter-spacing:.03em;
  line-height:1.35;color:var(--white);
}
.case-cta{margin-top:1.5rem}

.contact-layout{display:grid;grid-template-columns:1fr 1.2fr;gap:4rem;align-items:start}
.contact-info h3{font-size:1.4rem;margin-bottom:1.2rem;letter-spacing:.04em;color:var(--white)}
.contact-info>p{color:var(--gray-light);line-height:1.75;margin-bottom:2rem;font-size:.95rem}
.contact-detail{
  display:flex;align-items:center;gap:1rem;
  padding:1.1rem 0;border-bottom:1px solid rgba(255,255,255,.05);
}
.contact-detail:last-of-type{border-bottom:none}
.contact-detail-icon{
  width:42px;height:42px;min-width:42px;
  display:flex;align-items:center;justify-content:center;
  background:var(--red-glow);border:1px solid rgba(200,16,46,.15);border-radius:3px;
}
.contact-detail-icon svg{width:18px;height:18px;stroke:var(--red);stroke-width:1.5;fill:none}
.contact-detail div{font-size:.88rem}
.contact-detail strong{
  display:block;color:var(--white);font-weight:600;
  margin-bottom:.2rem;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;
}
.contact-detail span{color:var(--gray-light)}
.contact-detail a{color:var(--red)}

.contact-trust{margin-top:2.5rem;padding-top:2rem;border-top:1px solid rgba(255,255,255,.05)}
.contact-trust h4{font-size:.9rem;letter-spacing:.08em;margin-bottom:1.5rem;color:var(--white)}
.trust-items{display:flex;flex-direction:column;gap:1rem}
.trust-item{
  display:flex;align-items:flex-start;gap:.8rem;
  padding:1rem 1.2rem;
  background:var(--dark3);border:1px solid rgba(255,255,255,.04);
  border-radius:4px;transition:border-color .3s;
}
.trust-item:hover{border-color:rgba(200,16,46,.15)}
.trust-item-icon{
  width:36px;height:36px;min-width:36px;
  display:flex;align-items:center;justify-content:center;
  background:var(--red-glow);border-radius:3px;margin-top:2px;
}
.trust-item-icon svg{width:18px;height:18px;stroke:var(--red);stroke-width:1.5;fill:none}
.trust-item div strong{display:block;font-size:.82rem;color:var(--white);font-weight:600;margin-bottom:.15rem}
.trust-item div span{font-size:.82rem;color:var(--gray);line-height:1.5}

#contact-form{
  background:var(--dark3);border:1px solid rgba(255,255,255,.06);
  padding:2.8rem;border-radius:4px;max-width:100%;overflow:hidden;
}
#contact-form h3{
  font-family:'Oswald',sans-serif;font-size:1.2rem;
  letter-spacing:.08em;text-transform:uppercase;margin-bottom:2rem;color:var(--white);
}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
.form-group{margin-bottom:1rem}
.form-group label{
  display:block;font-size:.72rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;color:var(--gray-light);margin-bottom:.5rem;
}
.form-group input,.form-group textarea,.form-group select{
  width:100%;background:var(--dark4);
  border:1px solid rgba(255,255,255,.08);color:var(--white);
  font-family:'Source Sans 3',sans-serif;font-size:.92rem;
  padding:.9rem 1.1rem;border-radius:2px;outline:none;
  transition:border-color .3s,background .3s;
}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--gray-dim)}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{
  border-color:var(--red);background:rgba(200,16,46,.03);
}
.form-group textarea{resize:vertical;min-height:120px}
.form-group select{cursor:pointer;appearance:none;color:var(--gray-light)}
#contact-form button[type="submit"]{
  width:100%;padding:1.05rem;margin-top:.5rem;
  font-family:'Oswald',sans-serif;font-size:.92rem;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
  background:var(--red);color:var(--white);
  border:none;border-radius:2px;cursor:pointer;transition:all .3s;
}
#contact-form button[type="submit"]:hover{background:var(--red-bright);box-shadow:0 4px 24px rgba(200,16,46,.3)}

#contact-form .g-recaptcha{transform-origin:left center;max-width:100%}

.insta-section{text-align:center}
.insta-follow{
  display:inline-flex;align-items:center;gap:.6rem;margin-bottom:2.5rem;
  font-size:.82rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--red);transition:gap .3s;
}
.insta-follow:hover{gap:1rem}
.insta-follow svg{width:20px;height:20px}
.section-header-center{text-align:center}
.section-header-center .section-eyebrow{justify-content:center}

.footer{background:var(--dark);border-top:1px solid rgba(255,255,255,.04);padding:4.5rem 2.5rem 2rem}
.footer-inner{
  max-width:1320px;margin:0 auto;
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:3rem;
}
.footer-brand img{
  height:auto;width:220px;margin-bottom:1.4rem;
  border-radius:10px;background:#000;padding:.6rem 1rem;
}
.footer-brand p{color:var(--gray);font-size:.88rem;line-height:1.75;max-width:300px}
.footer-col h4{
  font-family:'Oswald',sans-serif;font-size:.75rem;
  letter-spacing:.15em;text-transform:uppercase;color:var(--white);margin-bottom:1.2rem;
}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:.65rem}
.footer-col a{font-size:.88rem;color:var(--gray);transition:color .2s}
.footer-col a:hover{color:var(--red)}
.footer-bottom{
  max-width:1320px;margin:3rem auto 0;padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.05);
  display:flex;justify-content:space-between;align-items:center;
  font-size:.75rem;color:var(--gray);letter-spacing:.04em;
}
.footer-bottom-tags{display:flex;gap:1.5rem}
.footer-bottom-tags span{position:relative;padding-left:.9rem}
.footer-bottom-tags span::before{
  content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:5px;height:5px;border-radius:50%;background:var(--red);
}

.reveal{opacity:0;transform:translateY(32px);transition:opacity .65s ease,transform .65s ease}
.reveal.vis{opacity:1;transform:none}
.reveal-d1{transition-delay:.08s}
.reveal-d2{transition-delay:.16s}
.reveal-d3{transition-delay:.24s}

@media (max-width:1024px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .footer-inner{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .topbar-upper{padding:.3rem 1.2rem;flex-wrap:wrap;justify-content:center;gap:.5rem}
  .topbar-upper-left{gap:1rem}
  .topbar-nav,.topbar-cta-wrap{display:none}
  .hamburger{display:flex}
  .topbar-inner{padding:.65rem 1.2rem}
  .topbar-logo img{height:42.5px}
  .hero{padding:8rem 1.5rem 3rem}
  .hero-stats{flex-direction:column;gap:1.5rem}
  .section{padding:4.5rem 1.5rem}
  .services-grid{grid-template-columns:1fr}
  .case-layout{grid-template-columns:1fr;gap:2rem}
  .case-media{order:-1}
  .contact-layout{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr 1fr}
  .footer-bottom{flex-direction:column;gap:.8rem;text-align:center}
}
@media (max-width:640px){
  .contact-grid > div,.grid > div{min-width:0;max-width:100%}
}
@media (max-width:480px){
  .topbar-upper-right{display:none}
  .hero h1{font-size:2.4rem}
}
@media (max-width:400px){
  #contact-form .g-recaptcha{transform:scale(0.85)}
}
@media (max-width:340px){
  #contact-form .g-recaptcha{transform:scale(0.75)}
}
