/* Sera sub-page chrome — extends styles.css with sub-page-only elements
   (breadcrumbs, sub-page hero, prose treatment, dl-style key/value tables). */

/* Sub-page hero — uses the same watercolor wash, but tighter than home hero */
.subhero {
  padding: 88px 24px 48px;
  text-align: center;
  position: relative;
}
.subhero .eyebrow { color: var(--teal-soft); margin-bottom: 12px; }
.subhero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.4vw, 104px);
  letter-spacing: 0;
  color: var(--teal);
  line-height: 1;
  margin: 0 0 16px;
  font-weight: 400;
}
.subhero h1 em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  color: var(--paper);
  letter-spacing: 0;
}
.subhero .subhero-lede {
  font-family: var(--font-edit);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--teal);
  max-width: 680px;
  margin: 16px auto 0;
  line-height: 1.5;
}

/* Breadcrumbs */
.breadcrumbs {
  font-family: var(--font-eyebrow);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal-soft);
  text-align: center;
  padding: 16px 24px 0;
}
.breadcrumbs a { color: var(--teal-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal); }
.breadcrumbs span { margin: 0 10px; opacity: 0.5; }

/* Long-form reading prose (story page, privacy, disclaimer) */
.prose {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: var(--font-edit);
  font-size: 19px;
  line-height: 1.7;
  color: var(--teal);
}
.prose p { margin: 0 0 1.4em; }
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--teal);
  margin: 56px 0 14px;
  font-weight: 400;
}
.prose h3 {
  font-family: var(--font-edit);
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  color: var(--teal);
  margin: 36px 0 12px;
}
.prose blockquote {
  border-left: 3px solid var(--mint-pop);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--teal-deep);
}
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1.4em; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--teal-deep); }
.prose img {
  width: 100%; max-width: 100%;
  margin: 32px 0;
  border-radius: 4px;
}
.prose figure { margin: 32px 0; }
.prose figcaption {
  font-family: var(--font-eyebrow);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-soft);
  text-align: center;
  margin-top: 12px;
}

/* Detail table (e.g. private dining specs, wine club tiers) */
.dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px 32px;
  font-family: var(--font-ui);
  margin: 32px 0;
}
.dl dt {
  font-family: var(--font-eyebrow);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-soft);
}
.dl dd {
  margin: 0;
  font-size: 16px;
  color: var(--teal);
}
@media (max-width: 720px) {
  .dl { grid-template-columns: 1fr; gap: 4px 0; }
  .dl dd { margin-bottom: 18px; }
}

/* Card grid (events page, etc) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* "Back to home" link bottom of long-form pages */
.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-eyebrow);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-soft);
  text-decoration: none;
  margin: 64px auto 0;
  padding: 12px 0;
}
.back-home:hover { color: var(--teal); }
.back-home::before { content: '←'; font-size: 14px; }

/* Subtle decorative spot illustration spot for sub-page heros */
.subhero-spot {
  width: 88px; height: 88px;
  margin: 0 auto 24px;
  opacity: 0.85;
}

/* Centered button row */
.btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Dashed-rule section break (used between menu sections) */
.dash-rule {
  border: 0;
  border-top: 1px dashed var(--rule);
  max-width: 200px;
  margin: 56px auto;
}
