/* ————— Guía de Destino — editorial spread ————— */

.guide-body {
  background: var(--bg);
}

.spread {
  max-width: 1320px;
  margin: 0 auto;
  padding: 132px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.page {
  padding: 28px 44px 64px;
  position: relative;
}

.page-right {
  border-left: 1px solid #cdc4ad;
}

/* blocks */
.blk {
  position: relative;
}

.blk + .blk {
  margin-top: 18px;
}

/* vertical calligraphy title */
.blk-vert {
  padding-left: 104px;
  min-height: 220px;
}

.vscript {
  position: absolute;
  left: 56px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transform-origin: center center;
  white-space: nowrap;
  margin: 0;
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-size: 86px;
  line-height: 1;
  color: #6b7649;
}

/* horizontal calligraphy title */
.hscript {
  margin: 0 0 14px;
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1.02;
  color: #6b7649;
}

.hscript.two { line-height: 0.72; }

.hscript.one {
  white-space: nowrap;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.1;
}

/* restaurant two-column body */
.rest-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.area {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 22px;
  white-space: nowrap;
  color: #4a553c;
  margin: 0 0 18px;
}

.sub {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 20px;
  color: #2f2d27;
  margin: 22px 0 6px;
}

.sub:first-of-type { margin-top: 0; }

.items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.items li {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
  color: #3a3930;
}

.items.right {
  text-align: right;
}

.items .note {
  color: #8a836f;
  font-size: 18px;
}

/* spacing helpers for specific blocks */
.blk-paradores { margin-top: 300px; }
.blk-paradores .hscript { text-align: right; margin-top: 4vh; }
.blk-paradores .hscript.two { line-height: 0.58; }
.blk-paradores .items.right { margin-top: 10px; }

.blk-bodegas { margin-top: 56px; }
.blk-bodegas .items { margin-top: 6px; }

.blk-actividades { margin-top: 84px; }
.blk-actividades .hscript { text-align: right; }
.blk-actividades .hscript.two { line-height: 0.58; }

.blk-tiendas { margin-top: 56px; margin-left: 44px; padding-left: 56px; }
.blk-tiendas .vscript {
  left: 50px;
  top: auto;
  bottom: 14px;
  transform-origin: left bottom;
  transform: rotate(-90deg);
}

.blk-museos .hscript.two { line-height: 0.5; }
.blk-museos .items { margin-top: 6px; }
.blk-actividades .items { margin-top: 6px; }

.blk-museos .items li,
.blk-actividades .items li {
  font-size: 20px;
  line-height: 1.65;
}

/* responsive: stack pages, flip vertical titles horizontal */
@media (max-width: 880px) {
  .spread {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }
  .page { padding: 24px 28px 40px; }
  /* no divider on mobile — collapse the page seam to match the 18px block rhythm */
  .page-left { padding-bottom: 0; }
  .page-right { border-left: none; border-top: none; padding-top: 24px; }
  .blk + .blk { margin-top: 24px; }
  .blk-vert { padding-left: 0; min-height: 0; }
  .vscript {
    position: static;
    transform: none;
    font-size: 62px;
    margin-bottom: 6px;
  }
  /* the Tiendas title keeps a rotation override on desktop — flatten it too */
  .blk-tiendas { margin-left: 0; padding-left: 0; }
  .blk-tiendas .vscript {
    position: static;
    transform: none;
    bottom: auto;
  }
  /* right-aligned spread titles read as left-aligned in a single column */
  .blk-paradores .hscript,
  .blk-actividades .hscript { text-align: left; margin-top: 0; }
  .rest-body { gap: 22px; }
  .items.right { text-align: left; }
}

@media (max-width: 520px) {
  .rest-body { grid-template-columns: 1fr; }
}
