/* Villa Sele — paleta extraída de las fotos: verdes olivo #304800–#787800, tierra #675f3f, madera #5c3c22 */

:root {
  --green-deep: #2d4a1f;
  --green-primary: #4a6741;
  --green-accent: #5c7a3a;
  --green-light: #8faa6e;
  --green-muted: #eef3ea;
  --earth: #6b5f48;
  --wood: #5c3c22;
  --sand: #c4bda8;
  --white: #ffffff;
  --bg: #ffffff;
  --text: #222222;
  --text-secondary: #6a6a6a;
  --border: #e0e0e0;
  --border-strong: #dddddd;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 40px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --max-width: 1280px;
  --nav-height: 72px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-accent));
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.lang-switch a {
  color: var(--text-secondary);
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch a:hover {
  color: var(--green-deep);
}

.lang-switch a.is-active {
  color: var(--green-deep);
  background: var(--green-muted);
}

.lang-switch__sep {
  color: var(--border-strong);
  font-weight: 400;
}

@media (max-width: 480px) {
  .lang-switch {
    order: -1;
    width: 100%;
    justify-content: flex-end;
    margin-bottom: -4px;
  }
}

/* ── English page hero ── */

.en-hero {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .en-hero {
    grid-template-columns: 1.4fr 1fr;
    min-height: 320px;
  }
}

.en-hero__main img,
.en-hero__side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.en-hero__main {
  min-height: 220px;
}

.en-hero__side {
  display: grid;
  gap: 8px;
  grid-template-rows: 1fr 1fr;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-primary), var(--green-deep));
  color: white;
  box-shadow: 0 2px 8px rgba(45, 74, 31, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 4px 14px rgba(45, 74, 31, 0.35);
}

.btn--outline {
  border: 1px solid var(--border-strong);
  background: white;
  color: var(--text);
}

.btn--outline:hover {
  background: #fafafa;
}

.btn--whatsapp {
  background: #25d366;
  color: white;
}

.btn--whatsapp:hover {
  background: #1fb855;
}

.btn--block {
  width: 100%;
}

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

/* ── Layout ── */

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

@media (min-width: 1120px) {
  .page {
    padding-bottom: 80px;
  }
}

/* ── Photo grid (Airbnb-style mosaic) ── */

.photo-grid {
  display: none;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 420px;
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-grid__item {
  position: relative;
  border: none;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--green-muted);
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.photo-grid__item--main {
  grid-row: 1 / 3;
  grid-column: 1;
}

.photo-grid__item--more::after {
  content: "Ver todas las fotos";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 0.9375rem;
}

.photo-grid-mobile {
  display: block;
  margin-top: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

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

.photo-grid-mobile__badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: white;
  border: 1px solid var(--border-strong);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 744px) {
  .photo-grid {
    display: grid;
  }

  .photo-grid-mobile {
    display: none;
  }
}

/* ── Listing header ── */

.listing-header {
  margin-top: 28px;
}

.listing-header h1 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.listing-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.listing-meta a {
  text-decoration: underline;
  font-weight: 500;
  color: var(--text);
}

.listing-meta__dot::after {
  content: "·";
  margin: 0 6px;
  color: var(--text-secondary);
}

.listing-meta__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--text);
}

.listing-meta__star {
  color: var(--green-primary);
}

/* ── Two-column body ── */

.listing-body {
  display: grid;
  gap: 48px;
  margin-top: 32px;
}

@media (min-width: 1120px) {
  .listing-body {
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: start;
  }
}

