/* ====================== Component: Info Section ====================== */
.info-section--warm { background: var(--color-warm); }
.info-section--cream { background: var(--color-cream); }
.info-section--white { background: var(--color-white); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.subheading { font-size: 16px; line-height: 24px; letter-spacing: -0.16px; }

.info-text__lead {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-ink);
  margin-top: 18px;
}
.info-text__lead p + p { margin-top: 14px; }
.info-block { margin-top: 28px; }
.info-block__text { margin-top: 10px; font-size: 14px; line-height: 22.75px; color: var(--color-ink); }

/* ---------- Media: gallery / framed image ---------- */
.gallery__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 5px solid var(--color-yellow);
}
.gallery__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s var(--ease); }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery__slide.is-active { opacity: 1; }
/* A single-image gallery: show it statically */
.gallery__frame .gallery__slide:only-child { opacity: 1; }

.gallery__controls { display: flex; align-items: center; gap: 16px; margin-top: 18px; }
.gallery__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 35px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
}
.gallery__arrow img { width: 17px; height: 35px; }
.gallery__arrow--prev { transform: rotate(180deg); }
.gallery__arrow--prev:hover { transform: rotate(180deg) translateX(4px); }
.gallery__arrow--next:hover { transform: translateX(4px); }
.gallery__dots { display: flex; align-items: center; gap: 8px; }
.gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  background: rgba(130, 110, 87, 0.4);
  cursor: pointer;
  transition: width 0.35s var(--ease), background-color 0.35s var(--ease);
}
.gallery__dot.is-active { width: 32px; background: var(--color-yellow); }

/* ---------- Key facts list ---------- */
.facts { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.facts li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 20px; color: var(--color-ink); }
.facts img { width: 14px; height: 14px; margin-top: 3px; flex: none; }

/* ---------- Accommodation / checklist grid ---------- */
.accom {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.accom li { display: flex; align-items: center; gap: 10px; font-size: 14px; line-height: 20px; color: var(--color-quote); }
.accom svg { width: 14px; height: 14px; flex: none; }

/* ---------- Facility cards ---------- */
.fac-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 28px; }
.fac-card { display: flex; gap: 14px; align-items: flex-start; }
.fac-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 5px;
  background: var(--color-yellow-soft);
}
.fac-card__icon img { width: 15px; height: 15px; }
.fac-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.14px;
  color: var(--color-ink);
}
.fac-card__text { margin-top: 6px; font-size: 14px; line-height: 22.75px; color: var(--color-quote); }

/* ---------- Café menu + opening times ---------- */
.menu { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.menu li { display: flex; align-items: center; gap: 9px; font-size: 14px; line-height: 20px; color: var(--color-quote); }
.menu img { width: 13px; height: 13px; flex: none; }

.hours { margin-top: 24px; background: var(--color-white); border: 1px solid var(--color-hairline); }
.hours__row { display: flex; justify-content: space-between; gap: 16px; padding: 6px 16px; font-size: 14px; line-height: 20px; color: var(--color-quote); }
.hours__row:first-child { padding-top: 14px; }
.hours__row:last-child { padding-bottom: 14px; }
.hours__day { font-weight: 500; }
.hours__row--closed .hours__day,
.hours__row--closed .hours__time { color: var(--color-brown); }

.disclaimer { margin-top: 14px; font-size: 12px; line-height: 16px; color: var(--color-ink); max-width: 576px; }

@media (min-width: 768px) {
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .info-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  /* media-right: text first column, media second (source order already text→media) */
  /* media-left: media first column, text second (source order media→text) */
}
