/* ============================================
   HOSTAL MI PAZ — Design System
   Colores: Brandbook 2026
   Tipografía: Nunito (títulos) + Inter (cuerpo)
   ============================================ */

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

:root {
  --teal:         #1B8B8A;
  --teal-dark:    #156e6e;
  --teal-light:   #D6EFEF;
  --terracota:    #E8502A;
  --terracota-dk: #c43e1e;
  --cream:        #FAF7F2;
  --near-black:   #2C2C2C;
  --white:        #FFFFFF;
  --gray-100:     #f0f0f0;
  --gray-200:     #e2e2e2;
  --gray-500:     #737373;

  --font-title: 'Nunito', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 2px 16px rgba(44,44,44,0.07);
  --shadow-lg: 0 8px 40px rgba(44,44,44,0.12);

  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-terracota {
  background: var(--terracota);
  color: var(--white);
  border-color: var(--terracota);
}
.btn-terracota:hover {
  background: var(--terracota-dk);
  border-color: var(--terracota-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,80,42,0.35);
}

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

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section        { padding: 88px 0; }
.section-cream  { background: var(--cream); }
.section-light  { background: var(--teal-light); }
.section-teal   { background: var(--teal); color: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--near-black);
}
.section-header p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}
.section-header-white h2 { color: var(--white); }
.section-header-white p  { color: rgba(255,255,255,0.78); }

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(44,44,44,0.09);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img {
  width: 120px;
  height: auto;
  display: block;
  padding: 10px 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.82; }

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--near-black);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--gray-500);
}
.lang-btn {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--gray-500);
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.lang-btn.active,
.lang-btn:hover { color: var(--teal); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 28px 24px 36px;
  z-index: 199;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.32s;
  pointer-events: none;
  box-shadow: 0 12px 32px rgba(44,44,44,0.1);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu ul a { font-size: 20px; font-weight: 700; font-family: var(--font-title); color: var(--near-black); }
.mobile-menu ul a:hover { color: var(--teal); }
.mobile-menu .btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-title);
  padding: 16px 24px;
  color: #fff;
  margin-top: 8px;
}
.mobile-menu .mobile-note {
  text-align: center;
  font-size: 12px;
  opacity: 0.45;
  margin-top: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,44,44,0.05)  0%,
    rgba(44,44,44,0.18)  35%,
    rgba(44,44,44,0.68)  72%,
    rgba(44,44,44,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
}
.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(38px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  opacity: 0.88;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-price { font-size: 15px; opacity: 0.75; }
.hero-price strong { font-size: 21px; font-weight: 700; opacity: 1; }

.hero-booking {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}
.hero-booking-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1 1 130px;
  min-width: 0;
}
.hero-booking-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-booking-field input,
.hero-booking-field select {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  padding: 10px 12px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s, background 0.2s;
}
.hero-booking-field input:focus,
.hero-booking-field select:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.22);
}
.hero-booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.65;
  cursor: pointer;
}
.hero-booking-field select option { background: var(--near-black); color: white; }
.hero-booking-btn { flex: 1 1 100%; white-space: nowrap; }
@media (min-width: 600px) {
  .hero-booking-btn { flex: 0 0 auto; align-self: flex-end; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 20px;
}
.trust-score {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 480px) {
  .trust-label { white-space: normal; max-width: 80px; }
  .trust-item  { padding: 0 10px; }
}
.trust-divider {
  width: 1px;
  height: 30px;
  background: var(--gray-200);
  flex-shrink: 0;
}

/* ============================================
   UBICACIÓN
   ============================================ */
.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.distance-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.distance-num {
  font-family: var(--font-title);
  font-size: 34px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.distance-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.4;
}
.location-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: var(--gray-500);
}

/* ============================================
   HABITACIONES
   ============================================ */
