/* ===== SERVICE PAGE LAYOUT ===== */

body.service-page{
  margin: 0;
  background: center/cover no-repeat;
  color: #222;
  overflow-x: hidden;
}

/* overlay to improve readability */
body.service-page::before{
  content:"";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
  z-index: 0;
}

header.service-header{
  position: relative;
  z-index: 1;
  padding: 28px 16px 10px;
  text-align: center;
}

header.service-header h1{
  margin: 0;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  letter-spacing: 0.3px;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

main.service-main{
  position: relative;
  z-index: 1;
}

/* info card */
.info-card{
  background: var(--card-bg);
  border: 1px solid rgba(179,142,46,0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.info-card p{
  margin: 10px 0;
  line-height: 1.55;
  font-size: clamp(0.98rem, 3.2vw, 1.15rem);
}

.meta-row{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.pill{
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  font-weight: 600;
}

/* gallery */
.gallery{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.shot{
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
  transform: translateZ(0);
  animation: float 7s ease-in-out infinite;
}

.shot:nth-child(2){ animation-delay: .6s; }
.shot:nth-child(3){ animation-delay: 1.2s; }
.shot:nth-child(4){ animation-delay: 1.8s; }

@keyframes float{
  0%,100%{ transform: translateY(-6px); }
  50%{ transform: translateY(6px); }
}

@media (min-width: 768px){
  header.service-header{ padding-top: 40px; }
  .meta-row{ grid-template-columns: 1fr 1fr; justify-items: center; }
  .gallery{ grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce){
  .shot{ animation: none; }
}
