@media (max-width:380px){
  .hero-centre__title{font-size:2rem;}
  .container{padding:0 16px;}
  section{padding:40px 0;}
  .brand-name{font-size:1.1rem;}
}

@media (min-width:1024px){
  section{padding:96px 0;}
}

@media (prefers-reduced-motion:reduce){
  *{animation-duration:.001ms !important;transition-duration:.001ms !important;}
  html{scroll-behavior:auto;}
}

.lightbox{
  position:fixed;inset:0;
  z-index:1400;
  background:rgba(20,28,22,.92);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
}
.lightbox img{
  max-width:90vw;max-height:90vh;
  object-fit:contain;
  border-radius:8px;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.6);
}
.lightbox button{
  position:absolute;
  width:48px;height:48px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.12);
  color:#fff;
  border-radius:50%;
  font-size:1.4rem;font-family:var(--ff-display);
  transition:background .2s;
}
.lightbox button:hover{background:rgba(255,255,255,.22);}
.lightbox .lb-close{top:18px;right:18px;}
.lightbox .lb-prev{left:14px;top:50%;transform:translateY(-50%);}
.lightbox .lb-next{right:14px;top:50%;transform:translateY(-50%);}
@media (min-width:768px){
  .lightbox .lb-close{top:24px;right:24px;}
  .lightbox .lb-prev{left:24px;}
  .lightbox .lb-next{right:24px;}
}
