/* ============================================
   Breakfast Buffet Page
   Mirrors bushwalking editorial direction
   ============================================ */

#main-content { padding-top: 0; }

.alp-breakfast-hero {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.alp-breakfast-hero__media {
  background: #211b14;
  inset: 0;
  position: absolute;
}

.alp-breakfast-hero__video {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.alp-breakfast-hero__veil {
  background:
    linear-gradient(to top, rgba(30, 22, 14, .9) 0%, rgba(30, 22, 14, .2) 44%, rgba(30, 22, 14, .15) 72%, rgba(30, 22, 14, .58) 100%);
  inset: 0;
  position: absolute;
}

.alp-breakfast-hero__content {
  max-width: 940px;
  padding: 0 24px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.alp-breakfast-hero .alp-eyebrow {
  color: var(--alpine-accent-light);
  font-size: .85rem;
  letter-spacing: .2em;
}

.alp-breakfast-hero__content h1 {
  color: #fff;
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 20px 0 28px;
}

.alp-breakfast-hero__line {
  display: block;
}

.alp-breakfast-hero__line--em {
  color: #fff;
  font-style: italic;
}

.alp-breakfast-hero__sub {
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 52ch;
}

.alp-breakfast-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}

.alp-breakfast-hero__scroll {
  align-items: center;
  animation: alp-breakfast-float 2.4s ease-in-out infinite;
  bottom: 36px;
  color: rgba(255, 255, 255, .54);
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.alp-breakfast-hero__scroll span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@keyframes alp-breakfast-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.alp-breakfast-intro {
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
}

.alp-breakfast-intro__inner {
  margin: 0 auto;
  max-width: 860px;
}

.alp-breakfast-intro__lead {
  color: var(--alpine-accent);
  font-family: var(--wp--preset--font-family--body-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .16em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.alp-breakfast-intro__heading {
  color: var(--alpine-text);
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 28px;
}

.alp-breakfast-intro__body {
  color: var(--alpine-text-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.85;
  margin: 0;
}

.alp-breakfast-mosaic {
  overflow: hidden;
  padding: 0 clamp(12px, 2vw, 24px);
}

.alp-breakfast-mosaic__grid {
  display: grid;
  gap: clamp(8px, 1.2vw, 14px);
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(220px, 28vw, 420px);
}

.alp-breakfast-mosaic__item {
  border-radius: var(--alpine-radius, 12px);
  overflow: hidden;
  position: relative;
}

.alp-breakfast-mosaic__item img {
  display: block;
  height: 120%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  will-change: transform;
}

.alp-breakfast-mosaic__item:hover img {
  transform: scale(1.05);
}

.alp-breakfast-mosaic__item--tall {
  grid-row: span 2;
}

.alp-breakfast-mosaic__item--wide {
  grid-column: span 2;
}

.alp-breakfast-menu {
  padding: var(--alpine-section-pad, clamp(80px, 10vw, 140px)) 0;
}

.alp-breakfast-menu__head {
  margin: 0 auto clamp(48px, 7vw, 96px);
  max-width: 680px;
  text-align: center;
}

.alp-breakfast-menu__head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 14px 0 18px;
}

.alp-breakfast-menu__head p {
  color: var(--alpine-text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.alp-breakfast-menu__grid {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alp-breakfast-menu__card {
  background: var(--alpine-surface);
  border: 1px solid var(--alpine-border);
  border-radius: 20px;
  padding: clamp(24px, 3.2vw, 38px);
}

.alp-breakfast-menu__card h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin: 0 0 14px;
}

.alp-breakfast-menu__card p {
  color: var(--alpine-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.alp-cafe-secondary-menu {
  padding: 0 0 var(--alpine-section-pad, clamp(80px, 10vw, 140px));
}

.alp-cafe-secondary-menu .alp-breakfast-menu__head {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.alp-cafe-secondary-menu .alp-breakfast-menu__head p {
  margin: 12px auto 0;
  max-width: 720px;
}

.alp-cafe-secondary-menu__group {
  background: var(--alpine-surface);
  border: 1px solid var(--alpine-border);
  border-radius: 20px;
  margin-bottom: clamp(16px, 2.2vw, 24px);
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
}

.alp-cafe-secondary-menu__group h3 {
  border-bottom: 1px solid var(--alpine-border);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  margin: 0 0 14px;
  padding-bottom: 12px;
}

.alp-cafe-secondary-menu__rows {
  display: grid;
  gap: 8px;
}

.alp-cafe-secondary-menu__item {
  align-items: flex-start;
  border-bottom: 1px dashed rgba(0, 0, 0, .08);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 8px 0;
}

.alp-cafe-secondary-menu__item:last-child {
  border-bottom: 0;
}

.alp-cafe-secondary-menu__left {
  min-width: 0;
}

.alp-cafe-secondary-menu__item-title {
  color: var(--alpine-text);
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
}

.alp-cafe-secondary-menu__item-description {
  color: var(--alpine-text-muted);
  font-size: .92rem;
  line-height: 1.45;
  margin: 4px 0 0;
}

.alp-cafe-secondary-menu__right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.alp-cafe-secondary-menu__item-price {
  color: var(--alpine-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.alp-cafe-secondary-menu__item-note {
  color: var(--alpine-text-muted);
  font-size: .82rem;
  line-height: 1.2;
  margin: 0;
}

.alp-breakfast-pricing {
  height: clamp(420px, 72vh, 780px);
  overflow: hidden;
  position: relative;
}

.alp-breakfast-pricing__img {
  height: 100%;
  width: 100%;
}

.alp-breakfast-pricing__img img {
  display: block;
  height: 140%;
  object-fit: cover;
  width: 100%;
  will-change: transform;
}

.alp-breakfast-pricing__overlay {
  align-items: center;
  background: linear-gradient(135deg, rgba(22, 14, 8, .82) 0%, rgba(22, 14, 8, .5) 58%, rgba(22, 14, 8, .72) 100%);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: clamp(24px, 4vw, 64px);
  position: absolute;
}

.alp-breakfast-pricing__panel {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 22px;
  max-width: 780px;
  padding: clamp(30px, 4vw, 46px);
  width: 100%;
}

.alp-breakfast-pricing__panel h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 14px 0 20px;
}

.alp-breakfast-pricing__facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.alp-breakfast-pricing__fact {
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--alpine-border);
  border-radius: 14px;
  padding: 14px 16px;
}

.alp-breakfast-pricing__fact--price {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 70px;
  text-align: center;
}

.alp-breakfast-pricing__label {
  color: var(--alpine-eyebrow-color);
  display: block;
  font-size: .8rem;
  letter-spacing: .06em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.alp-breakfast-pricing__fact strong {
  color: var(--alpine-text);
  font-size: 1.05rem;
  font-weight: 600;
}

.alp-breakfast-pricing__panel p {
  color: var(--alpine-text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.alp-breakfast-pricing__service {
  margin-bottom: 18px;
}

.alp-breakfast-pricing__service strong {
  color: var(--alpine-text);
  font-size: 1.08rem;
}

.alp-breakfast-pricing__notes {
  color: var(--alpine-text-muted);
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.alp-breakfast-pricing__notes li {
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 8px;
}

.alp-breakfast-cta {
  background: var(--alpine-brand);
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
}

.alp-breakfast-cta .alp-eyebrow {
  color: var(--alpine-accent-light);
}

.alp-breakfast-cta h2 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 18px 0 24px;
}

.alp-breakfast-cta p {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  margin: 0 auto 40px;
  max-width: 560px;
}

.alp-breakfast-cta__actions {
  margin-bottom: 32px;
}

.alp-breakfast-cta .alp-btn--large {
  font-size: 1.1rem;
  padding: 20px 48px;
}

.alp-breakfast-cta .alp-btn {
  background: #fff;
  color: var(--alpine-brand);
}

.alp-breakfast-cta .alp-btn:hover {
  background: var(--alpine-accent);
  color: #fff;
}

.alp-breakfast-cta__contact {
  color: rgba(255, 255, 255, .6);
  font-size: .92rem;
}

.alp-breakfast-cta__contact a {
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  transition: color .2s;
}

.alp-breakfast-cta__contact a:hover {
  color: #fff;
}

.alp-breakfast-cta__contact span {
  margin: 0 14px;
}

@media (max-width: 1024px) {
  .alp-breakfast-mosaic__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(180px, 24vw, 300px);
  }

  .alp-breakfast-menu__grid {
    grid-template-columns: 1fr;
  }

  .alp-cafe-secondary-menu__item {
    grid-template-columns: 1fr;
  }

  .alp-cafe-secondary-menu__right {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .alp-breakfast-hero {
    min-height: min(92vh, 720px);
  }

  .alp-breakfast-hero__content h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .alp-breakfast-hero__cta {
    align-items: center;
    flex-direction: column;
  }

  .alp-breakfast-hero__cta .alp-btn {
    max-width: 280px;
    width: 100%;
  }

  .alp-breakfast-hero__scroll {
    display: none;
  }

  .alp-breakfast-intro {
    padding: clamp(64px, 12vw, 120px) 0;
  }

  .alp-breakfast-intro__heading {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .alp-breakfast-mosaic__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(160px, 32vw, 260px);
  }

  .alp-breakfast-mosaic__item--wide {
    grid-column: span 2;
  }

  .alp-breakfast-mosaic__item--tall {
    grid-row: span 1;
  }

  .alp-breakfast-pricing {
    height: auto;
    min-height: 420px;
  }

  .alp-breakfast-pricing__facts {
    grid-template-columns: 1fr;
  }

  .alp-breakfast-cta {
    padding: 72px 0;
  }

  .alp-breakfast-cta h2 {
    font-size: 2.4rem;
  }

  .alp-breakfast-cta__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .alp-breakfast-cta__contact span {
    display: none;
  }
}

/* Pre-hide hero elements before GSAP animates them in */
[data-breakfast-reveal] {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .alp-breakfast-hero__scroll { animation: none; }

  .alp-breakfast-mosaic__item img,
  .alp-breakfast-menu__card {
    transition: none;
  }
  [data-breakfast-reveal] {
    opacity: 1;
  }
}

/* ============================================
   Accessibility Contrast Hardening
   ============================================ */
.alp-breakfast-hero__line,
.alp-breakfast-hero__line--em,
.alp-breakfast-hero__sub,
.alp-breakfast-hero .alp-btn--ghost {
  color: #ffffff;
  opacity: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.52);
}

.alp-breakfast-hero .alp-btn--ghost {
  border-color: rgba(255, 255, 255, 0.92);
}

html[data-theme='dark'] .alp-breakfast-pricing h2,
html[data-theme='dark'] .alp-breakfast-pricing strong,
html[data-theme='dark'] .alp-breakfast-pricing li,
html[data-theme='dark'] .alp-breakfast-pricing a,
html[data-theme='dark'] .alp-breakfast-pricing .alp-eyebrow,
html[data-theme='dark'] .alp-breakfast-cta .alp-eyebrow,
html[data-theme='dark'] .alp-breakfast-cta p,
html[data-theme='dark'] .alp-breakfast-cta__contact a {
  color: #f7fbff;
  opacity: 1;
}

html[data-theme='dark'] .alp-breakfast-pricing__panel {
  background: rgba(9, 18, 30, 0.92);
  border-color: rgba(236, 244, 255, 0.32);
}

html[data-theme='dark'] .alp-breakfast-pricing__fact {
  background: rgba(15, 28, 44, 0.78);
  border-color: rgba(236, 244, 255, 0.24);
}

html[data-theme='dark'] .alp-breakfast-pricing__panel h2,
html[data-theme='dark'] .alp-breakfast-pricing__panel .alp-eyebrow,
html[data-theme='dark'] .alp-breakfast-pricing__panel strong,
html[data-theme='dark'] .alp-breakfast-pricing__panel p,
html[data-theme='dark'] .alp-breakfast-pricing__notes li {
  color: #f6fbff !important;
}

html[data-theme='dark'] .alp-breakfast-pricing__panel .alp-btn {
  color: #102033;
}
