/* ============================================================
   THE ALMA OF ALMADA — "Porto Editorial"
   Paleta: Cream · Terracotta · Ink · Gold
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --ink:          #1A1410;
  --ink-mid:      #4A433C;
  --cream:        #F5F0E8;
  --cream-dark:   #E6DDD0;
  --terracotta:   #B84A2A;
  --terracotta-h: #9E3E22;
  --gold:         #C9A227;
  --tile-blue:    #1B4B8A;
  --white:        #FFFFFF;
  --nav-h:        70px;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  0.875rem;
  --space-md:  1.25rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  --radius:    4px;
  --radius-md: 10px;
  --trans:     0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Scrollbar siempre visible — evita el salto de layout al abrir lightbox/menú */
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.1; font-weight: 300; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ── Section headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--space-xl); }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-sm);
}

.section-label--light { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}

.section-title em { font-style: italic; }
.section-title--light { color: var(--white); }

.section-subtitle {
  margin-top: var(--space-sm);
  color: var(--ink-mid);
  font-size: 0.95rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Botones ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  transition: background var(--trans), color var(--trans),
              border-color var(--trans), transform 0.18s ease,
              box-shadow var(--trans);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn--primary:hover {
  background: var(--terracotta-h);
  border-color: var(--terracotta-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(184,74,42,0.32);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn--dark:hover { background: #2D2820; }

.btn--lg   { padding: 1.05rem 2.3rem; font-size: 0.88rem; }
.btn--full { width: 100%; }

/* ── Barra de progreso ──────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--terracotta), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── NAVEGACION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  transition: color var(--trans);
}

.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--trans);
}

.nav--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--cream-dark);
}

.nav--scrolled .nav-logo-main { color: var(--ink); }
.nav--scrolled .nav-logo-sub  { color: var(--ink-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.78);
  transition: color var(--trans);
  padding: 0.2rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav--scrolled .nav-link { color: var(--ink-mid); }
.nav--scrolled .nav-link:hover { color: var(--ink); }

.nav-link--cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover  { background: var(--terracotta-h); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform var(--trans), opacity var(--trans), background var(--trans);
  transform-origin: center;
}

.nav--scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── BOOKING BAR ────────────────────────────────────────────── */
.booking-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  z-index: 990;
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.8rem 0;
}

.booking-bar.visible { transform: translateY(0); }

.booking-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.booking-bar-info    { display: flex; flex-direction: column; gap: 2px; }
.booking-bar-name    { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink); }
.booking-bar-meta    { font-size: 0.73rem; color: var(--ink-mid); }
.booking-bar-actions { display: flex; align-items: center; gap: var(--space-md); }
.booking-bar-price   { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10vh;
  overflow: hidden;
  background: #0E0C09;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-bg.loaded {
  opacity: 1;
  animation: kenburns 30s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.07) translateY(0); }
  to   { transform: scale(1.0) translateY(-14px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(14,11,7,0.88) 0%,
      rgba(14,11,7,0.50) 28%,
      rgba(14,11,7,0.18) 58%,
      rgba(14,11,7,0.28) 100%
    );
  z-index: 1;
}

.hero-corner { display: none; }

.hero-badge {
  position: absolute;
  top: calc(var(--nav-h) + 1.25rem);
  right: var(--space-xl);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--space-2xl);
  max-width: 860px;
  color: var(--white);
}

.hero-location {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-location::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: var(--space-xl);
  color: var(--white);
}

.hero-title em {
  font-style: italic;
  display: block;
  color: rgba(255,255,255,0.82);
}

.hero-subtitle { display: none; }
.hero-scroll   { display: none; }

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── HIGHLIGHTS ─────────────────────────────────────────────── */
.highlights {
  background: var(--ink);
  padding: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-right: 1px solid rgba(255,255,255,0.06);
  gap: var(--space-xs);
  transition: background var(--trans);
}

.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: rgba(255,255,255,0.03); }

