/* ══════════════════════════════════════════════
   Arkham Escape · Landing "Plan de interior / lluvia"
   Aesthetic: cool, fresh, sheltered — slate blue & teal
   ══════════════════════════════════════════════ */
:root {
  --bg: #eef3f6;
  --bg-deep: #dde7ed;
  --slate: #2b4a5e;
  --slate-deep: #1c3340;
  --teal: #2a8a8a;
  --teal-deep: #1d6464;
  --amber: #e6a23c;
  --ink: #1e2b33;
  --ink-soft: #51606a;
  --white: #fcfeff;
  --border: #cfdde5;
  --shadow: rgba(30,60,80,.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Spectral', serif; font-weight: 600; line-height: 1.12; }
a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; display: block; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* Language float */
.lang-float {
  position: fixed; top: 1.1rem; right: 1.1rem; z-index: 200;
  display: flex; gap: .2rem; background: rgba(252,254,255,.9);
  backdrop-filter: blur(8px); border: 1px solid var(--border);
  border-radius: 100px; padding: .25rem; box-shadow: 0 4px 16px var(--shadow);
}
.lang-float button {
  border: none; background: transparent; font-family: inherit; font-weight: 700;
  font-size: .8rem; padding: .35rem .75rem; border-radius: 100px; cursor: pointer;
  color: var(--ink-soft); transition: all .2s;
}
.lang-float button.active { background: var(--teal); color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  padding: .9rem 1.9rem; border-radius: 10px; cursor: pointer;
  transition: all .25s; border: 2px solid transparent;
}
.btn-solid { background: var(--teal); color: #fff; box-shadow: 0 8px 24px rgba(42,138,138,.32); }
.btn-solid:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-line { background: transparent; border-color: var(--slate); color: var(--slate); }
.btn-line:hover { background: var(--slate); color: #fff; }
.btn-lg { font-size: 1.15rem; padding: 1.1rem 2.6rem; }

/* Hero */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 5rem 1.5rem 3rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 30% 15%, rgba(42,138,138,.25), transparent 50%),
    linear-gradient(165deg, var(--slate), var(--slate-deep) 70%);
}
/* Rain effect */
.rain {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: .25;
  background-image: repeating-linear-gradient(
    105deg, transparent 0 22px, rgba(200,225,235,.5) 22px 23px
  );
  background-size: 60px 60px;
  animation: rainfall 0.6s linear infinite;
}
@keyframes rainfall { from { background-position: 0 0; } to { background-position: 12px 60px; } }
.hero-inner { position: relative; z-index: 1; max-width: 760px; color: #fff; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: .9rem;
  color: #fff; background: rgba(255,255,255,.16);
  padding: .45rem 1.1rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.5rem, 6.5vw, 4.6rem); margin-bottom: 1.4rem; color: #fff; letter-spacing: -.01em; }
.hero-lead { font-size: clamp(1.1rem, 2.4vw, 1.35rem); color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 2.4rem; font-weight: 400; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.2rem; }
.hero .btn-line { border-color: rgba(255,255,255,.6); color: #fff; }
.hero .btn-line:hover { background: #fff; color: var(--slate); }
.hero-trust { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.85); }
.hero-trust .stars { color: var(--amber); letter-spacing: .08em; font-size: 1.1rem; }

/* Strip */
.strip {
  background: var(--white); color: var(--ink); border-bottom: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; padding: 1.6rem 1.5rem;
}
.strip-item { text-align: center; }
.strip-item b { font-family: 'Spectral', serif; font-size: 1.8rem; color: var(--teal); display: block; line-height: 1; }
.strip-item span { font-size: .82rem; color: var(--ink-soft); }

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-deep); }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 3rem; }
.label {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--teal-deep); margin-bottom: .8rem;
}
.sec-head h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
.sec-sub { color: var(--ink-soft); font-size: 1.05rem; margin-top: .8rem; }

