/* ================================================================
   THE JERK SHAC — catering.css
   Page-specific styles for catering.html
   ================================================================ */

.ct-hero {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--teal);
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
}
.ct-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.03);
  animation: ct-hero-drift 15s ease forwards;
}
@keyframes ct-hero-drift {
  from { transform: scale(1.03); }
  to { transform: scale(1); }
}
.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 18, 13, 0.34) 0%, rgba(8, 18, 13, 0.58) 52%, rgba(5, 11, 8, 0.9) 100%),
    linear-gradient(120deg, rgba(16, 32, 26, 0.64) 8%, rgba(9, 19, 14, 0.08) 46%, rgba(9, 19, 14, 0.82) 100%);
}
.ct-hero-body {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: calc(var(--nav-h) + 1.75rem) var(--pad) 3rem;
  text-align: center;
}
.ct-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.2vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0.5rem;
}
.ct-hero-title span {
  display: block;
  color: var(--gold-light);
}
.ct-hero-sub {
  max-width: 680px;
  margin: 1.35rem auto 0;
  color: var(--w-65);
  font-family: var(--font-serif);
  font-size: clamp(1.06rem, 2.9vw, 1.38rem);
  font-style: italic;
}
.ct-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ct-overview {
  padding: clamp(4.6rem, 8vw, 7rem) var(--pad);
  background: var(--cream-d);
}
.ct-overview-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.ct-overview-copy p {
  max-width: 620px;
  color: var(--ink-60);
  font-size: 1rem;
  line-height: 1.9;
  margin-top: 1.1rem;
}
.ct-overview-details {
  display: grid;
  gap: 1rem;
}
.ct-detail-card {
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.05);
}
.ct-detail-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}
.ct-detail-card p {
  color: var(--ink-60);
  line-height: 1.78;
}

.ct-offers {
  padding: clamp(4.8rem, 9vw, 7.8rem) var(--pad);
  background: var(--teal);
}
.ct-offers-head {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.ct-offer {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(5, 14, 11, 0.22);
}
.ct-offer + .ct-offer {
  margin-top: 1.5rem;
}
.ct-offer--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.ct-offer--reverse .ct-offer-media {
  order: 2;
}
.ct-offer--reverse .ct-offer-copy {
  order: 1;
}
.ct-offer-media {
  min-height: 420px;
  overflow: hidden;
  background: #09120f;
}
.ct-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.3s ease;
  filter: brightness(0.94) saturate(0.98);
}
.ct-offer:hover .ct-offer-media img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.05);
}
.ct-offer-copy {
  padding: clamp(2rem, 4.6vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ct-offer-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.ct-offer-copy p {
  margin-top: 1rem;
  color: var(--w-65);
  line-height: 1.85;
}
.ct-offer-points {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}
.ct-offer-points li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(253, 246, 227, 0.82);
  line-height: 1.7;
}
.ct-offer-points li::before {
  content: '';
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--gold);
}

.ct-process {
  padding: clamp(4.8rem, 8vw, 7rem) var(--pad);
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.ct-process-media {
  min-height: 580px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(20, 20, 20, 0.12);
}
.ct-process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.ct-process-media:hover img {
  transform: scale(1.04);
}
.ct-process-copy {
  max-width: 620px;
}
.ct-process-steps {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
  padding-left: 1.25rem;
}
.ct-process-steps li {
  color: var(--ink-60);
  line-height: 1.8;
  padding-left: 0.2rem;
}
.ct-process-steps strong {
  color: var(--ink);
  font-weight: 600;
}
.ct-process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.ct-process-tags span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ct-gallery {
  padding: clamp(4.8rem, 9vw, 7.8rem) var(--pad);
  background: var(--teal);
}
.ct-gallery-head {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}
.ct-gallery-head p {
  color: var(--w-65);
  line-height: 1.8;
  margin-top: 1rem;
}
.ct-gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
}
.ct-gallery-grid .gallery-item img {
  filter: brightness(0.9) saturate(1);
}

.event-gallery-head {
  text-align: center;
}

@media (max-width: 980px) {
  .ct-overview-inner,
  .ct-process,
  .ct-offer,
  .ct-offer--reverse {
    grid-template-columns: 1fr;
  }
  .ct-offer--reverse .ct-offer-media,
  .ct-offer--reverse .ct-offer-copy {
    order: initial;
  }
  .ct-overview-copy,
  .ct-process-copy {
    max-width: 100%;
  }
  .ct-overview-copy p {
    max-width: 100%;
  }
  .ct-process-media {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .ct-hero {
    min-height: 76svh;
  }
  .ct-hero-photo {
    object-position: center 56%;
  }
  .ct-hero-body {
    max-width: 20rem;
    padding: calc(var(--nav-h) + 0.85rem) 1.25rem 1.75rem;
  }
  .ct-hero-title {
    font-size: clamp(2.55rem, 11.2vw, 4.4rem);
    line-height: 0.93;
  }
  .ct-hero-sub {
    max-width: 18.5rem;
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.5;
  }
  .ct-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ct-hero-actions .btn-hero {
    width: 100%;
    justify-content: center;
  }
  .ct-overview,
  .ct-offers,
  .ct-process,
  .ct-gallery {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .ct-overview-copy,
  .ct-overview-details,
  .ct-offers-head,
  .ct-offer-copy,
  .ct-process-copy,
  .ct-gallery-head {
    text-align: center;
  }
  .ct-offer-copy {
    align-items: center;
  }
  .ct-offer-points {
    text-align: left;
    width: 100%;
  }
  .ct-offer-media {
    min-height: 300px;
  }
  .ct-process-media {
    min-height: 320px;
  }
  .ct-process-tags {
    justify-content: center;
  }
}
