body { font-family: system-ui, sans-serif; margin:0; background:#0b0b0d; color:#f5f5f5; }
header { padding:1rem; background:#111; }
.branding img { margin-right:1rem; vertical-align:middle; }
h1 { margin:0.5rem 0; font-size:1.5rem; }
p { margin:0.25rem 0 1rem; color:#ccc; }
.btn { display:inline-block; padding:0.5rem 1rem; background:#e3b34a; color:#111; text-decoration:none; border-radius:0.3rem; }
.gallery { display:grid; grid-template-columns:repeat(auto-fill, minmax(200px,1fr)); gap:0.5rem; padding:1rem; }
.gallery img { width:100%; height:auto; border-radius:0.3rem; }
footer { padding:1rem; text-align:center; font-size:0.85rem; color:#999; }
.delivery-page .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: .8rem;
  padding: 1rem;
}

@media (min-width: 1200px) {
  .delivery-page .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}
.delivery-page header, 
.delivery-page footer { /* gallery-only header/footer tweaks */ }

/* ===== Delivery Hero (client pages) ===== */
.delivery-page .delivery-hero{
  max-width: clamp(960px, 92vw, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
  background:#111;
  border-bottom: 1px solid #1e1e1e;
}

.delivery-page .delivery-hero .branding img{
  height:auto;
  width:auto;
  display:block;
}

.delivery-page .delivery-hero .hero-copy h1{
  margin:.25rem 0 .5rem;
  font-size:clamp(1.25rem, 2.5vw, 1.6rem);
  color:#e3b34a;
}

.delivery-page .delivery-hero .hero-copy p{
  margin:.25rem 0 .75rem;
  color:#cfcfd6
}

.delivery-page .delivery-hero .hero-copy .btn{
  margin-top:.25rem
}

.delivery-page .delivery-hero .hero-copy .support{
  opacity:.85
}

@media (max-width: 720px){
  .delivery-page .delivery-hero{
    grid-template-columns: 1fr;
    text-align:center
  }
  .delivery-page .delivery-hero .branding{
    justify-self:center
  }
}

/* Make the review line gold and prominent */
.delivery-page .delivery-hero .review-link,
.delivery-page .delivery-hero .review-link a {
  color: #e3b34a;
  font-weight: 600;
  text-decoration: underline;
}

.delivery-page .delivery-hero .review-link a:hover {
  opacity: .9;
  text-decoration: none;
}