/* ── cafe.css ── */

.cafe-intro-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 6rem; align-items: center; }
.cafe-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.cafe-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.cafe-img-wide { width: 100%; aspect-ratio: 16/9; object-fit: cover; grid-column: 1/-1; }
.cafe-quote-block { margin-top: 2rem; padding: 1.8rem 0 1.8rem 2rem; border-left: 3px solid var(--gold); font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--claret); line-height: 1.5; }

.menu-sec { background: var(--sand); }
.menu-inner { max-width: 1200px; margin: 0 auto; }
.menu-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.menu-card { background: var(--ivory); padding: 2rem 1.5rem; text-align: center; border-bottom: 3px solid transparent; transition: border-color .2s; }
.menu-card:hover { border-bottom-color: var(--gold); }
.menu-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.menu-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--claret); margin-bottom: .5rem; }
.menu-desc { font-size: .8rem; color: var(--text-muted); line-height: 1.6; }

.schedule-band { background: var(--claret); padding: 4rem; text-align: center; }
.schedule-inner { max-width: 700px; margin: 0 auto; }
.schedule-time { font-family: var(--serif); font-size: clamp(3rem,6vw,5rem); font-weight: 900; color: var(--gold); line-height: 1; }
.schedule-label { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(247,243,236,.45); margin-top: .5rem; }
.schedule-divider { width: 60px; height: 1px; background: rgba(201,165,90,.3); margin: 2rem auto; }
.schedule-note { font-size: .88rem; color: rgba(247,243,236,.5); font-weight: 300; line-height: 1.8; }

.cafe-gallery-sec { background: var(--charcoal); }
.cafe-gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-top: 3rem; }
.gallery-strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: opacity .3s; }
.gallery-strip img:first-child { grid-column: 1/-1; aspect-ratio: 21/9; }
.gallery-strip img:hover { opacity: .75; }

@media (max-width: 960px) {
  .cafe-intro-inner { grid-template-columns: 1fr; gap: 3rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .schedule-band { padding: 3rem 1.5rem; }
}
@media (max-width: 600px) { .menu-grid { grid-template-columns: 1fr; } }