/* Reasons */
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.reason {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  padding: 2.4rem 2rem; text-align: center; transition: all .3s;
}
.reason:hover { transform: translateY(-6px); box-shadow: 0 18px 40px var(--shadow); }
.reason-ico { font-size: 3rem; margin-bottom: 1.1rem; }
.reason h3 { font-size: 1.45rem; margin-bottom: .7rem; }
.reason p { color: var(--ink-soft); font-size: .98rem; }

/* Rooms2 */
.rooms2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.room2 {
  border-radius: 20px; padding: 2.2rem; color: #fff; position: relative; overflow: hidden;
  min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
}
.r2a { background: linear-gradient(140deg, #6a5a9e, #2a2150); }
.r2b { background: linear-gradient(140deg, var(--teal), var(--slate-deep)); }
.room2-tag {
  position: absolute; top: 1.4rem; left: 1.4rem; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; background: rgba(255,255,255,.2);
  padding: .25rem .7rem; border-radius: 100px;
}
.room2 h3 { font-size: 1.7rem; margin-bottom: .5rem; color: #fff; }
.room2 p { font-size: .95rem; opacity: .92; margin-bottom: 1rem; }
.room2-meta { display: flex; gap: 1.2rem; font-size: .85rem; font-weight: 600; opacity: .9; }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; }
.reviews blockquote { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 2rem; }
.rev-stars { color: var(--amber); letter-spacing: .08em; margin-bottom: 1rem; }
.reviews p { font-family: 'Spectral', serif; font-style: italic; font-size: 1.08rem; margin-bottom: 1rem; }
.reviews cite { font-style: normal; font-weight: 700; font-size: .88rem; color: var(--ink-soft); }

/* Booking */
.section-book { background: var(--bg-deep); }
.widget-frame {
  max-width: 920px; margin: 0 auto; background: var(--white);
  border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 14px 44px var(--shadow);
}

/* Location */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.loc-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .8rem 0 1.4rem; }
.loc-line { font-size: 1.05rem; margin-bottom: .8rem; }
.loc-line a { color: var(--teal); font-weight: 600; }
.loc-map { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); height: 360px; box-shadow: 0 10px 30px var(--shadow); }
.loc-map iframe { width: 100%; height: 100%; border: 0; }

/* Final */
.final { background: linear-gradient(135deg, var(--slate), var(--slate-deep)); color: #fff; text-align: center; padding: 5.5rem 0; }
.final h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; color: #fff; }
.final p { font-size: 1.15rem; opacity: .9; margin-bottom: 2.2rem; }
.final .btn-solid { background: var(--amber); color: var(--ink); }
.final .btn-solid:hover { background: #fff; }

/* Footer */
footer { background: var(--slate-deep); color: rgba(255,255,255,.7); padding: 2rem 0; font-size: .88rem; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.foot a { color: var(--amber); font-weight: 600; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 820px) {
  .loc { grid-template-columns: 1fr; gap: 2rem; }
  .rooms2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .strip { gap: 1.2rem; }
  .strip-item b { font-size: 1.4rem; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
}


/* ═══ Fotos reales: hero con foto + galería (añadido 20260618-203058) ═══ */
.hero.has-photo .hero-bg{background-image:linear-gradient(150deg,rgba(15,12,10,.58),rgba(15,12,10,.76)),url('/assets/img/plan-de-lluvia-marbella-escape-room-hero.jpg');background-size:cover;background-position:center;background-repeat:no-repeat}
.hero.has-photo .hero-bg::after{opacity:.16}
.hero.has-photo h1,.hero.has-photo .hero-lead{color:#fff}
.hero.has-photo .eyebrow{color:#fff;background:rgba(255,255,255,.18)}
.hero.has-photo .hero-trust{color:#f4ece1}
.hero.has-photo .hero-scroll{color:#fff}
.section-gallery .gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.section-gallery figure{margin:0;border-radius:16px;overflow:hidden;aspect-ratio:4/3;background:#0d0a08}
.section-gallery figure img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s}
.section-gallery figure:hover img{transform:scale(1.06)}
@media(max-width:760px){.section-gallery .gallery{grid-template-columns:repeat(2,1fr)}}