/* Icono / numero destacado */
.highlight-icon {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.highlight-text {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

/* ── AZULEJO BAND ───────────────────────────────────────────── */
.azulejo-band {
  width: 100%;
  height: clamp(140px, 26vh, 300px);
  overflow: hidden;
  position: relative;
  display: block;
}

.azulejo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 10s ease;
  transform-origin: center;
}

.azulejo-band:hover img { transform: scale(1.04); }

.azulejo-band--thin {
  height: clamp(90px, 14vh, 160px);
}

.azulejo-divider { display: none; }

/* ── THE SPACE ──────────────────────────────────────────────── */
.space {
  background: var(--cream);
  overflow: hidden;
}

.space-editorial {
  display: grid;
  grid-template-columns: 55% 1fr;
  min-height: 70vh;
}

.space-photo {
  position: relative;
  overflow: hidden;
}

.space-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.space-photo:hover img { transform: scale(1.03); }

.space-content {
  padding: var(--space-3xl) var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-xl);
}

.space-content .section-label { text-align: left; }
.space-content .section-title { text-align: left; }

.space-tagline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 380px;
}

.space-specs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.85rem;
  color: var(--ink-mid);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.spec-item:last-child { border-bottom: none; }
.spec-icon { display: none; }

.spec-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.space-license {
  font-size: 0.78rem;
  color: var(--ink-mid);
  opacity: 0.7;
}

/* Ocultar elementos del diseño anterior */
.space-description { display: none; }
.amenities-ticker  { display: none; }
.space-photos      { display: none; }
.space-info        { display: none; }

/* ── GALLERY ────────────────────────────────────────────────── */
.gallery-section {
  background: var(--ink);
  padding-bottom: var(--space-2xl);
}

.gallery-section-header {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  background: var(--ink);
  margin-bottom: 0;
}

.gallery-section-header .section-label  { color: var(--gold); }
.gallery-section-header .section-title  { color: var(--white); }
.gallery-section-header .section-subtitle {
  color: rgba(255,255,255,0.35);
  margin-top: var(--space-sm);
}

/* ── CAROUSEL INMERSIVO ─────────────────────────────────────── */
.carousel-wrap {
  position: relative;
  height: 74vh;
  min-height: 420px;
  max-height: 860px;
  overflow: hidden;
  background: #0A0806;
  cursor: pointer;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active { opacity: 1; }

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ken Burns sutil en la foto activa */
.carousel-slide.active img {
  animation: kenburns 9s ease-out forwards;
}

/* Gradiente inferior para que el HUD sea legible */
.carousel-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(8,6,4,0.72) 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
}

/* Flechas de navegación */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-50%) scale(1.06);
}

.carousel-prev { left: var(--space-lg); }
.carousel-next { right: var(--space-lg); }

/* HUD: contador + botón fullscreen */
.carousel-hud {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  right: var(--space-lg);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carousel-counter {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
}

.carousel-fullscreen {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.carousel-fullscreen:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* Barra de progreso auto-play */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--terracotta);
  z-index: 10;
  pointer-events: none;
}

/* Tira de miniaturas */
.carousel-thumbs-wrap {
  background: #0A0806;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.14) transparent;
}

.carousel-thumbs-wrap::-webkit-scrollbar       { height: 3px; }
.carousel-thumbs-wrap::-webkit-scrollbar-track  { background: transparent; }
.carousel-thumbs-wrap::-webkit-scrollbar-thumb  { background: rgba(255,255,255,0.14); border-radius: 2px; }

.carousel-thumbs {
  display: flex;
  gap: 3px;
  padding: 3px;
  width: max-content;
}

.carousel-thumb {
  flex-shrink: 0;
  width: 84px;
  height: 58px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity var(--trans), outline-color var(--trans);
  display: block;
  background: #1a1510;
  outline: 2px solid transparent;
  outline-offset: -2px;
}

.carousel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-thumb:hover       { opacity: 0.7; }
.carousel-thumb:hover img   { transform: scale(1.07); }
.carousel-thumb.active      { opacity: 1; outline-color: var(--terracotta); }

/* ── AZULEJO COMPLETO — sin recorte ─────────────────────────── */
.azulejo-full {
  width: 100%;
  line-height: 0;
  display: block;
  overflow: hidden;
}

.azulejo-full img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}

/* ── EDITORIAL BREAK ─────────────────────────────────────────── */
.editorial-break {
  position: relative;
  height: clamp(300px, 60vh, 640px);
  overflow: hidden;
}

