/* ── MENU PAGE SHARED STYLES ── */

/* Force nav scrolled state on menu pages */
#main-nav { background: rgba(250,247,242,0.97); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
#main-nav .nav-links a { color: var(--muted); }
#main-nav .nav-logo { color: var(--charcoal); }

/* ── MENU HERO ── */
.menu-hero {
  height: 70vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
}
.menu-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,16,0.82) 40%, rgba(17,17,16,0.25) 100%);
}
.menu-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
  padding-top: 80px;
}
.back-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.back-link:hover { color: var(--gold-light); }
.menu-hero .hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  opacity: 1;
  animation: none;
}
.menu-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--warm-white);
  margin-bottom: 1rem;
  opacity: 1;
  animation: none;
}
.menu-hero h1 em { font-style: italic; color: var(--gold-light); }
.menu-hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(250,247,242,0.72);
  max-width: 520px;
  line-height: 1.7;
}

/* ── SERVICE STYLES STRIP ── */
.service-styles-strip {
  background: var(--charcoal);
  padding: 3rem 0;
}
.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.style-pill {
  padding: 1.5rem;
  border: 1px solid rgba(245,240,232,0.12);
  text-align: center;
  transition: border-color 0.3s;
}
.style-pill:hover { border-color: var(--gold); }
.style-icon { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; }
.style-pill h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--cream); margin-bottom: 0.3rem; }
.style-pill p { font-size: 0.82rem; color: rgba(245,240,232,0.55); line-height: 1.5; }

/* ── MENU MAIN ── */
.menu-main { padding: 6rem 0 5rem; background: var(--warm-white); }

.menu-intro { margin-bottom: 4rem; max-width: 640px; }
.menu-intro-text { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-top: 1rem; }

/* ── MENU CARDS GRID ── */
.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.menu-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.menu-card-header { margin-bottom: 1.8rem; }
.menu-card-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 0.9rem;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}
.menu-card-tagline { font-size: 0.85rem; color: var(--muted); font-style: italic; }

/* Course list */
.course-list { list-style: none; margin-bottom: 2rem; flex: 1; }
.course-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(28,28,26,0.07);
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.55;
}
.course-list li:last-child { border-bottom: none; }
.course-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 58px;
  padding-top: 3px;
  flex-shrink: 0;
}

/* Choice pills (BBQ page) */
.choice-section { margin-bottom: 1.5rem; }
.choice-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
  display: block;
}
.choice-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.choice-pills span {
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--charcoal);
  transition: border-color 0.2s, background 0.2s;
}

.menu-card-note {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.menu-card-addons {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  line-height: 1.6;
}

.menu-card-cta {
  display: block;
  text-align: center;
  padding: 0.85rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.3s, transform 0.2s;
  margin-top: auto;
}
.menu-card-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Pricing list inside card */
.pricing-list { margin-bottom: 1.5rem; flex: 1; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(28,28,26,0.07);
  font-size: 0.88rem;
  color: var(--muted);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row strong { color: var(--charcoal); font-weight: 500; }

/* ── DESSERT SECTION ── */
.dessert-section { margin-bottom: 5rem; }
.dessert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.dessert-item {
  padding: 1.2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.5;
  transition: border-color 0.3s, transform 0.2s;
  text-align: center;
}
.dessert-item:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ── PRICING STRIP ── */
.pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  background: var(--charcoal);
  padding: 3rem;
}
.pricing-card { text-align: center; }
.pricing-card.pricing-featured { position: relative; }
.pricing-card.pricing-featured::after {
  content: 'Most Common';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.5); margin-bottom: 0.5rem; }
.pricing-amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 0.5rem; }
.pricing-amount span { font-size: 0.9rem; color: rgba(245,240,232,0.5); }
.pricing-note { font-size: 0.78rem; color: rgba(245,240,232,0.45); line-height: 1.5; }

/* ── FOOTER OVERRIDES for menu pages ── */
footer { margin-top: 0; }
.footer-links { display: flex; justify-content: center; gap: 2.5rem; list-style: none; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-links a { color: rgba(245,240,232,0.45); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { border-top: 1px solid rgba(245,240,232,0.08); padding-top: 1.5rem; margin-top: 0.5rem; color: rgba(245,240,232,0.4); font-size: 0.78rem; text-align: center; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .menu-hero-content { padding: 0 1.5rem; padding-top: 80px; }
  .menu-hero h1 { font-size: 2.8rem; }
  .styles-grid { grid-template-columns: 1fr; gap: 1rem; }
  .menu-cards-grid { grid-template-columns: 1fr; }
  .dessert-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-strip { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
  .pricing-card.pricing-featured::after { top: 0.625rem; }
  .pricing-card + .pricing-card {
    border-top: none;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    position: relative;
  }
  .pricing-card + .pricing-card::before {
    content: '';
    display: block;
    width: 33%;
    height: 1px;
    background: rgba(245,240,232,0.1);
    margin: 0 auto 1.5rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