.listing-main {
  min-width: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ── Host / intro card ── */

.host-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.host-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-muted);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.host-card h2 {
  margin: 0 0 6px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.host-card p {
  margin: 0;
  color: var(--text-secondary);
}

.highlights {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.highlight {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.highlight__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.highlight h3 {
  margin: 0 0 2px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.highlight p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.35;
}

/* ── Experience sections ── */

.section-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-kicker {
  display: block;
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.section-lead {
  margin: 0 0 24px;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 52ch;
  line-height: 1.45;
}

.text-emphasis {
  font-weight: 600;
  color: var(--text);
}

/* ── Key facts strip ── */

.key-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.key-fact {
  flex: 1 1 calc(50% - 10px);
  min-width: 140px;
  padding: 14px 16px;
  background: var(--green-muted);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-accent);
}

@media (min-width: 640px) {
  .key-fact {
    flex: 1 1 auto;
  }
}

.key-fact strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  margin-bottom: 2px;
}

.key-fact span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* ── Scan lists (bold label + short line) ── */

.scan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.scan-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.scan-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.scan-list__label {
  display: block;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 2px;
}

.scan-list__detail {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ── Callout boxes ── */

.callout {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.45;
}

.callout--alert {
  background: #fff8e6;
  border: 1px solid #f0d78c;
  color: #6b5a20;
}

.callout--alert strong {
  color: #4a3d10;
}

.callout--info {
  background: var(--green-muted);
  border-left: 4px solid var(--green-primary);
  color: var(--text-secondary);
}

.callout--info strong {
  color: var(--green-deep);
}

/* ── Experience one-liner ── */

.experience-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
  font-size: 0.9375rem;
}

.experience-card h3 {
  margin: 0 0 6px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Host intro compact ── */

.host-intro {
  margin-top: 8px;
}

.host-intro p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text);
  max-width: 58ch;
}

.host-intro .key-strip {
  margin-top: 18px;
}

.experience-block {
  margin-bottom: 48px;
}

.experience-block:last-child {
  margin-bottom: 0;
}

.experience-card {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .experience-card {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 32px;
  }

  .experience-card--reverse .experience-card__media {
    order: 2;
  }

  .experience-card--reverse .experience-card__content {
    order: 1;
  }
}

.experience-card__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}

.experience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--green-muted);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* ── Amenity chips ── */

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  background: white;
}

/* ── Minimal shelter section ── */

.shelter-compact {
  display: grid;
  gap: 20px;
  padding: 24px;
  background: var(--green-muted);
  border-radius: var(--radius-md);
}

.shelter-compact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 480px) {
  .shelter-compact__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.shelter-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-deep);
}

.shelter-stat span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.shelter-compact__image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 200px;
}

.shelter-compact__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ── Map ── */

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}

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

/* ── Rules ── */

.rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.rules-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.9375rem;
}

.rules-list li span:first-child {
  font-size: 1.125rem;
}

/* ── Booking card (sticky) ── */

.booking-card {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  background: white;
}

.booking-card__price {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.booking-card__price strong {
  font-size: 1.375rem;
  font-weight: 700;
}

.booking-card__note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.booking-card__actions {
  display: grid;
  gap: 10px;
}

.booking-card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.booking-card__divider::before,
.booking-card__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.booking-perks {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.booking-perk {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.booking-perk strong {
  color: var(--text);
  display: block;
  font-size: 0.875rem;
}

@media (min-width: 1120px) {
  .booking-card {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
  }
}

/* ── Mobile sticky bar ── */

.mobile-book-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.mobile-book-bar__text strong {
  display: block;
  font-size: 0.9375rem;
}

.mobile-book-bar__text span {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

@media (min-width: 1120px) {
  .mobile-book-bar {
    display: none;
  }
}

/* ── Footer ── */

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 100px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.site-footer strong {
  color: var(--text);
}

/* ── Lightbox ── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  flex-direction: column;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  color: white;
}

.lightbox__close {
  color: white;
  font-size: 1.75rem;
  line-height: 1;
  padding: 8px;
}

.lightbox__stage {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 0 24px;
  min-height: 0;
}

.lightbox__stage img {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}

.lightbox__nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1.25rem;
}

.lightbox__nav button:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 24px 20px;
  justify-content: center;
}

.lightbox__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0.5;
  border: 2px solid transparent;
  padding: 0;
}

.lightbox__thumb.is-active {
  opacity: 1;
  border-color: white;
}

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

/* ── Video embed ── */

.video-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

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

/* ── Adventure banner ── */

.adventure-banner {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-deep) 0%, #3d5c2e 100%);
  color: white;
}

.adventure-banner__label {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.8;
  margin-bottom: 8px;
}

.adventure-banner h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.adventure-banner__facts {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.adventure-banner__facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0.95;
}

.adventure-banner__facts li::before {
  content: "→";
  font-weight: 700;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Journey steps (infographic) ── */

.journey {
  padding: 28px;
  background: var(--green-muted);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 103, 65, 0.15);
}

.journey__steps {
  display: grid;
  gap: 0;
  margin-top: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .journey__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.journey-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 16px 0;
  position: relative;
}

@media (min-width: 768px) {
  .journey-step {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0;
  }
}

.journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-light), transparent);
}

