/* ============================================
   Cabañas en Cerro Azul — Estilos principales
   Estética: editorial-warm / hospitality
   ============================================ */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --cream: #f5f0e8;
  --cream-deep: #ebe3d3;
  --forest: #1f3a2e;
  --forest-soft: #2d4a3e;
  --terracotta: #c97b4a;
  --terracotta-deep: #b56638;
  --azul-ave: #1a3a52;
  --ink: #1f1f1f;
  --muted: #6b665e;
  --line: #d4cabd;
  --white: #ffffff;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;
  --space-9: 12rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 12px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

p { margin: 0; }

/* ---------- Subtle grain texture overlay ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  position: relative;
  z-index: 2;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ---------- Typography utilities ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--space-2);
  display: inline-block;
}

.eyebrow::before {
  content: "—";
  margin-right: 0.6em;
  color: var(--terracotta);
}

.display-1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.display-2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
}

.display-3 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
}

.italic {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--forest-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(31, 58, 46, 0.25);
}

.btn-accent {
  background: var(--terracotta);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--terracotta-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 123, 74, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-3) 0;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-2);
}

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 1.5px;
  background: var(--forest);
  transition: all 0.3s var(--ease);
}

.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 19px; }

.menu-toggle.active span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  top: 15px;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-7);
  margin-top: -85px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(31, 58, 46, 0.3) 0%,
    rgba(31, 58, 46, 0.1) 35%,
    rgba(31, 58, 46, 0.5) 75%,
    rgba(31, 31, 31, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding-top: 120px;
}

.hero-content .eyebrow {
  color: var(--cream);
  opacity: 0.85;
}

.hero-content .eyebrow::before {
  color: var(--cream);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: var(--space-3);
  max-width: 16ch;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.9;
  max-width: 48ch;
  margin-bottom: var(--space-4);
}

.hero-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* ---------- Section ---------- */
.section {
  padding: var(--space-7) 0;
  position: relative;
  z-index: 2;
}

.section-tight { padding: var(--space-6) 0; }

.section-header {
  margin-bottom: var(--space-6);
  max-width: 60ch;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------- Intro / About ---------- */
.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-7);
  align-items: start;
}

.intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.intro-text p + p {
  margin-top: var(--space-2);
}

/* ---------- Cabin cards ---------- */
.cabanas {
  background: var(--cream-deep);
}

.cabanas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.cabana-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.cabana-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(31, 58, 46, 0.12);
}

.cabana-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.cabana-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.cabana-card:hover .cabana-card-image img {
  transform: scale(1.04);
}

.cabana-card-badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: var(--cream);
  color: var(--forest);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.cabana-card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cabana-card-name {
  font-size: 1.75rem;
  margin-bottom: var(--space-1);
}

.cabana-card-capacity {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-3);
}

.cabana-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.cabana-card-features li {
  font-size: 0.9rem;
  color: var(--ink);
  padding-left: 1.2rem;
  position: relative;
}

.cabana-card-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.cabana-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.cabana-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest);
}

.cabana-card-price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.cabana-card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cabana-card-link::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.cabana-card-link:hover::after {
  transform: translateX(4px);
}

/* ---------- Features grid ---------- */
.features {
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4) var(--space-5);
  margin-top: var(--space-5);
}

.feature {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}

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

.feature-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.25rem;
  letter-spacing: 0;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Qué hacer teaser ---------- */
.qhacer {
  background: var(--forest);
  color: var(--cream);
}

.qhacer h2, .qhacer .eyebrow {
  color: var(--cream);
}

.qhacer .eyebrow {
  color: rgba(245, 240, 232, 0.7);
}

.qhacer .lead {
  color: rgba(245, 240, 232, 0.85);
}

.qhacer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.qhacer-card {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid rgba(245, 240, 232, 0.1);
  padding: var(--space-3);
  border-radius: var(--radius);
  transition: background 0.3s var(--ease);
}

.qhacer-card:hover {
  background: rgba(245, 240, 232, 0.1);
}

.qhacer-card-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--terracotta);
  font-style: italic;
  margin-bottom: var(--space-2);
}

.qhacer-card h3 {
  color: var(--cream);
  font-size: 1.35rem;
  margin-bottom: var(--space-1);
}

.qhacer-card p {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.8);
}

.qhacer-link {
  margin-top: var(--space-5);
  display: inline-block;
}

/* ---------- Aves / Birding section ---------- */
.aves {
  background: var(--cream);
  overflow: hidden;
}

.aves-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}

.aves-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  position: relative;
}

.aves-images img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.aves-images img:nth-child(1) {
  margin-top: var(--space-5);
}

.aves-stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--terracotta);
  line-height: 1;
  font-style: italic;
  margin-bottom: var(--space-2);
}

/* ---------- Final CTA ---------- */
.cta-final {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/sunset-hero.jpg') center/cover;
  opacity: 0.15;
  z-index: 0;
}

.cta-final > .container {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  color: var(--cream);
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-final p {
  color: rgba(245, 240, 232, 0.85);
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(245, 240, 232, 0.7);
  padding: var(--space-6) 0 var(--space-3);
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: var(--space-2);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 28ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--space-2);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  bottom: var(--space-3);
  right: var(--space-3);
  z-index: 50;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease);
  animation: pulse 2.5s infinite;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* ---------- Page-specific: cabin detail ---------- */