.rooms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}
.room-card {
  width: 100%;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.room-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.room-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-card:hover .room-img-wrap img { transform: scale(1.04); }

.room-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.room-badge-shared {
  background: rgba(44,44,44,0.72);
}

.room-info { padding: 20px 22px 22px; }

.room-mural {
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.room-name {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  color: var(--near-black);
  margin-bottom: 8px;
}
.room-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 18px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.room-price { font-size: 14px; color: var(--gray-500); }
.room-price strong { font-size: 20px; font-weight: 700; color: var(--near-black); }
.room-price span   { font-size: 13px; }

.rooms-cta { text-align: center; }
.rooms-cta p { font-size: 16px; color: var(--gray-500); margin-bottom: 16px; }

/* Placeholder para habitaciones sin foto */
.room-img-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(140deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
}
.room-img-placeholder svg { color: rgba(255,255,255,0.3); }

/* Callout seguridad */
.security-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.security-icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.security-text strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 2px; }
.security-text p { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

/* Condiciones de la casa */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.condition-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.condition-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.condition-icon.ok  { background: #e8f7f0; color: #1a9e5e; }
.condition-icon.no  { background: #fdecea; color: #d93025; }
.condition-text strong { font-size: 14px; font-weight: 600; display: block; margin-bottom: 2px; }
.condition-text p { font-size: 13px; color: var(--gray-500); line-height: 1.4; }
.conditions-link { text-align: center; }
.conditions-link a { color: var(--teal); font-weight: 600; font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }
.conditions-link a:hover { color: var(--teal-dark); }

@media (min-width: 768px) {
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .conditions-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   ANDREI Y ELENA
   ============================================ */
.team-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.team-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-text h2 {
  font-family: var(--font-title);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 20px;
  margin-top: 8px;
  line-height: 1.1;
}
.team-story {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
}
.team-quote {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  border-left: 3px solid var(--teal);
  padding-left: 18px;
  margin: 28px 0;
  font-style: normal;
  line-height: 1.4;
}
.team-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rating-pill {
  background: var(--teal-light);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.hostal-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hostal-amenity {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--cream);
  border: 1px solid var(--teal-light);
  color: var(--near-black);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}
.hostal-amenity svg { color: var(--teal); flex-shrink: 0; }

.common-areas-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 48px;
}
.common-areas-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}
.common-areas-caption {
  text-align: center;
  color: var(--gray-500);
  font-size: 13px;
  margin-top: 10px;
  font-style: italic;
}

/* ============================================
   POR QUÉ RESERVAR DIRECTO
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.benefit-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: background 0.2s;
}
.benefit-card:hover { background: rgba(255,255,255,0.16); }

.benefit-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--white);
}
.benefit-card h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.benefit-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}
.direct-cta { text-align: center; }

/* ============================================
   RESEÑAS
   ============================================ */
.review-meta {
  color: var(--teal) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  margin-top: -8px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.review-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--near-black);
  margin-bottom: 18px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.review-name   { font-weight: 600; font-size: 14px; }
.review-source { font-size: 12px; color: var(--gray-500); }

.reviews-platforms { text-align: center; color: var(--gray-500); font-size: 14px; }
.platform-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.platform-links a { color: var(--teal); font-weight: 600; transition: opacity 0.2s; }
.platform-links a:hover { opacity: 0.7; }

/* ============================================
   VALPARAÍSO
   ============================================ */
.valpo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.valpo-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.valpo-item:hover { transform: translateY(-3px); }

.valpo-icon-wrap {
  width: 42px; height: 42px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 14px;
}
.valpo-item h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--near-black);
}
.valpo-item p { font-size: 14px; color: var(--gray-500); line-height: 1.55; }

/* ============================================
   ESTACIONAMIENTO
   ============================================ */
.parking-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.parking-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.parking-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.parking-text h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 8px;
  line-height: 1.1;
}
.parking-text p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.72;
  margin-bottom: 14px;
}
.parking-price {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 15px;
  margin: 20px 0;
}
.parking-price strong { font-size: 20px; font-weight: 700; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--near-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-question svg   { flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-question     { color: var(--teal); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  padding: 0 24px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 15px; color: var(--gray-500); line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--near-black); color: var(--white); padding-top: 64px; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.footer-tagline { font-size: 14px; opacity: 0.6; margin-bottom: 4px; }
.footer-address { font-size: 13px; opacity: 0.4; }

.footer h4 {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  margin-bottom: 16px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  opacity: 0.72;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}
.footer-link:hover { opacity: 1; }

.footer-social { display: flex; flex-direction: column; }
.footer-note    { font-size: 12px; opacity: 0.45; margin-top: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p    { font-size: 13px; opacity: 0.35; }
.back-to-top        { font-size: 13px; opacity: 0.45; transition: opacity 0.2s; }
.back-to-top:hover  { opacity: 1; }

/* ============================================
   RESPONSIVE — TABLET (≥768px)
   ============================================ */
@media (min-width: 768px) {
  .distance-grid  { grid-template-columns: repeat(4, 1fr); }
  .room-card      { width: calc(50% - 12px); }
  .reviews-grid   { grid-template-columns: repeat(3, 1fr); }
  .valpo-grid     { grid-template-columns: repeat(3, 1fr); }
  .parking-container { grid-template-columns: 1fr 1fr; }
  .footer-inner   { grid-template-columns: repeat(2, 1fr); }

  .parking-img img { height: 100%; aspect-ratio: unset; }

  .trust-divider { display: block; }

  .team-img-wrap { max-width: 380px; }
  .common-areas-strip { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — DESKTOP (≥1024px)
   ============================================ */
@media (min-width: 1024px) {
  .nav-links   { display: flex; }
  .nav-actions { display: flex; }
  .hamburger   { display: none; }

  .room-card   { width: calc(33.333% - 16px); }

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

  .team-split {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
  .team-img-wrap {
    max-width: none;
    margin: 0;
    aspect-ratio: 4 / 5;
  }

  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
