/* ====================================================
   HOTEL ASTURIAS — LIBRO DIGITAL v3
   style.css — text overflow fixed, click zones, layout polished
   ==================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Golds */
  --gold:         #c9a96e;
  --gold-light:   #e2cba2;
  --gold-dark:    #8c6d3f;
  /* Dark backgrounds */
  --dark:         #0c0a07;
  --dark-mid:     #181410;
  --dark-warm:    #211a11;
  /* Page colors */
  --cream:        #f5f0e8;
  --parchment:    #f2ead8;
  /* Physical dossier palette */
  --terracotta:   #b5502a;
  --rust:         #8a3518;
  --sage:         #7a9070;
  --sage-light:   #a8b89c;
  /* Typography */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;
}

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--cream);
  color: var(--dark);
  font-family: var(--sans);
  font-weight: 300;
  user-select: none;
}

#bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

#vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(200,185,150,0.18) 70%, rgba(182,160,118,0.3) 100%);
}

#stage {
  position: fixed; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
}

/* ====================================================
   BOOK SCENE (closed)
   ==================================================== */
#book-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

#book-wrap {
  perspective: 1800px;
  cursor: pointer;
}

#book {
  position: relative;
  width: 300px;
  height: 440px;
  transform-style: preserve-3d;
  transform: rotateY(-28deg) rotateX(6deg);
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: drop-shadow(-36px 55px 75px rgba(0,0,0,0.88));
}

#book-wrap:hover #book {
  transform: rotateY(-16deg) rotateX(4deg) scale(1.03);
}

@media (max-width: 768px) {
  /* Less 3D tilt on mobile so the book occupies more screen real estate visually */
  #book { transform: rotateY(-14deg) rotateX(3deg); }
  #book-wrap:hover #book { transform: rotateY(-8deg) rotateX(2deg) scale(1.02); }
  #book-wrap { perspective: 2400px; } /* More perspective = less foreshortening = bigger appearance */
}


.book-cover {
  position: absolute;
  width: 300px; height: 440px;
  overflow: hidden;
  border-radius: 2px 5px 5px 2px;
  backface-visibility: hidden;
}

.book-cover-front { transform: translateZ(8px); z-index: 4; }
.book-cover-back  { transform: rotateY(180deg) translateZ(8px); z-index: 0; }

.cover-bg { width: 100%; height: 100%; object-fit: cover; display: block; }

.cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(12,10,7,0.3) 0%, rgba(12,10,7,0.08) 30%,
    rgba(12,10,7,0.5) 65%, rgba(12,10,7,0.94) 100%);
}

.cover-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 24px 22px 30px; text-align: center;
}

.cover-eyebrow {
  font-family: var(--sans); font-size: 7px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px;
}

.cover-logo-wrap {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin-bottom: 30px; margin-top: 10px;
}
.cover-logo {
  width: 180px; height: auto;
  filter: brightness(0) invert(1) brightness(0.95); /* Makes logo white-ish/cream */
}

.cover-year {
  font-family: var(--serif); font-size: 10px; font-style: italic;
  color: rgba(245,240,232,0.45); letter-spacing: 0.12em; margin-bottom: 22px;
}

.cover-cta {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,169,110,0.45);
  padding: 7px 16px; border-radius: 1px;
  font-size: 8px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); cursor: pointer;
  background: rgba(12,10,7,0.25);
  transition: all 0.3s ease;
}
.cover-cta:hover { background: rgba(201,169,110,0.14); border-color: var(--gold); }
.cta-icon { width: 11px; height: 11px; }

.cover-page-edge {
  position: absolute; right: -13px; top: 3px; bottom: 3px; width: 13px;
  background: linear-gradient(90deg, #c4b79a, #d3c7ab, #c4b79a, #b7a98d, #d3c7ab);
  border-radius: 0 2px 2px 0;
}

.book-spine {
  position: absolute; left: -22px; top: 0; bottom: 0; width: 22px;
  background: linear-gradient(180deg, #4a3820, #2c2015, #3d2f1a, #2c2015);
  transform: rotateY(-90deg) translateZ(-1px); transform-origin: right;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px 0 0 2px;
}

.spine-text {
  font-family: var(--sans); font-size: 6px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
  writing-mode: vertical-rl; transform: rotate(180deg);
}

.back-cover-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
}
.back-logo {
  width: 140px; height: auto; opacity: 0.9;
  filter: brightness(0) invert(1) brightness(0.95);
}
.back-sub { font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(245,240,232,0.38); }


#open-hint {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  opacity: 0.7; animation: hint-float 2.8s ease-in-out infinite;
}
#open-hint span { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); }
.hint-pulse {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--gold); animation: pulse-ring 2.8s ease-in-out infinite;
}