.page-hero {
  padding: var(--space-7) 0 var(--space-5);
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin-bottom: var(--space-2);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--space-3);
}

.breadcrumb a:hover { color: var(--forest); }
.breadcrumb-sep { margin: 0 0.5rem; opacity: 0.5; }

.cabin-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  aspect-ratio: 16 / 9;
}

.cabin-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.cabin-gallery img:first-child {
  grid-row: 1 / 3;
}

.cabin-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-6);
  align-items: start;
}

.cabin-meta {
  background: var(--cream-deep);
  padding: var(--space-4);
  border-radius: var(--radius);
  position: sticky;
  top: 100px;
}

.cabin-meta-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: var(--space-1);
  line-height: 1;
}

.cabin-meta-price small {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 400;
}

.cabin-meta-list {
  list-style: none;
  padding: 0;
  margin: var(--space-3) 0;
  border-top: 1px solid var(--line);
}

.cabin-meta-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
}

.cabin-meta-list .label {
  color: var(--muted);
}

.cabin-meta .btn {
  width: 100%;
  justify-content: center;
}

.cabin-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.cabin-section + .cabin-section {
  margin-top: var(--space-5);
}

.cabin-amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.cabin-amenities li {
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.cabin-amenities li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 600;
}

/* ---------- Page: Qué Hacer ---------- */
.actividades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.actividad {
  display: flex;
  flex-direction: column;
}

.actividad-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--terracotta);
  margin-bottom: var(--space-1);
}

.actividad h3 {
  font-size: 1.65rem;
  margin-bottom: var(--space-2);
}

.actividad p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Page: Cómo Llegar ---------- */
.llegar-steps {
  margin-top: var(--space-5);
  counter-reset: step;
}

.llegar-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--line);
  counter-increment: step;
}

.llegar-step:last-child { border-bottom: 1px solid var(--line); }

.llegar-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terracotta);
  line-height: 1;
}

.llegar-step h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-1);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

.llegar-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.map-embed {
  margin-top: var(--space-5);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

/* ---------- Page: Galería ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.gallery-grid figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-grid figure:nth-child(7n+1) { aspect-ratio: 1 / 1; }
.gallery-grid figure:nth-child(5n+3) { aspect-ratio: 3 / 4; }

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

/* ---------- Page: FAQ ---------- */
.faq-list {
  margin-top: var(--space-5);
  max-width: 720px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 var(--space-3) 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 60ch;
}

/* ---------- Page: Contacto ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-5);
}

.contact-method {
  padding: var(--space-4);
  background: var(--cream-deep);
  border-radius: var(--radius);
}

.contact-method h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.contact-method-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  display: inline-block;
  margin-top: var(--space-2);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Accessibility callout ---------- */
.callout {
  background: var(--cream-deep);
  border-left: 3px solid var(--terracotta);
  padding: var(--space-3);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--space-4) 0;
}

.callout-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.callout-title::before {
  content: "ℹ";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.85rem;
  font-style: normal;
}

.callout p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
}

.callout p + p { margin-top: 0.6rem; }

.callout-positive {
  border-left-color: var(--forest);
}

.callout-positive .callout-title::before {
  background: var(--forest);
  content: "✓";
}

/* ---------- Piscina showcase section ---------- */
.piscina-section {
  background: var(--cream);
  overflow: hidden;
}

.piscina-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.piscina-grid-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-2);
}

.piscina-main img,
.piscina-grid-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}

.piscina-main img { aspect-ratio: 4 / 5; }
.piscina-grid-images img { aspect-ratio: 5 / 4; }

/* ---------- Wide image with text overlay/caption ---------- */
.wide-image {
  margin: var(--space-5) 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.image-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: var(--space-1);
  font-style: italic;
}

/* ---------- Activity card with image ---------- */
.actividad-img {
  margin-bottom: var(--space-2);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.actividad-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

/* ---------- Owner / About card ---------- */
.about-owner {
  background: var(--cream-deep);
}

.owner-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-5);
  align-items: center;
}

.owner-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .menu-toggle { display: inline-block; }
  .nav-desktop {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-3);
    gap: var(--space-2);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav-desktop.open { transform: translateY(0); }
  .nav-cta { margin-left: 0; margin-top: var(--space-2); }

  .intro-grid,
  .cabanas-grid,
  .features-grid,
  .qhacer-grid,
  .aves-grid,
  .cabin-detail-grid,
  .contact-grid,
  .actividades-grid,
  .footer-grid,
  .piscina-grid,
  .owner-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .features-grid { gap: var(--space-3); }

  .cabin-meta {
    position: static;
  }

  .cabin-gallery {
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 4 / 3;
  }
  .cabin-gallery img:first-child { grid-row: auto; grid-column: 1 / 3; }

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

@media (max-width: 600px) {
  .section { padding: var(--space-6) 0; }
  .hero { min-height: 88vh; padding-bottom: var(--space-5); }
  .hero-content { padding-top: 100px; }
  .cabana-card-features { grid-template-columns: 1fr; }
  .cabin-amenities { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-1); text-align: center; }
}