.editorial-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Imagen a tamaño natural — sin recorte ni zoom */
.editorial-break--natural { height: auto; }
.editorial-break--natural img { height: auto; object-fit: unset; }

.editorial-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,11,7,0.8) 0%,
    rgba(14,11,7,0.35) 50%,
    rgba(14,11,7,0.05) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl);
}

.editorial-break-caption {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  max-width: 440px;
}

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.reviews-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md) var(--space-xl);
  margin-bottom: var(--space-2xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.category-bar { display: flex; align-items: center; gap: var(--space-sm); }

.category-name {
  font-size: 0.78rem;
  color: var(--ink-mid);
  min-width: 108px;
  white-space: nowrap;
}

.category-track {
  flex: 1;
  height: 2px;
  background: var(--cream-dark);
  border-radius: 100px;
  overflow: hidden;
}

.category-fill {
  height: 100%;
  background: var(--terracotta);
  width: 0;
  transition: width 0.9s ease;
  border-radius: 100px;
}

.category-score {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--ink);
  min-width: 28px;
  text-align: right;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.review-card {
  padding: var(--space-xl);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  transition: transform var(--trans);
}

.review-card:hover { transform: translateY(-2px); }

.review-stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 3px;
  margin-bottom: var(--space-md);
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.72;
  margin-bottom: var(--space-md);
  border: none;
  padding: 0;
}

.review-footer { display: flex; align-items: center; gap: var(--space-sm); }

.review-avatar {
  width: 34px; height: 34px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-name    { font-size: 0.84rem; font-weight: 500; color: var(--ink); }
.review-country { font-size: 0.73rem; color: var(--ink-mid); }

.reviews-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.reviews-note { font-size: 0.78rem; color: var(--ink-mid); }

/* ── NEIGHBOURHOOD ──────────────────────────────────────────── */
.neighbourhood {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.neighbourhood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.neighbourhood-text {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.distances-list { display: flex; flex-direction: column; }

.distance-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.87rem;
}

.distance-icon { display: none; }

.distance-item::before {
  content: '—';
  color: var(--terracotta);
  font-size: 0.85rem;
}

.distance-place { color: var(--ink); }
.distance-time  { color: var(--ink-mid); font-size: 0.78rem; white-space: nowrap; }

.neighbourhood-map {
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 420px;
}

.neighbourhood-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── BOOK DIRECT ────────────────────────────────────────────── */
.book-direct {
  padding: var(--space-3xl) 0;
  background: var(--ink);
}

.book-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.book-direct-card {
  padding: var(--space-xl);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  transition: border-color var(--trans), background var(--trans);
}

.book-direct-card:hover {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.025);
}

.book-direct-icon { font-size: 1.4rem; margin-bottom: var(--space-md); display: block; }

.book-direct-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.book-direct-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.44);
  line-height: 1.65;
}

/* ── PRICING ────────────────────────────────────────────────── */
.pricing {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.pricing-table-wrapper { overflow-x: auto; margin-bottom: var(--space-xl); }

.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }

.pricing-table th {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: var(--space-sm) var(--space-md);
  border-bottom: 2px solid var(--cream-dark);
  text-align: left;
}

.pricing-table td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--cream-dark);
  color: var(--ink);
}

.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover td { background: var(--cream); }

.season-badge {
  display: inline-flex;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.season-badge--low  { background: var(--cream-dark); color: var(--ink-mid); }
.season-badge--mid  { background: rgba(201,162,39,0.13); color: #8B6C0F; }
.season-badge--high { background: rgba(184,74,42,0.1); color: var(--terracotta); }

.price      { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: var(--ink); }
.price-cell { text-align: right; }

.pricing-notes {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  color: var(--ink-mid);
  font-size: 0.85rem;
  margin-bottom: var(--space-xl);
}

.pricing-cta { text-align: center; }

/* ── BOOK FORM ──────────────────────────────────────────────── */
.book {
  background: var(--cream);
}

/* Azulejos completos dentro de la sección de reserva */
.book-azulejo {
  width: 100%;
  line-height: 0;
  display: block;
}

.book-azulejo img {
  width: 100%;
  height: auto;
  display: block;
}

.book .container {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.book-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: start;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group { display: flex; flex-direction: column; gap: var(--space-xs); }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
}

.required { color: var(--terracotta); }
.optional  { font-weight: 400; color: var(--ink-mid); text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184,74,42,0.1);
}

.form-group input.error,
.form-group select.error { border-color: #C0392B; }

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select   { appearance: none; cursor: pointer; }

/* ── CALENDAR SUMMARY ──────────────────────────────────────── */
.cal-summary {
  display: flex;
  align-items: stretch;
  margin-bottom: var(--space-md);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.cal-summary-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.875rem var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--trans);
}

.cal-summary-item:hover,
.cal-summary-item.active { background: var(--cream); }

.cal-summary-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 2px;
}