@keyframes hint-float {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-5px); opacity: 1; }
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ====================================================
   READER (open book)
   ==================================================== */
#reader {
  position: fixed; inset: 0; z-index: 20;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at center, rgba(251,247,240,0.85) 0%, rgba(235,224,202,0.95) 100%);
  backdrop-filter: blur(12px);
}
#reader.hidden { display: none; }

/* ── SPREAD CONTAINER ── */
#spread-container {
  position: relative;
  width: min(90vw, 1020px);
  height: min(76vh, 630px);
  display: flex;
  perspective: 2400px;
  filter: drop-shadow(0 36px 72px rgba(0,0,0,0.88));
}

/* ── PAGES ── */
.spread-page {
  flex: 1; height: 100%; position: relative; overflow: hidden;
}

.page-left  { border-radius: 4px 0 0 4px; background: var(--parchment); box-shadow: inset -6px 0 18px rgba(0,0,0,0.16); }
.page-right { border-radius: 0 4px 4px 0; background: var(--parchment); box-shadow: inset  6px 0 18px rgba(0,0,0,0.16); }

.page-inner { width: 100%; height: 100%; overflow: hidden; position: relative; }

/* ── SPINE ── */
#spread-spine {
  width: 10px; height: 100%; flex-shrink: 0;
  background: linear-gradient(90deg, #c5b994 0%, #a89570 30%, #c5b994 50%, #a89570 70%, #c5b994 100%);
  box-shadow: 0 0 10px rgba(0,0,0,0.38); z-index: 5;
}

/* ── FLIPPER ── */
#page-flipper {
  position: absolute;
  top: 0; left: 50%; right: auto;
  width: 50%; height: 100%;
  transform-style: preserve-3d;
  transform-origin: left center;
  transform: rotateY(0deg);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

.flipper-front, .flipper-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  overflow: hidden;
  background: var(--parchment);
}
.flipper-front { border-radius: 0 4px 4px 0; box-shadow: inset 6px 0 18px rgba(0,0,0,0.16); }
.flipper-back  { transform: rotateY(180deg); border-radius: 4px 0 0 4px; box-shadow: inset -6px 0 18px rgba(0,0,0,0.16); }

/* ── SHADOWS ── */
#left-shadow, #right-shadow {
  position: absolute; top: 0; bottom: 0; width: 50px;
  pointer-events: none; z-index: 6;
}
#left-shadow  { left: 50%;  background: linear-gradient(90deg, rgba(0,0,0,0.22), transparent); }
#right-shadow { right: 50%; background: linear-gradient(270deg, rgba(0,0,0,0.22), transparent); }

/* ── CLICK ZONES ── */
#click-zone-left, #click-zone-right {
  position: absolute; top: 0; bottom: 0; width: 48%;
  z-index: 8; cursor: pointer;
}
#click-zone-left  { left: 0; }
#click-zone-right { right: 0; }

/* Visual cursor feedback on hover */
#click-zone-left:hover  { background: linear-gradient(90deg, rgba(201,169,110,0.04), transparent); }
#click-zone-right:hover { background: linear-gradient(270deg, rgba(201,169,110,0.04), transparent); }

/* ── NAV ARROWS ── */
.nav-arrow {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25);
  background: rgba(12,10,7,0.55);
  color: var(--gold-light); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; z-index: 30; backdrop-filter: blur(4px);
}
.nav-arrow svg { width: 21px; height: 21px; }
.nav-arrow:hover { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.nav-arrow:disabled { opacity: 0.15; pointer-events: none; }
#nav-prev { left: 16px; }
#nav-next { right: 16px; }

/* ── CLOSE / PORTADA BUTTON ── */
#close-btn {
  position: fixed; top: 36px; left: 36px;
  display: flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 18px 0 14px;
  border-radius: 22px;
  border: 1px solid rgba(201,169,110,0.5);
  background: rgba(12,10,7,0.85);
  color: var(--gold-light); cursor: pointer;
  z-index: 1000; transition: all 0.3s ease; backdrop-filter: blur(8px);
  white-space: nowrap;
}
#close-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.close-label {
  font-family: var(--sans); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
#close-btn:hover { border-color: var(--gold); background: rgba(201,169,110,0.15); color: var(--cream); }


