/* ============================================
   VARIABLES Y RESET
   ============================================ */
:root {
  --color-bg: #fffdf8;
  --color-text: #2c2418;
  --color-text-light: #6b5e4f;
  --color-primary: #3C6373;
  --color-primary-dark: #2d4e5c;
  --color-primary-light: #4d7a8c;
  --color-accent: #F2B705;
  --color-accent-light: #F2CB05;
  --color-accent-hover: #d9a504;
  --color-warm: #A65D03;
  --color-warm-light: #c47a20;
  --color-white: #ffffff;
  --color-cream: #F2DA91;
  --color-cream-light: #faf0d4;
  --color-dark: #1a1a1a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   PLACEHOLDERS (para mockup sin imágenes)
   ============================================ */
.img-placeholder {
  background: linear-gradient(135deg, #e8d5a3 0%, #b8cdd6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--color-text-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(0,0,0,0.1);
  border-radius: inherit;
  pointer-events: none;
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.7);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--color-white);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
}

.btn-small:hover {
  background: var(--color-primary-dark);
}

.btn-nav {
  padding: 10px 24px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  padding: 14px 40px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar .logo img {
  height: 56px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}

.navbar.scrolled .logo img {
  filter: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--color-text);
}

.navbar.scrolled .btn-nav {
  background: var(--color-accent);
  color: var(--color-dark);
}

.navbar:not(.scrolled) .btn-nav {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.navbar:not(.scrolled) .logo,
.navbar:not(.scrolled) .nav-links a {
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

.navbar.scrolled .menu-toggle span {
  background: var(--color-text);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero.jpg') center center / cover no-repeat;
  background-color: #2d4e5c;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 36px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================
   SECCIONES COMUNES
   ============================================ */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-warm);
  margin-bottom: 12px;
}

.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: var(--color-text);
}

/* ============================================
   BIENVENIDA
   ============================================ */
.welcome {
  padding: 120px 0;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.welcome-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 20px;
}

.welcome-text p {
  color: var(--color-text-light);
  margin-bottom: 36px;
}

.welcome-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.welcome-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.welcome-features strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.welcome-features span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.welcome-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.welcome-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.welcome-photo--large {
  grid-column: 1 / -1;
}

.welcome-photo--large img {
  max-height: 320px;
}

.welcome-photo--small img {
  height: 200px;
}

/* ============================================
   HOUSE SLIDER (home intro)
   ============================================ */
.house-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8e0cc;
}

.house-slider-viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.house-slider-viewport:active {
  cursor: grabbing;
}

.house-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.house-slider-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.house-slider-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Vertical photos variant */
.house-slider--vertical .house-slider-slide img {
  aspect-ratio: 3 / 4;
  max-height: 520px;
}

.house-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  opacity: 0;
}

.house-slider:hover .house-slider-arrow {
  opacity: 1;
}

.house-slider-arrow:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.08);
}

.house-slider-prev { left: 12px; }
.house-slider-next { right: 12px; }

.house-slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.house-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.house-dot.active {
  background: var(--color-white);
  transform: scale(1.15);
}

.house-dot:hover {
  background: rgba(255,255,255,0.6);
}

/* ============================================
   LA CASA — Alquiler completo
   ============================================ */
.house {
  padding: 100px 0;
  background: var(--color-cream-light);
}

.house-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.house-intro-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.house-intro-text p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.house-stats {
  display: flex;
  gap: 32px;
}

.house-stat {
  text-align: center;
}

.house-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.house-stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  margin-top: 4px;
}

.house-rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.house-room-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.house-room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.house-room-card .img-placeholder {
  border-radius: 0;
  min-height: 180px;
}

.house-room-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
}

.house-room-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.house-room-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.house-room-subtitle {
  font-size: 0.78rem !important;
  color: var(--color-warm) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px !important;
}

.house-room-info p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.house-room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.house-room-tags span {
  padding: 4px 12px;
  background: var(--color-cream-light);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.btn-view-room {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-view-room:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-view-room svg {
  transition: var(--transition);
}

.btn-view-room:hover svg {
  transform: translate(1px, -1px);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-image {
  transform: scale(1);
}

.lightbox-caption {
  color: var(--color-white);
  font-size: 0.95rem;
  text-align: center;
  max-width: 640px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.house-cta .btn {
  margin: 0 8px;
}

/* ============================================
   EXTERIOR
   ============================================ */
.exterior {
  padding: 100px 0;
}

.exterior-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}

.exterior-hero .img-placeholder {
  min-height: 400px;
  border-radius: 0;
}

.exterior-hero > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.exterior-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 48px;
}

.exterior-hero-text {
  color: var(--color-white);
  max-width: 600px;
}

.exterior-hero-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.exterior-hero-text p {
  font-size: 1rem;
  opacity: 0.85;
}

.exterior-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* Exterior gallery — 2 landscape + 3 vertical */
.exterior-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.ext-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.ext-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.ext-photo--wide {
  grid-column: span 3;
  aspect-ratio: 16 / 10;
}

.ext-photo--tall {
  grid-column: span 2;
  aspect-ratio: 3 / 4;
}

.ext-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ext-photo figcaption strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.ext-photo figcaption span {
  font-size: 0.82rem;
  opacity: 0.85;
}

.exterior-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e8e0cc;
  transition: var(--transition);
}

.exterior-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.exterior-card .img-placeholder {
  height: 200px;
  border-radius: 0;
}

.exterior-card-body {
  padding: 28px;
}

.exterior-card-body h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.exterior-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Banner cielo nocturno */
.night-sky-banner {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  color: var(--color-white);
}

.night-sky-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.night-sky-banner p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}

