:root{
  --max-width:1100px;
  --brand-blue:#0b2345;
  --accent:#f4c542;
  --muted:#f7f7f7;
  --text:#222;
  --muted-text:#555;
  --card-border:#e6e6e6;
  --card-radius:10px;
  --card-shadow:0 6px 18px rgba(0,0,0,0.08);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
}

body{
  background:#fff;
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

.site-container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 1.5rem;
}

/* HEADER */
.site-header{
  background:var(--brand-blue);
  color:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  padding:0.8rem 0;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-wrap img{
  height:56px;
}

.main-nav ul{
  display:flex;
  gap:1.25rem;
  list-style:none;
}

.main-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
}

.nav-toggle span{
  width:26px;
  height:3px;
  background:#fff;
  display:block;
  border-radius:3px;
}

/* MOBILE NAV */
@media(max-width:900px){
  .main-nav{
    display:none;
    width:100%;
    background:var(--brand-blue);
  }

  .main-nav ul{
    flex-direction:column;
    padding:1rem;
  }

  .nav-toggle{
    display:flex;
  }

  .site-header.nav-open .main-nav{
    display:block;
  }
}

/* VIDEO */
.video-viewport{
  position:relative;
  width:100vw;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  height:56vh;
  min-height:320px;
  overflow:hidden;
  background:#000;
}

.video-viewport video{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-dim{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25);
}

/* HERO */
.hero-band{
  background:var(--brand-blue);
  color:#fff;
  padding:3rem 0;
  margin-top:-4rem;
  position:relative;
  z-index:10;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:2rem;
}

.hero-left h1{
  font-size:2.4rem;
  line-height:1.1;
  margin-bottom:0.6rem;
}

.lead{
  opacity:0.9;
  margin-bottom:1rem;
}

.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-bottom:1.25rem;
}

.pill{
  background:rgba(255,255,255,0.1);
  padding:0.4rem 0.8rem;
  border-radius:999px;
  font-size:0.85rem;
}

.btn-primary{
  display:inline-block;
  background:var(--accent);
  color:#111;
  padding:0.65rem 1.25rem;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  border:none;
  cursor:pointer;
}

.hero-right ul{
  list-style:none;
  font-size:0.9rem;
  opacity:0.95;
}

/* 3 IMAGE STRIP */
.work-strip{
  width:100vw;
  margin-left:50%;
  margin-right:50%;
  transform:translateX(-50%);
  background:#f4f4f4;
  padding:2rem 0;
  overflow:hidden;
}

.work-strip-inner{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  max-width:1300px;
  margin:0 auto;
  padding:0 1rem;
}

.work-strip-inner img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:10px;
  box-shadow:var(--card-shadow);
}

/* SECTIONS */
.section{
  padding:3rem 0;
  scroll-margin-top:220px;
}

.section-title{
  font-size:1.6rem;
  color:var(--brand-blue);
  margin-bottom:0.5rem;
}

.section-subtitle{
  color:var(--muted-text);
  margin-bottom:1rem;
}

/* GRID */
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
}

.card{
  background:#fff;
  border-radius:var(--card-radius);
  padding:1.25rem;
  border:1px solid var(--card-border);
  box-shadow:var(--card-shadow);
}

.card h3{
  color:var(--brand-blue);
  margin-bottom:0.5rem;
}

/* TWO COL */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.25rem;
}

/* LISTS */
.list{
  list-style:none;
}

.list li{
  margin-bottom:0.45rem;
  padding-left:1rem;
  position:relative;
}

.list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--accent);
}

/* CONTACT */
.contact-card{
  background:var(--muted);
  padding:1.5rem;
  border-radius:var(--card-radius);
  border:1px solid var(--card-border);
  box-shadow:var(--card-shadow);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.25rem;
}

form input,
form textarea{
  width:100%;
  padding:0.6rem 0.75rem;
  border-radius:6px;
  border:1px solid #ccc;
  font-size:0.95rem;
}

form textarea{
  min-height:140px;
}

button[type="submit"]{
  background:var(--accent);
  color:#111;
  padding:0.65rem 1.25rem;
  border-radius:999px;
  font-weight:700;
  border:none;
  cursor:pointer;
}

/* FOOTER */
.site-footer{
  background:#0b2345;
  color:#fff;
  padding:1.25rem 0;
  margin-top:2rem;
  text-align:center;
}

/* MOBILE FIXES */
@media(max-width:900px){

  .hero-content{
    grid-template-columns:1fr;
  }

  .work-strip-inner{
    grid-template-columns:1fr !important;
  }

  .work-strip-inner img{
    height:180px !important;
  }

  .grid-3{
    grid-template-columns:1fr !important;
  }

  .two-col{
    grid-template-columns:1fr;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }
}

/* GALLERY */
.work-gallery{
  display:flex;
  overflow-x:auto;
  gap:1rem;
  padding-bottom:1rem;
  scroll-snap-type:x mandatory;
}

.work-gallery img{
  height:260px;
  flex:0 0 auto;
  border-radius:10px;
  object-fit:cover;
  scroll-snap-align:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.12);
}

.work-gallery::-webkit-scrollbar{
  height:8px;
}

.work-gallery::-webkit-scrollbar-thumb{
  background:#ccc;
  border-radius:4px;
}

@media(max-width:900px){
  .work-gallery img{
    height:220px;
  }
}