/* ── PAGE COUNTER ── */
#page-counter {
  position: fixed; bottom: 52px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 13px;
  color: rgba(201,169,110,0.6); letter-spacing: 0.12em;
  z-index: 30; display: flex; align-items: center; gap: 5px;
}
.counter-div { opacity: 0.35; }

/* ── SPREAD DOTS ── */
#spread-dots {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 30;
}
.spread-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201,169,110,0.2);
  border: 1px solid rgba(201,169,110,0.35);
  cursor: pointer; transition: all 0.3s ease;
}
.spread-dot.active { background: var(--gold); transform: scale(1.35); }

/* ====================================================
   PAGE CONTENT — Fixed overflow, proper sizing
   ==================================================== */

/* ── Photo page ── */
.page-photo {
  position: absolute; inset: 0;
  background: var(--dark);
  overflow: hidden;
}
.page-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.page-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,10,7,0.82) 100%);
}
.page-caption {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
}
.page-caption h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--cream); line-height: 1.1;
}
.page-caption h2 em { font-style: italic; color: var(--gold-light); }
.page-caption p {
  font-size: 11px; color: rgba(245,240,232,0.5); margin-top: 7px;
  letter-spacing: 0.06em; line-height: 1.5;
}

/* ── Text/content page ── */
.page-content {
  position: absolute; inset: 0;
  padding: 30px 26px 36px;
  background: var(--parchment);
  color: var(--dark);
  display: flex; flex-direction: column;
  overflow: hidden; /* содержимое подгоняется под размер */
}

.page-eyebrow {
  font-family: var(--sans); font-size: 7.5px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 10px; flex-shrink: 0;
}

.page-title {
  font-family: var(--serif); font-size: 26px; font-weight: 300;
  line-height: 1.1; color: #1a1208; margin-bottom: 0; flex-shrink: 0;
}
.page-title em { font-style: italic; color: var(--gold-dark); }

.page-divider {
  width: 50px; height: 1px; background: var(--gold);
  margin: 12px 0; opacity: 0.55; flex-shrink: 0;
}