.night-sky-banner .btn-primary {
  white-space: nowrap;
}

/* ============================================
   ENTORNO
   ============================================ */
.surroundings {
  padding: 100px 0;
  background: var(--color-cream-light);
}

.surr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.surr-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.surr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.surr-card .img-placeholder {
  height: 260px;
  border-radius: 0;
}

.surr-card > img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.surr-card-body {
  padding: 32px;
}

.surr-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  background: var(--color-warm);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.surr-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.surr-card-body p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.surr-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.surr-highlights span {
  padding: 6px 14px;
  border: 1px solid #e0dbd2;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.surr-activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.surr-activity {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid #e8e0cc;
  transition: var(--transition);
}

.surr-activity:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.surr-activity-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.surr-activity h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.surr-activity p {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

/* ============================================
   EXPERIENCIAS
   ============================================ */
.experiences {
  padding: 100px 0;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.exp-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--color-white);
  border: 1px solid #e8e0cc;
  transition: var(--transition);
}

.exp-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.exp-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.exp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.exp-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   GALERÍA
   ============================================ */
.gallery {
  padding: 100px 0;
  background: var(--color-cream-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gi-1 {
  grid-column: span 2;
  grid-row: span 2;
}

/* ============================================
   RESEÑAS
   ============================================ */
.reviews {
  padding: 100px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: var(--color-white);
  border: 1px solid #e8e0cc;
  border-radius: var(--radius);
  padding: 36px;
}

.stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 20px;
}

.review-card footer {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   CTA RESERVA
   ============================================ */
.cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #2d4e5c, #3C6373);
  color: var(--color-white);
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.cta > .container > p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.cta-content > p {
  opacity: 0.85;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.booking-form {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.booking-form label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.booking-form input,
.booking-form select {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-width: 180px;
}

.booking-form input::placeholder { color: rgba(255,255,255,0.5); }
.booking-form select option { color: var(--color-text); background: var(--color-white); }

.booking-form .btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
}

.booking-form .btn-primary:hover {
  background: var(--color-accent-hover);
}

/* ============================================
   CONTACTO
   ============================================ */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-details li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.contact-details strong {
  color: var(--color-text);
}

.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.85rem;
  border: 2px dashed rgba(0,0,0,0.1);
}

.map-embed {
  width: 100%;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 8px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.maps-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: var(--color-primary) !important;
  font-weight: 500;
  margin-top: 4px;
  transition: var(--transition);
}

.maps-link:hover {
  color: var(--color-primary-dark) !important;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(60,99,115,0.1);
}

.contact-form .btn-primary {
  align-self: flex-start;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer .logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-legal-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  cursor: default;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
}

.footer-bottom {
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .house-rooms { grid-template-columns: 1fr; }
  .house-room-card { grid-template-columns: 180px 1fr; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .exterior-grid { grid-template-columns: repeat(2, 1fr); }
  .exterior-gallery { grid-template-columns: repeat(2, 1fr); }
  .ext-photo--wide { grid-column: span 2; }
  .ext-photo--tall { grid-column: span 2; aspect-ratio: 4 / 3; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .surr-activities { grid-template-columns: repeat(2, 1fr); }
  .night-sky-banner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--color-white) !important; font-size: 1.2rem; }
  .btn-nav { display: none; }
  .menu-toggle { display: flex; z-index: 1001; }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .welcome-grid { grid-template-columns: 1fr; gap: 48px; }
  .welcome-photos { order: -1; }
  .welcome-photo--large img { max-height: 260px; }
  .welcome-photo--small img { height: 160px; }
  .house-intro { grid-template-columns: 1fr; }
  .house-slider-arrow { opacity: 1; width: 38px; height: 38px; }
  .house-room-card { grid-template-columns: 1fr; }
  .house-room-card .img-placeholder { min-height: 200px; }
  .house-stats { justify-content: center; }
  .exterior-grid { grid-template-columns: 1fr; }
  .exterior-gallery { grid-template-columns: 1fr; }
  .ext-photo--wide, .ext-photo--tall { grid-column: span 1; aspect-ratio: 4 / 3; }
  .exterior-hero-overlay { padding: 28px; }
  .surr-grid { grid-template-columns: 1fr; }
  .surr-activities { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gi-1 { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-form { flex-direction: column; align-items: stretch; }
  .booking-form input, .booking-form select { min-width: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .night-sky-banner { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gi-1 { grid-column: span 1; grid-row: span 1; }
  .house-stats { flex-wrap: wrap; gap: 20px; }
}