.cal-summary-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
}

.cal-summary-item.active .cal-summary-value,
.cal-summary-item.has-date .cal-summary-value { color: var(--terracotta); }

.cal-summary-sep {
  width: 1px;
  background: var(--cream-dark);
  flex-shrink: 0;
  align-self: stretch;
}

.cal-nights {
  padding: 0 var(--space-md);
  font-size: 0.78rem;
  color: var(--ink-mid);
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/* ── CALENDAR INLINE ────────────────────────────────────────── */
.cal-inline {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cal-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-md) 0;
}

.cal-nav {
  width: 36px; height: 36px;
  background: var(--cream);
  border: none;
  border-radius: var(--radius);
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--trans);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}

.cal-nav:hover { background: var(--cream-dark); }

.cal-months-wrapper {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.cal-month { padding: 0 var(--space-xs); }

.cal-month-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: var(--space-sm);
  color: var(--ink);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.4rem 0;
}

.cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.cal-day {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--trans), color var(--trans);
  position: relative;
}

.cal-day:hover:not(:disabled) { background: var(--cream); }
.cal-day--disabled,
.cal-day--past    { color: #CCC5BB; cursor: not-allowed; }
.cal-day--blocked { color: #CCC5BB; text-decoration: line-through; cursor: not-allowed; }
.cal-day--today   { font-weight: 700; color: var(--terracotta); }
.cal-day--today::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}

.cal-day--sel-start,
.cal-day--sel-end { background: var(--terracotta); color: var(--white); border-radius: 50%; }
.cal-day--sel-only { background: var(--terracotta); color: var(--white); }
.cal-day--range    { background: rgba(184,74,42,0.1); border-radius: 0; color: var(--ink); }
.cal-day--empty    { background: none !important; cursor: default; }

.cal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--cream-dark);
  margin-top: var(--space-md);
}

.cal-hint { font-size: 0.78rem; color: var(--ink-mid); flex: 1; }
.cal-footer-actions { display: flex; gap: var(--space-sm); }

.cal-clear {
  font-size: 0.78rem;
  color: var(--ink-mid);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--trans);
  padding: 0.2rem;
}

.cal-clear:hover { color: var(--terracotta); }

.cal-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--space-sm) var(--space-md);
  font-size: 0.78rem;
  color: var(--ink-mid);
}

.cal-loading-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: dot-pulse 1.2s ease-in-out infinite;
}

.cal-loading-dot:nth-child(2) { animation-delay: 0.2s; }
.cal-loading-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1); }
}

/* ── PRICE ESTIMATE ─────────────────────────────────────────── */
.price-estimate {
  padding: var(--space-lg);
  background: var(--ink);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.price-est-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.price-est-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
}

.price-est-discount { color: var(--gold); }
.price-est-total {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-sm);
  color: var(--white);
  font-size: 0.95rem;
}
.price-est-total strong { font-weight: 600; }
.price-est-note         { font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.price-est-request      { color: rgba(255,255,255,0.55); }

.form-notice {
  font-size: 0.78rem;
  color: var(--ink-mid);
  text-align: center;
  line-height: 1.5;
}

.form-success {
  padding: var(--space-lg);
  background: rgba(0,110,55,0.1);
  border: 1px solid rgba(0,110,55,0.2);
  border-radius: var(--radius);
  color: #006633;
  font-size: 0.88rem;
  text-align: center;
}

/* ── CONTACT SIDEBAR ─────────────────────────────────────────── */
.book-contact {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.book-contact h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: var(--space-lg);
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.contact-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius);
  transition: background var(--trans);
}