/* ── Timeline ── */
.tl { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tl-item { display: grid; grid-template-columns: 40px 1fr; gap: 10px; }
.tl-year {
  font-family: var(--serif); font-size: 11px; font-weight: 500;
  color: var(--gold-dark); padding-top: 2px;
  border-right: 1px solid rgba(140,109,63,0.28); padding-right: 8px;
}
.tl-content strong {
  display: block; font-family: var(--serif);
  font-size: 13px; font-weight: 500; color: #1a1208; margin-bottom: 2px;
}
.tl-content p { font-size: 10.5px; line-height: 1.55; color: #5a4a2e; }

/* ── Room list ── */
.room-list { display: flex; flex-direction: column; gap: 0; flex: 1; }
.room-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid rgba(140,109,63,0.12);
}
.room-item:last-child { border-bottom: none; }
.room-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-dark); flex-shrink: 0; }
.room-name { font-family: var(--serif); font-size: 15px; font-weight: 400; color: #1a1208; }
.room-desc { font-size: 10px; color: #7a6040; margin-top: 1px; }

/* ── Service list ── */
.svc-list { display: flex; flex-direction: column; flex: 1; gap: 0; }
.svc-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0; border-bottom: 1px solid rgba(140,109,63,0.12);
}
.svc-item:last-child { border-bottom: none; }
.svc-icon { color: var(--gold-dark); flex-shrink: 0; padding-top: 2px; }
.svc-icon svg { width: 18px; height: 18px; opacity: 0.8; }
.svc-info { display: flex; flex-direction: column; gap: 2px; }
.svc-info strong { display: block; font-family: var(--serif); font-size: 14px; color: #1a1208; font-weight: 500; }
.svc-info span { font-size: 10px; color: #7a6040; line-height: 1.45; margin-top: -1px; }

/* ── Facts ── */
.facts { display: flex; gap: 0; margin: 10px 0 8px; flex-shrink: 0; }
.fact-box {
  flex: 1; text-align: center; padding: 10px 4px;
  border-right: 1px solid rgba(140,109,63,0.18);
}
.fact-box:last-child { border-right: none; }
.fact-num {
  font-family: var(--serif); font-size: 24px; font-weight: 300;
  color: var(--gold-dark); line-height: 1;
}
.fact-lbl { font-size: 7.5px; letter-spacing: 0.1em; text-transform: uppercase; color: #7a6040; margin-top: 3px; line-height: 1.4; }

/* ── Tags ── */
.tag-row { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; flex-shrink: 0; }
.tag-pill {
  font-size: 7.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-dark); border: 1px solid rgba(140,109,63,0.3);
  padding: 4px 9px; border-radius: 1px;
}

/* ── Contact page ── */
.page-contact {
  position: absolute; inset: 0;
  background: var(--dark);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.page-contact .contact-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22;
}
.page-contact .contact-overlay { position: absolute; inset: 0; background: rgba(12,10,7,0.68); }
.page-contact .contact-body {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px;
}
.contact-mark { font-size: 16px; color: var(--gold); }
.contact-hotel { font-family: var(--serif); font-size: 24px; font-style: italic; color: var(--cream); }
.contact-sub { font-size: 7.5px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(245,240,232,0.38); }
.contact-divider { width: 70px; height: 1px; background: var(--gold); opacity: 0.35; }
.contact-item-row { display: flex; flex-direction: column; gap: 7px; }
.contact-item-row a, .contact-item-row span {
  font-size: 10.5px; color: rgba(245,240,232,0.6); text-decoration: none;
  letter-spacing: 0.04em; line-height: 1.5;
}
.contact-item-row a:hover { color: var(--gold-light); }

.wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 2px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; text-decoration: none;
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 4px; transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(37,211,102,0.22);
}
.wa-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 9px 28px rgba(37,211,102,0.38); }

/* ── Page number ── */
.page-num {
  font-family: var(--serif); font-size: 9px;
  color: rgba(90,74,46,0.35); position: absolute; bottom: 12px;
}
.page-left  .page-num { left: 18px; }
.page-right .page-num { right: 18px; }

/* ====================================================
   MOBILE COMBINED PAGE LAYOUT
   ==================================================== */
.page-mobile {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  background: var(--parchment);
  overflow: hidden;
}
.pm-hero {
  flex: 0 0 42%;
  position: relative; overflow: hidden;
}
.pm-hero-tall { flex: 0 0 52%; }
.pm-hero img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 6s ease;
}
.pm-hero:hover img { transform: scale(1.04); }
.pm-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.12) 0%,
    rgba(242,234,216,0.25) 55%,
    rgba(242,234,216,1) 100%
  );
}
.pm-overlay-dark {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(33,26,17,0.5) 55%,
    rgba(33,26,17,1) 100%
  ) !important;
}
.pm-hero-caption {
  position: absolute; bottom: 14px; left: 18px; right: 18px;
  font-family: var(--serif); font-size: 13px; font-style: italic;
  color: #3a2e1e; line-height: 1.4;
}
.pm-body {
  flex: 1; padding: 14px 22px 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.pm-dark { background: var(--dark-warm); }
.pm-body-dark { background: var(--dark-warm); }

/* ====================================================
   GALLERY SPREADS
   ==================================================== */
.page-gallery {
  position: absolute; inset: 0;
  background: var(--dark);
  display: grid; padding: 10px; gap: 10px;
}
.pg-item {
  position: relative; overflow: hidden; cursor: zoom-in;
  border-radius: 2px;
}
.pg-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.pg-item:hover img { transform: scale(1.05); }
.pg-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  font-family: var(--serif); font-size: 14px; font-style: italic;
  color: var(--cream); opacity: 0; transform: translateY(10px);
  transition: all 0.3s ease; pointer-events: none;
}
.pg-item:hover .pg-label { opacity: 1; transform: translateY(0); }

.pg-3 { grid-template-rows: 1fr 1fr; grid-template-columns: 1fr 1fr; }
.pg-3 .pg-span { grid-column: span 2; }
.pg-2v { grid-template-rows: 1fr 1fr; }
.pg-full { grid-template-rows: 1fr; }

/* ====================================================
   LIGHTBOX
   ==================================================== */
#lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
}
#lightbox.hidden { display: none; }
#lightbox-bg {
  position: absolute; inset: 0; background: rgba(0,0,0,0.94);
  backdrop-filter: blur(8px); cursor: zoom-out;
}
#lightbox-close {
  position: absolute; top: 20px; right: 20px; z-index: 1001;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
#lightbox-close svg { width: 22px; height: 22px; }
#lightbox-close:hover { border-color: var(--gold); background: rgba(201,169,110,0.2); }
#lightbox-inner {
  position: relative; z-index: 1001; pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  max-width: 90vw; max-height: 90vh;
}
#lightbox-img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; pointer-events: auto;
}
#lightbox-caption {
  font-family: var(--serif); font-size: 20px; font-style: italic;
  color: var(--gold-light); text-align: center;
}