@media (min-width: 768px) {
  .journey-step:not(:last-child)::after {
    left: auto;
    right: -8px;
    top: 28px;
    bottom: auto;
    width: 16px;
    height: 2px;
    background: linear-gradient(to right, var(--green-light), transparent);
  }
}

.journey-step__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--green-primary);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}

@media (min-width: 768px) {
  .journey-step__icon-wrap {
    margin: 0 auto 12px;
  }
}

.journey-step__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-primary);
  margin-bottom: 4px;
}

.journey-video-note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.875rem;
}

.journey-video-note a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: none;
}

.journey-video-note a:hover {
  text-decoration: underline;
}

.journey-step h3 {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}

.journey-step p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.journey-step__icon {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

/* ── Value / pricing philosophy ── */

.value-box {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: white;
}

.value-box--premium {
  border-color: var(--green-primary);
  background: linear-gradient(180deg, #fafcf8 0%, white 100%);
}

.value-pillars {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .value-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-pillar {
  padding: 20px;
  background: var(--green-muted);
  border-radius: var(--radius-sm);
  text-align: center;
}

.value-pillar__icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.value-pillar h3 {
  margin: 0 0 6px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}

.value-pillar p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.value-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: white;
  border-left: 4px solid var(--green-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.value-note strong {
  color: var(--green-deep);
}

.value-lead {
  margin: 16px 0 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── Profile / positioning ── */

.profile-compare {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .profile-compare {
    grid-template-columns: 1fr 1fr;
  }
}

.profile-compare__col {
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.profile-compare__col--not {
  background: #fafafa;
}

.profile-compare__col--yes {
  background: var(--green-muted);
  border-color: var(--green-light);
}

.profile-compare__col h3 {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-deep);
}

.profile-compare__col ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.profile-compare__col li + li {
  margin-top: 8px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.profile-tag {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--green-deep);
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ── Viajeros / aeropuerto / internacional ── */

.travelers-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .travelers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.travelers-card {
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--green-accent);
}

.travelers-card__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.travelers-card h3 {
  margin: 0 0 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-deep);
}

.travelers-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.travelers-card a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.intl-panel {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-deep) 0%, #3d5c2e 100%);
  color: white;
}

.intl-panel__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.intl-panel p {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  line-height: 1.5;
  opacity: 0.95;
}

.intl-panel__list {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.intl-panel__list li + li {
  margin-top: 6px;
}

.intl-panel a {
  color: #d4e8b8;
  font-weight: 600;
}

/* ── Capacity & pricing logic ── */

.capacity-model {
  margin-top: 24px;
  padding: 22px;
  background: var(--green-muted);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(143, 170, 110, 0.4);
}

.capacity-model__title {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--green-deep);
}

.capacity-model__grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .capacity-model__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.capacity-card {
  padding: 16px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-align: center;
}

.capacity-card--sweet {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 1px var(--green-light);
}

.capacity-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 4px;
}

.capacity-card span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-primary);
  margin-bottom: 8px;
}

.capacity-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pricing-split {
  margin-top: 24px;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.pricing-split h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
}