.contact-option:hover { background: var(--cream-dark); }

.contact-icon  { font-size: 1.4rem; }
.contact-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mid); }
.contact-value { font-size: 0.87rem; color: var(--ink); font-weight: 500; }

.book-aside-info h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: var(--space-sm);
}

.book-aside-info ol {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: steps;
}

.book-aside-info li {
  font-size: 0.84rem;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  counter-increment: steps;
  line-height: 1.5;
}

.book-aside-info li::before {
  content: counter(steps);
  min-width: 20px; height: 20px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-item[open] { border-color: var(--terracotta); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  list-style: none;
  gap: var(--space-md);
  transition: background var(--trans);
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-q:hover { background: var(--cream); }

.faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: background var(--trans), border-color var(--trans);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink-mid);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--trans), background var(--trans);
}

.faq-icon::before { width: 9px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 9px; }

.faq-item[open] .faq-icon             { background: var(--terracotta); border-color: var(--terracotta); }
.faq-item[open] .faq-icon::before     { background: var(--white); }
.faq-item[open] .faq-icon::after      { background: var(--white); transform: translate(-50%, -50%) rotate(90deg); }

.faq-a { padding: 0 var(--space-lg) var(--space-lg); }
.faq-a p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.75; }

/* ── HOUSE RULES ─────────────────────────────────────────────── */
.rules {
  padding: var(--space-3xl) 0;
  background: var(--cream);
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.rule-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  font-size: 0.85rem;
}

.rule-item--ok   { border-left-color: #27AE60; }
.rule-item--no   { border-left-color: #C0392B; }
.rule-item--info { border-left-color: var(--gold); }

.rule-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.rule-item strong { display: block; font-size: 0.85rem; color: var(--ink); margin-bottom: 2px; }
.rule-item span   { color: var(--ink-mid); }

.rules-license { text-align: center; font-size: 0.78rem; color: var(--ink-mid); opacity: 0.7; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding-top: 0;
}

.porto-skyline { width: 100%; overflow: hidden; line-height: 0; }
.porto-skyline svg { width: 100%; height: auto; display: block; }

.footer .container { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 300; color: var(--white); margin-bottom: 6px; }
.footer-address,
.footer-license { font-size: 0.76rem; color: rgba(255,255,255,0.38); line-height: 1.55; }

.footer-links { display: flex; flex-direction: column; gap: var(--space-sm); }

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.46);
  transition: color var(--trans);
}

.footer-link:hover { color: var(--white); }
.footer-link--disabled { opacity: 0.25; pointer-events: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.26);
}

.footer-invicta { font-family: var(--font-serif); font-style: italic; color: rgba(255,255,255,0.32); }