/* ====================================================
   RESPONSIVE — MOBILE
   ==================================================== */
@media (max-width: 768px) {

  /* ── PORTADA: llena la pantalla entera ── */
  #book {
    width: 92vw;
    height: 88svh;
    height: 88vh; /* fallback */
  }
  .book-cover {
    width: 92vw;
    height: 88svh;
    height: 88vh;
  }
  .book-spine { left: -14px; width: 14px; }
  .cover-page-edge { right: -9px; width: 9px; }

  /* Gap entre libro y hint al mínimo */
  #book-scene { gap: 8px; }
  #open-hint { gap: 5px; }
  #open-hint span { font-size: 9px; }
  .hint-pulse { width: 16px; height: 16px; }

  /* Tapa: texto escalado al tamaño grande del libro */
  .cover-name    { font-size: 58px; }
  .cover-eyebrow { font-size: 8.5px; }
  .cover-hotel   { font-size: 10px; }
  .cover-year    { font-size: 12px; margin-bottom: 16px; }
  .cover-cta     { padding: 10px 22px; font-size: 9px; }
  .cover-content { padding: 18px 20px 22px; }
  .cover-line-h  { width: 80px; }

  /* ── READER: llena la pantalla entera ── */
  #spread-container {
    width: 98vw;
    height: 90svh;
    height: 90vh;
  }

  /* Página única — ocultar página izquierda, lomo y sombras 3D centrales */
  #spread-left  { display: none; }
  #spread-spine { display: none; }
  #left-shadow, #right-shadow { display: none; }
  #spread-right { flex: 1; border-radius: 5px; }
  #page-flipper { display: none; }
  #click-zone-left  { width: 45%; left: 0; }
  #click-zone-right { width: 55%; right: 0; }

  /* Flechas de navegación */
  .nav-arrow { width: 46px; height: 46px; }
  #nav-prev  { left: 1px; }
  #nav-next  { right: 1px; }

  /* Botón portada — abajo centrado en mobile */
  #close-btn {
    top: auto !important;
    bottom: 86px;
    left: 50%;
    margin-left: -50px;
    width: 100px;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 20px;
    background: rgba(12,10,7,0.85);
    border: 1px solid rgba(201,169,110,0.5);
    opacity: 1 !important;
    visibility: visible !important;
  }
  .close-label { font-size: 9.5px; letter-spacing: 0.22em; }

  /* Contador y dots */
  #page-counter { bottom: 50px; font-size: 13px; }
  #spread-dots  { bottom: 14px; }
  .spread-dot   { width: 7px; height: 7px; }

  /* Hero de páginas mobile */
  .pm-hero { flex: 0 0 43%; }

  /* Textos internos */
  .pm-body .page-title   { font-size: 24px !important; }
  .pm-body .page-eyebrow { font-size: 9px !important; margin-bottom: 10px; }
  .pm-body .tl-content strong { font-size: 14px !important; }
  .pm-body .tl-content p      { font-size: 11.5px !important; line-height: 1.5; }
  .pm-body .room-name         { font-size: 15px !important; }
  .pm-body .room-desc         { font-size: 11px !important; }
  .pm-body .svc-info strong   { font-size: 13px !important; }
  .pm-body .svc-info span     { font-size: 11px !important; }
  .pm-body .fact-num          { font-size: 24px !important; }
  .pm-body .fact-lbl          { font-size: 8.5px !important; }
  .pm-body .page-divider      { margin: 8px 0; }
  .pm-body                    { padding: 12px 20px 14px; }

  /* Contacto */
  .contact-hotel  { font-size: 26px !important; }
  .contact-sub    { font-size: 8px !important; }
  .contact-item-row a,
  .contact-item-row span { font-size: 12px !important; }
  .wa-btn { font-size: 10px !important; padding: 12px 22px !important; }

  /* Lightbox */
  #lightbox-caption { font-size: 15px; }
}

@media (max-width: 480px) {
  #book         { width: 94vw; height: 86svh; height: 86vh; }
  .book-cover   { width: 94vw; height: 86svh; height: 86vh; }
  #spread-container { height: 88svh; height: 88vh; }
  .pm-hero      { flex: 0 0 40%; }
  .pm-body .page-title { font-size: 21px !important; }
  .cover-name   { font-size: 52px; }
}