.pricing-split > p {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-bars {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.pricing-bar {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.pricing-bar__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-bar__track {
  height: 28px;
  background: var(--green-muted);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.pricing-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-accent), var(--green-primary));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: white;
  min-width: 48px;
}

.pricing-bar__fill--high { width: 92%; opacity: 0.85; }
.pricing-bar__fill--mid { width: 62%; }
.pricing-bar__fill--low { width: 42%; }

.pricing-bar--sweet .pricing-bar__fill {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

.pricing-split__cols {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .pricing-split__cols {
    grid-template-columns: 1fr 1fr;
  }
}

.pricing-split__box {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.pricing-split__box--few {
  background: #faf8f5;
  border: 1px solid var(--border);
}

.pricing-split__box--many {
  background: var(--green-muted);
  border: 1px solid var(--green-light);
}

.pricing-split__box strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-split__note {
  margin: 16px 0 0;
  padding: 12px 14px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  background: #fafafa;
  border-left: 3px solid var(--green-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.45;
}

/* ── Prep checklist ── */

.prep-grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .prep-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.prep-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fafafa;
}

.prep-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.prep-card h3 {
  margin: 0 0 4px;
  font-size: 0.875rem;
  font-weight: 700;
}

.prep-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ── Optional experience badge ── */

.experience-card__badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--earth);
  background: #f5f0e8;
  border-radius: var(--radius-pill);
}

/* ── Visual highlights with photos ── */

.highlights--visual {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 640px) {
  .highlights--visual {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  padding: 0;
}

.highlight-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card__overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: white;
}

.highlight-card__overlay h3 {
  margin: 0 0 2px;
  font-size: 1rem;
  font-weight: 700;
}

.highlight-card__overlay p {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.9;
}

/* ── Promo banners (graphics with text) ── */

.promo-banner {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
}

.promo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Nature mosaic ── */

.visual-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .visual-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
  }

  .visual-mosaic__item--wide {
    grid-column: span 2;
  }

  .visual-mosaic__item--tall {
    grid-row: span 2;
  }
}

.visual-mosaic__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  min-height: 140px;
}

.visual-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 140px;
}

@media (min-width: 768px) {
  .visual-mosaic__item img {
    min-height: 100%;
  }
}

/* ── Full gallery grid ── */

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 640px) {
  .gallery-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.gallery-wall__item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--green-muted);
}

.gallery-wall__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

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

/* ── Experience duo (side by side photos) ── */

.experience-duo {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .experience-duo {
    grid-template-columns: 1fr 1fr;
  }
}

.experience-duo__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: none;
  padding: 0;
  cursor: pointer;
}

.experience-duo__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prep-card__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--green-muted);
}

.prep-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-hero {
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  background: none;
}

.location-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, var(--green-muted) 0%, #d8e4d0 50%, var(--sand) 100%);
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  border: 1px dashed rgba(74, 103, 65, 0.35);
}

.media-placeholder__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.media-placeholder p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 28ch;
  line-height: 1.5;
}

.media-placeholder small {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--green-primary);
  font-weight: 600;
}

/* ── Page anchor nav ── */

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.page-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
}

.page-nav a:hover {
  text-decoration: underline;
}

/* ── FAQ ── */

.faq-list {
  margin: 0;
  display: grid;
  gap: 0;
}

.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item dt {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 6px;
  color: var(--text);
}

.faq-item dd {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.faq-item dd a {
  color: var(--green-primary);
  font-weight: 600;
}

/* ── Reviews ── */

.reviews-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  margin: 0;
  padding: 20px;
  background: var(--green-muted);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-accent);
}

.review-card p {
  margin: 0 0 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text);
}

.review-card cite {
  font-size: 0.75rem;
  font-style: normal;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ── Native video ── */

.subsection-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text);
}

.video-native {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  max-width: 100%;
}

.video-native:not(.video-native--portrait) {
  aspect-ratio: 16 / 9;
}

.video-native--portrait {
  width: min(100%, 400px);
  margin-inline: auto;
}

.video-native video {
  width: 100%;
  display: block;
  background: #111;
}

.video-native:not(.video-native--portrait) video {
  height: 100%;
  object-fit: contain;
}

.video-native--portrait video {
  height: auto;
  aspect-ratio: 9 / 16;
  max-height: min(75vh, 720px);
  object-fit: contain;
  margin-inline: auto;
}