/* ── WA FLOAT ───────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 96px; right: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: #25D366;
  color: var(--white);
  padding: 0.65rem 1.1rem;
  border-radius: 100px;
  z-index: 900;
  box-shadow: 0 4px 18px rgba(37,211,102,0.38);
  transition: transform var(--trans), box-shadow var(--trans);
}

.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-float svg       { width: 20px; height: 20px; flex-shrink: 0; }
.wa-float-label     { font-size: 0.8rem; font-weight: 500; white-space: nowrap; }

/* ── BACK TO TOP ────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 156px; right: var(--space-lg);
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(0,0,0,0.25);
  transition: background var(--trans), transform var(--trans);
}

.back-top:hover { background: var(--terracotta); transform: translateY(-2px); }
.back-top svg   { width: 16px; height: 16px; }

/* ── MOBILE CTA ─────────────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--cream-dark);
  padding: 0.75rem var(--space-lg);
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  z-index: 800;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.07);
}

.mobile-cta-text        { display: flex; flex-direction: column; gap: 1px; }
.mobile-cta-text strong { font-size: 0.88rem; color: var(--ink); }
.mobile-cta-text span   { font-size: 0.76rem; color: var(--ink-mid); }

/* ── LIGHTBOX ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,6,4,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] { display: none; }

.lightbox-close {
  position: absolute;
  top: var(--space-lg); right: var(--space-lg);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--trans);
  display: flex; align-items: center; justify-content: center;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background var(--trans);
  display: flex; align-items: center; justify-content: center;
}

.lightbox-prev { left: var(--space-lg); }
.lightbox-next { right: var(--space-lg); }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.lightbox-img {
  max-width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.15s ease;
}

.lightbox-counter { color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.12em; }

/* ── FADE-IN ────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE — TABLET ────────────────────────────────────── */
@media (max-width: 1024px) {
  .carousel-wrap    { height: 62vh; }
  .space-editorial  { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE — MOBILE ────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    text-align: center;
  }

  .nav-link--cta {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
  }

  .hero { padding-bottom: var(--space-2xl); padding-top: var(--nav-h); }
  .hero-content { padding: 0 var(--space-lg); }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-badge { right: var(--space-md); font-size: 0.62rem; padding: 0.4rem 0.8rem; }
  .hero-ctas  { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .highlight-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }

  .space-editorial { grid-template-columns: 1fr; min-height: auto; }
  .space-photo     { height: 65vw; position: relative; }
  .space-photo img { position: absolute; }
  .space-content   { padding: var(--space-xl) var(--space-lg); }

  .carousel-wrap   { height: 55vw; min-height: 300px; }
  .carousel-btn    { width: 42px; height: 42px; font-size: 1.5rem; }
  .carousel-thumb  { width: 68px; height: 48px; }

  .editorial-break { height: 55vw; }
  .editorial-break-overlay { padding: var(--space-lg); }
  .editorial-break-caption { font-size: 1.5rem; }

  .reviews-categories { grid-template-columns: 1fr 1fr; }
  .reviews-grid       { grid-template-columns: 1fr; }

  .neighbourhood-grid { grid-template-columns: 1fr; }
  .neighbourhood-map  { height: 300px; }

  .book-direct-grid { grid-template-columns: 1fr; }

  .book-content { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  .cal-months-wrapper { grid-template-columns: 1fr; }

  .pricing-table th:nth-child(2),
  .pricing-table td:nth-child(2) { display: none; }

  .rules-grid { grid-template-columns: 1fr; }

  .footer-grid   { grid-template-columns: 1fr; text-align: center; }
  .footer-links  { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  .mobile-cta     { display: flex; }
  .wa-float       { bottom: 76px; padding: 0.75rem; }
  .wa-float-label { display: none; }
  .back-top       { bottom: 130px; }
  .booking-bar    { display: none; }
}

@media (max-width: 480px) {
  .carousel-wrap      { height: 62vw; }
  .carousel-btn       { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel-fullscreen { display: none; }
  .reviews-categories { grid-template-columns: 1fr; }
}

/* ============================================================
   PÁGINAS INDEPENDIENTES — gallery / reviews / location / book
   ============================================================ */

/* ── Active nav link ──────────────────────────────────────── */
.nav-link--active { color: var(--white) !important; }
.nav-link--active::after { transform: scaleX(1) !important; }
.nav--scrolled .nav-link--active { color: var(--ink) !important; }

/* ── Page hero — cabecera de cada página ─────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--space-3xl)) var(--space-xl) var(--space-2xl);
  text-align: center;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/p01.jpg') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.page-hero--book::before { background-image: url('images/p05.jpg'); }
.page-hero--reviews::before { background-image: url('images/p10.jpg'); }
.page-hero--gallery::before { background-image: url('images/p01.jpg'); }

.page-hero-content { position: relative; z-index: 1; }

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  margin: var(--space-sm) 0 var(--space-md);
}

.page-hero-title em { font-style: italic; color: rgba(255,255,255,0.7); }

.page-hero-sub {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

/* ── GALLERY page ─────────────────────────────────────────── */
.gallery-page { background: #0A0806; }

/* ── REVIEWS page ─────────────────────────────────────────── */
.reviews-page {
  background: var(--cream);
  padding: var(--space-3xl) 0;
}

.score-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-xl) var(--space-2xl);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-2xl);
}

.score-hero { text-align: center; border-right: 1px solid var(--cream-dark); padding-right: var(--space-2xl); }

.score-number {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.score-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 4px; margin-bottom: var(--space-sm); }

.score-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.score-bars { display: flex; flex-direction: column; gap: var(--space-md); }

.score-bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 36px;
  align-items: center;
  gap: var(--space-md);
}

