/* ---- Off-Premise Catering Page ---- */

/* Active nav link (per-page, matches catering.css convention) */
.nav-list .active { color: var(--green-light); }

/* ---- Hero ---- */
.offsite-hero {
  position: relative;
  padding: clamp(8rem, 18vw, 11rem) 1rem clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  color: #fff;
  background: var(--dark) url('../images/hero-catering.jpeg') center/cover no-repeat;
}

.offsite-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.8));
}

.offsite-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.offsite-hero-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.offsite-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.offsite-hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.offsite-hero-content a { color: var(--green-light); }

/* ---- Section scaffolding ---- */
.offsite-section { padding: var(--section-pad) 0; }
.offsite-section-alt { background: #fff; }

.offsite-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.offsite-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--green-mid);
  margin: 0.75rem auto 0;
}

.offsite-section-intro {
  text-align: center;
  color: #666;
  max-width: 680px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

/* ---- Benefit cards ---- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.benefit-card {
  background: var(--cream);
  border-radius: 8px;
  border-top: 3px solid var(--green-mid);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.benefit-card p {
  color: #444;
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ---- How it works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  max-width: 1000px;
  margin-inline: auto;
}

.step {
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--green-mid), var(--green-dark));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.step p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.55;
}

.step p a { color: var(--green-dark); font-weight: 600; }

/* ---- Sample menu ---- */
.sample-group { margin-top: 2.5rem; }

.sample-group h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 1rem;
}

.sample-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}

.sample-pills span {
  background: var(--green-dark);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.sample-pills--gold span {
  background: var(--gold);
  color: var(--dark);
}

.sample-note {
  text-align: center;
  max-width: 640px;
  margin: 2.5rem auto 0;
  color: #555;
  font-size: 0.98rem;
}

.sample-note a { color: var(--green-dark); font-weight: 600; }

/* ---- Closing CTA ---- */
.offsite-cta {
  background: var(--green-dark);
  color: #fff;
  padding: var(--section-pad) 0;
}

.offsite-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.offsite-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.offsite-cta a:not(.btn) { color: var(--green-light); }

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .offsite-hero { padding-top: clamp(6.5rem, 22vw, 8rem); }
}
