/* ==========================================================================
   Ryogoku page (下町両国 / RYOGOKU)
   Source: _reference/pdf/PC_JP_sample_0911.pdf, Responsive_JP_sample_0911.pdf
   (page 4). No floating reservation CTA on this page — confirmed absent
   in the SP mockup (badge shown crossed out, "◎下部のリンクなし").
   ========================================================================== */

.ryogoku-hero {
  /* SP ratio is a shared estimate across the four page-hero pages, not a
     pixel measurement per page like the TOP hero — see docs/todo.md. */
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .ryogoku-hero {
    /* PC ratio from the supplied photo's native pixel size (1631x879),
       matching the measured 1631px PC canvas width — see docs/todo.md. */
    aspect-ratio: 1631 / 879;
  }
}

.ryogoku-intro__heading {
  font-family: var(--font-jp-serif);
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.75rem);
  letter-spacing: 0.3em;
  /* Optically centers the wide letter-spacing (the trailing gap after the
     last character would otherwise read as off-center). */
  padding-left: 0.3em;
}

.ryogoku-intro .framed-label {
  margin-top: var(--space-4);
}

/* -- Spot list ------------------------------------------------------------ */

.spots {
  background: var(--color-gold);
  padding-block: var(--space-8);
}

.spot-list {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.spot {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.spot:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.spot__photo img {
  width: 100%;
  height: auto;
}

.spot__body h3 {
  font-family: var(--font-jp-serif);
  font-weight: var(--fw-medium);
  font-size: 1.15rem;
}

.spot__address {
  margin-top: var(--space-1);
  font-size: 0.8rem;
}

.spot__desc {
  margin-top: var(--space-3);
  line-height: 1.9;
  font-size: 0.9rem;
}

.spot__body .btn-map {
  margin-top: var(--space-3);
}

.spots__closing {
  padding-block: var(--space-8);
  text-align: center;
  font-family: var(--font-en-serif);
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .spot {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-5);
  }

  .spot__photo {
    flex: 0 0 300px;
  }

  .spot__body {
    flex: 1 1 auto;
    min-width: 0;
  }
}
