img{
  max-width: 100%;
  height: auto;
  display: block;
}

.services-hero{
  padding: 20px 0 18px;
  text-align: center;
}

.services-hero h1{
  margin: 0 0 20px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: clamp(46px, 4.6vw, 76px);
  color: var(--gold-canva);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.services-video{
  margin: 0 auto 56px;
  width: min(920px, 100%);
  height: 360px;
  border-radius: 18px;
  background: #0b0b0f;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.services-hero-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.services-video-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(70% 70% at 50% 35%,
      rgba(255,255,255,0.06),
      rgba(0,0,0,0.26) 60%,
      rgba(0,0,0,0.44) 100%
    ),
    linear-gradient(180deg,
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.08) 40%,
      rgba(0,0,0,0.22)
    );
  mix-blend-mode: multiply;
}

.services-video-grain{
  position: absolute;
  inset: -18%;
  pointer-events: none;
  opacity: 0.10;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04) 1px,
      rgba(0,0,0,0.03) 2px,
      rgba(0,0,0,0.03) 3px
    );
  transform: rotate(8deg);
  animation: srvGrain 6.5s steps(2,end) infinite;
}

@keyframes srvGrain{
  0%{ transform: rotate(8deg) translate3d(0,0,0); }
  100%{ transform: rotate(8deg) translate3d(-2%,1.5%,0); }
}

.services-copy{
  max-width: 900px;
  margin: 0 auto 18px;
  font-family: var(--font-main);
  font-weight: 200;
  font-size: 17px;
  line-height: 1.8;
  color: #4a4a4a;
}

.services-tagline{
  color: var(--gold);
  font-weight: 600;
}

.services-wrap{
  padding: 20px 0 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, 260px);
  justify-content: center;
  gap: 22px;
}

.service-card{
  width: 260px;
  background: var(--card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.service-card img{
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  transition: transform .35s ease;
}

.service-card:hover img{
  transform: scale(1.03);
}

.service-name{
  margin: 12px 0 2px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-canva);
  text-align: center;
}

.service-desc{
  margin: 0;
  font-family: var(--font-main);
  font-weight: 200;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  text-align: center;
}

@media (max-width:1100px){
  .services-grid{ grid-template-columns: repeat(3,240px); }
  .service-card{ width:240px; }
}

@media (max-width:980px){
  .services-video{ height:280px; }
  .services-grid{ grid-template-columns: repeat(2,240px); }
}

@media (max-width:620px){
  .services-video{ height:240px; }
  .services-grid{ grid-template-columns:1fr; }
  .service-card{ width:100%; }
  .service-card img{ height:150px; }
}