/* ───────────────────────────────────────────────────────────
   Breakfast Menu page
   Brand palette inherited from style.css
   ─────────────────────────────────────────────────────────── */

.breakfast-page-body {
  background: #0B1628;
  color: #FAF3E0;
  padding-top: 80px;
}

/* ── Hero ───────────────────────────────────────────────── */
.bf-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
  isolation: isolate;
}
.bf-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--bf-hero-img, none);
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  z-index: -2;
}
.bf-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11,22,40,0.55) 0%, rgba(11,22,40,0.92) 80%),
    linear-gradient(180deg, rgba(11,22,40,0.6) 0%, rgba(11,22,40,0.95) 100%);
  z-index: -1;
}
.bf-hero__content { max-width: 760px; margin: 0 auto; }
.bf-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #C9A84C;
  margin: 0 0 1.2rem;
}
.bf-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: #FAF3E0;
}
.bf-hero__title em { color: #C9A84C; font-style: italic; }
.bf-hero__sub {
  font-size: 1.1rem;
  color: rgba(250,243,224,0.78);
  max-width: 560px;
  margin: 0 auto 1.5rem;
}
.bf-hero__meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(250,243,224,0.7);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bf-hero__meta svg { vertical-align: -3px; margin-right: 0.4rem; color: #C9A84C; }
.bf-hero__dot { color: #C9A84C; }

/* ── Featured Set Cards ─────────────────────────────────── */
.bf-sets {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, rgba(36,63,114,0.18) 0%, transparent 70%);
}
.bf-sets .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2rem;
}

.bf-set {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 2.2rem 2.4rem;
  position: relative;
}
.bf-set--feature {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(36,63,114,0.25));
  border-color: rgba(201,168,76,0.55);
  text-align: center;
}

.bf-set__head { margin-bottom: 1.2rem; }
.bf-set--feature .bf-set__head { margin-bottom: 1.5rem; }
.bf-set__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #C9A84C;
  margin: 0 0 0.6rem;
}
.bf-set__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #FAF3E0;
  margin: 0 0 0.4rem;
}
.bf-set__hours {
  font-size: 0.83rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250,243,224,0.6);
  margin: 0;
}

.bf-set__price-block {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 1.5rem 0;
}
.bf-set--feature .bf-set__price-block { justify-content: center; }
.bf-set__price { display: flex; flex-direction: column; }
.bf-set__price strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #C9A84C;
  line-height: 1;
}
.bf-set__price span {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(250,243,224,0.55);
  margin-top: 0.4rem;
}

.bf-set__items {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.55rem;
}
.bf-set__items li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(250,243,224,0.82);
  line-height: 1.55;
}
.bf-set__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C9A84C;
}
.bf-set__items em {
  color: rgba(250,243,224,0.6);
  font-style: italic;
}

.bf-set__note {
  font-size: 0.9rem;
  color: rgba(250,243,224,0.62);
  margin: 1rem 0 0;
  line-height: 1.55;
}
.bf-set--feature .bf-set__note { max-width: 520px; margin: 0 auto 1.5rem; }
.bf-set strong { color: #FAF3E0; }
.bf-set--feature .btn { margin-top: 0.3rem; }

/* ── À la carte columns ─────────────────────────────────── */
.bf-alacarte {
  padding: 3rem 0 5rem;
}
.bf-alacarte .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bf-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}

.bf-col__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.bf-col__bullet { color: #C9A84C; font-size: 1.2rem; line-height: 1; }
.bf-col__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FAF3E0;
  margin: 0;
}

.bf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.bf-list--two-col {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
}
.bf-list--with-desc { gap: 1.4rem; }

.bf-list > li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: rgba(250,243,224,0.92);
}
.bf-list--with-desc > li { display: block; }
.bf-list__main { display: flex; align-items: baseline; gap: 0.7rem; }
.bf-list__name { font-weight: 500; }
.bf-list__name em { color: rgba(250,243,224,0.55); font-style: italic; font-weight: 400; }
.bf-list__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201,168,76,0.32);
  transform: translateY(-3px);
}
.bf-list__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: #C9A84C;
  font-size: 1.05rem;
}
.bf-list__desc {
  font-size: 0.85rem;
  color: rgba(250,243,224,0.55);
  margin: 0.35rem 0 0;
  line-height: 1.5;
}

.bf-v {
  color: #6CB36C;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bf-disclaimer {
  text-align: center;
  font-size: 0.83rem;
  color: rgba(250,243,224,0.5);
  margin: 3.5rem auto 0;
  max-width: 720px;
  line-height: 1.6;
}

/* ── CTA ────────────────────────────────────────────────── */
.bf-cta {
  padding: 4rem 1.5rem;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.bf-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #FAF3E0;
  margin: 0 0 0.5rem;
}
.bf-cta p { color: rgba(250,243,224,0.7); margin: 0 0 1.4rem; }

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 820px) {
  .bf-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .bf-list--two-col { grid-template-columns: 1fr; }
  .bf-set { padding: 1.8rem 1.5rem; }
  .bf-set__price-block { gap: 1.8rem; }
  .bf-set__price strong { font-size: 2rem; }
  .bf-hero { min-height: 44vh; padding: 3.5rem 1.25rem 3rem; }
}