.score-bar-label { font-size: 0.85rem; color: var(--ink-mid); }

.score-bar-track {
  height: 3px;
  background: var(--cream-dark);
  border-radius: 100px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  width: 0;
  background: var(--terracotta);
  border-radius: 100px;
  transition: width 0.9s ease;
}

.score-bar-val {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--ink);
  text-align: right;
}

/* Review cards restructuradas */
.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.review-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.review-date { font-size: 0.73rem; color: var(--ink-mid); }
.review-header .review-stars { margin-bottom: 0; font-size: 0.78rem; letter-spacing: 2px; }

/* Reviews CTA inferior */
.reviews-cta {
  text-align: center;
  padding: var(--space-2xl) 0 var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.reviews-cta-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
}

/* ── BOOK page ────────────────────────────────────────────── */
.book-section {
  background: var(--cream);
  padding: var(--space-3xl) 0;
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-2xl);
  align-items: start;
}

.book-left { display: flex; flex-direction: column; gap: var(--space-xl); }

/* Calendar card */
.calendar-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.calendar-header {
  padding: var(--space-xl) var(--space-xl) var(--space-md);
  border-bottom: 1px solid var(--cream-dark);
}

.calendar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 4px;
}

.calendar-sub {
  font-size: 0.8rem;
  color: var(--ink-mid);
}

.calendar-grid { padding: var(--space-md); }
.calendar-loading { padding: var(--space-xl); text-align: center; color: var(--ink-mid); font-size: 0.88rem; }

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.form-sub {
  font-size: 0.85rem;
  color: var(--ink-mid);
  margin-bottom: var(--space-xl);
  line-height: 1.65;
}

.booking-form { display: flex; flex-direction: column; gap: var(--space-md); }

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-xs);
}

.form-input {
  width: 100%;
  display: block;
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
  appearance: none;
}

.form-input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184,74,42,0.1);
  background: var(--white);
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.73rem;
  color: var(--ink-mid);
  text-align: center;
  margin-top: var(--space-sm);
  line-height: 1.55;
}

.form-success {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.form-success-icon {
  width: 52px; height: 52px;
  background: rgba(0,110,55,0.1);
  color: #006633;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto var(--space-md);
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.form-success p { font-size: 0.9rem; color: var(--ink-mid); }

/* Aside cards */
.book-aside { display: flex; flex-direction: column; gap: var(--space-lg); }

.aside-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
}

.aside-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: var(--space-lg);
}

.contact-items { display: flex; flex-direction: column; gap: var(--space-md); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius);
  transition: background var(--trans);
}

.contact-item:hover { background: var(--cream-dark); }
.contact-item .contact-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.contact-item .contact-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-mid); display: block; margin-bottom: 2px; }
.contact-item .contact-value { font-size: 0.87rem; color: var(--terracotta); font-weight: 500; }
.contact-item .contact-value:hover { text-decoration: underline; }

/* Rules list en aside */
.rules-list { display: flex; flex-direction: column; gap: var(--space-sm); }

.rules-list .rule-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.85rem;
  color: var(--ink-mid);
  background: none;
  border-left: none;
  border-radius: 0;
}

.rules-list .rule-item:last-child { border-bottom: none; }
.rules-list .rule-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── RESPONSIVE páginas nuevas ────────────────────────────── */
@media (max-width: 1024px) {
  .book-layout { grid-template-columns: 1fr; }
  .book-aside  { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .score-summary { grid-template-columns: 1fr; }
  .score-hero   { border-right: none; border-bottom: 1px solid var(--cream-dark); padding-right: 0; padding-bottom: var(--space-xl); }
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + var(--space-2xl)) var(--space-lg) var(--space-xl); }
  .page-hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .score-summary { padding: var(--space-lg); }
  .score-number  { font-size: 4rem; }
  .score-bar-row { grid-template-columns: 100px 1fr 30px; gap: var(--space-sm); }
  .book-aside { grid-template-columns: 1fr; }
  .form-row   { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
