/* Cabañas Don Julio I — warm, natural palette */
:root {
  --bg: #faf5ec;              /* crema cálida */
  --bg-2: #f3ead6;            /* crema profunda */
  --ink: #2a1e15;             /* marrón casi negro */
  --ink-soft: #54463a;
  --muted: #8a7865;
  --line: #d9c8ae;
  --card: #fffaf0;

  --terracotta: #a0432a;      /* terracotta principal (derivado del logo) */
  --terracotta-dark: #6c2d1c;
  --terracotta-soft: #c87556;
  --ochre: #c98a2b;            /* ocre dorado */
  --moss: #5c6b3a;             /* verde musgo */
  --moss-dark: #3c4628;

  --f-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-body: "Manrope", "Inter", system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius: 4px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(60, 40, 20, 0.08);
  --shadow-md: 0 12px 32px -8px rgba(60, 40, 20, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(60, 40, 20, 0.35);

  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(44px, 7vw, 88px); line-height: 1.02; font-weight: 400; }
h2 { font-size: clamp(32px, 4.4vw, 54px); line-height: 1.06; font-weight: 400; }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; font-weight: 500; }
.h-italic em { font-style: italic; font-variation-settings: "SOFT" 100; color: var(--terracotta); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
/* When nav is transparent (over hero video / dark sections), force light text + invert logo */
.nav:not(.scrolled) .nav__brand,
.nav:not(.scrolled) .nav__links a {
  color: #fffaf0;
}
.nav:not(.scrolled) .nav__brand .nav__name span {
  color: rgba(255, 250, 240, 0.75);
}
.nav:not(.scrolled) .nav__brand img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.nav:not(.scrolled) .nav__brand .nav__name b,
.nav:not(.scrolled) .nav__brand .nav__name span {
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.nav.scrolled {
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(108, 45, 28, 0.08);
  padding: 12px 0;
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.nav__brand img { height: 96px; width: auto; transition: filter 0.3s, height 0.3s; }
.nav.scrolled .nav__brand img { height: 52px; }
@media (max-width: 720px) {
  .nav__brand img { height: 72px; }
  .nav.scrolled .nav__brand img { height: 44px; }
}
.nav__brand .nav__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand .nav__name b {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav__brand .nav__name span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav__links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  font-family: var(--f-body);
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--terracotta);
  color: #fffaf0;
}
.btn--primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--light {
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
  backdrop-filter: blur(10px);
}
.btn--light:hover {
  background: #fff;
}
.btn__arrow {
  transition: transform 0.2s;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 20, 10, 0.35) 0%, rgba(30, 20, 10, 0.15) 35%, rgba(30, 20, 10, 0.6) 100%),
    linear-gradient(100deg, rgba(108, 45, 28, 0.22) 0%, transparent 60%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 860px;
}
.hero__content .eyebrow { color: #f3ead6; }
.hero__content .eyebrow::before { background: #f3ead6; }
.hero h1 {
  color: #fffaf0;
  margin: 20px 0 28px;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero h1 em {
  font-style: italic;
  color: #f7c987;
  font-weight: 400;
}
.hero__desc {
  font-size: 19px;
  color: rgba(255, 250, 240, 0.92);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__meta {
  position: absolute;
  right: 28px;
  bottom: 40px;
  z-index: 2;
  color: #fffaf0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__meta .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #7fb96b; margin-right: 6px; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  color: #fffaf0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}
.hero__scroll .line {
  width: 1px;
  height: 36px;
  background: #fffaf0;
  animation: scroll-line 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__sound {
  position: absolute;
  left: 28px;
  bottom: 40px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 250, 240, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 250, 240, 0.3);
  color: #fffaf0;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.hero__sound:hover { background: rgba(255, 250, 240, 0.25); }

/* --- SECTIONS --- */
section { padding: 110px 0; position: relative; }
.section-head { max-width: 740px; margin-bottom: 64px; }
.section-head h2 { margin-top: 16px; }
.section-head p { color: var(--ink-soft); font-size: 18px; margin-top: 20px; max-width: 620px; }

/* Intro / welcome */
.welcome {
  background: var(--bg);
}
.welcome__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome__text h2 { margin-top: 20px; }
.welcome__text p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 24px;
}
.welcome__text p.lead {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.4;
  font-weight: 300;
  color: var(--ink);
  font-style: italic;
}
.welcome__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.welcome__stat .num {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
}
.welcome__stat .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.welcome__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.welcome__photo img { width: 100%; height: 100%; object-fit: cover; }
.welcome__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(42, 30, 21, 0.35));
}
.welcome__photo .tag {
  position: absolute;
  bottom: 22px; left: 22px;
  color: #fffaf0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.welcome__sign {
  position: absolute;
  top: -40px;
  right: -20px;
  background: var(--card);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  max-width: 220px;
  line-height: 1.4;
  border-left: 3px solid var(--terracotta);
}
.welcome__sign .by {
  display: block;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Cabins */
.cabins { background: var(--bg-2); }
.cabins__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
  flex-wrap: wrap;
}
.cabins__tab {
  background: none;
  border: none;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cabins__tab .idx {
  font-family: var(--f-mono);
  font-size: 10px;
  opacity: 0.7;
}
.cabins__tab:hover { color: var(--ink); }
.cabins__tab.active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.cabin-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.cabin-panel__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow-md);
}
.cabin-panel__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: opacity 0.5s;
}
.cabin-panel__badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(42, 30, 21, 0.8);
  backdrop-filter: blur(10px);
  color: #fffaf0;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.cabin-panel__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cabin-panel__info h3 {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 10px;
}
.cabin-panel__info h3 em { color: var(--terracotta); font-style: italic; }
.cabin-panel__sub {
  color: var(--muted);
  font-size: 15px;
  font-family: var(--f-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 18px;
}
.cabin-panel__desc {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 24px;
}
.cabin-panel__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.cabin-panel__features li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.cabin-panel__features li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 8px;
  flex-shrink: 0;
}
.cabin-panel__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
.cabin-panel__price .amt {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.cabin-panel__price .per {
  color: var(--muted);
  font-size: 14px;
}
.cabin-panel__price .cur {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.cabin-panel__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Experiences / amenities */
.experiences { background: var(--bg); }
.experiences__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}
.xp {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.xp:hover { transform: translateY(-4px); }
.xp img, .xp video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.xp:hover img, .xp:hover video {
  transform: scale(1.05);
}
.xp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(24, 16, 8, 0.78));
}
.xp__body {
  position: absolute;
  left: 22px; right: 22px; bottom: 20px;
  color: #fffaf0;
  z-index: 2;
}
.xp__body h4 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 6px;
}
.xp__body p {
  font-size: 13px;
  margin: 0;
  opacity: 0.85;
}
.xp__tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(255, 250, 240, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 999px;
  color: #fffaf0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
/* 12-col layout cells */
.xp--1 { grid-column: span 7; grid-row: span 2; }
.xp--2 { grid-column: span 5; grid-row: span 1; }
.xp--3 { grid-column: span 5; grid-row: span 1; }
.xp--4 { grid-column: span 4; grid-row: span 2; }
.xp--5 { grid-column: span 4; grid-row: span 2; }
.xp--6 { grid-column: span 4; grid-row: span 2; }

/* Arroyo video section — feature panel */
.stream {
  background: linear-gradient(165deg, #2f3821 0%, #3c4628 55%, #4a5432 100%);
  color: #f3ead6;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.stream::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 10%, rgba(201, 138, 43, 0.22), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(127, 185, 107, 0.12), transparent 60%);
  pointer-events: none;
}
.stream::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.stream__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
  position: relative;
}
.stream__text .eyebrow { color: #e2c58b; }
.stream__text .eyebrow::before { background: #e2c58b; }
.stream__text h2 { color: #faf5ec; margin: 20px 0 28px; font-weight: 300; font-size: clamp(34px, 4.8vw, 62px); line-height: 1.02; }
.stream__text h2 em { font-style: italic; color: #e2c58b; font-weight: 400; }
.stream__text p {
  color: rgba(243, 234, 214, 0.82);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.stream__stats {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 14px 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(243, 234, 214, 0.18);
}
.stream__stat { display: flex; flex-direction: column; gap: 6px; }
.stream__stat .num {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  color: #e2c58b;
  line-height: 1;
  font-style: italic;
}
.stream__stat .label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 214, 0.55);
}
.stream__videos {
  position: relative;
  padding: 20px 40px 40px 20px;
}
.stream__videos::before {
  content: "";
  position: absolute;
  top: 0; right: 20px;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, #e2c58b);
}
.stream__videos::after {
  content: "01";
  position: absolute;
  top: -4px;
  right: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #e2c58b;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.stream__main {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(226, 197, 139, 0.15);
  position: relative;
  background: #000;
}
.stream__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 28, 15, 0.35));
  pointer-events: none;
}
.stream__main .live {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: #fffaf0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.stream__main .live .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #b6d99a;
  animation: pulse 2s infinite;
}
.stream__main video { width: 100%; height: 100%; object-fit: cover; }
.stream__pip {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.6);
  border: 8px solid #3c4628;
  background: #000;
  transform: rotate(2deg);
  transition: transform 0.4s;
}
.stream__pip:hover { transform: rotate(0deg) scale(1.02); }
.stream__pip::before {
  content: "";
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e2c58b;
  box-shadow: 0 0 0 3px rgba(226, 197, 139, 0.2);
}
.stream__pip video { width: 100%; height: 100%; object-fit: cover; }
.stream__video-pick {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.stream__video-pick button {
  flex: 1;
  padding: 12px 14px;
  background: rgba(243, 234, 214, 0.08);
  border: 1px solid rgba(243, 234, 214, 0.2);
  color: #f3ead6;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.stream__video-pick button:hover { background: rgba(243, 234, 214, 0.15); }
.stream__video-pick button.active {
  background: var(--ochre);
  color: var(--moss-dark);
  border-color: var(--ochre);
}

/* Gallery */
.gallery { background: var(--bg-2); }
.gallery__grid {
  columns: 3;
  column-gap: 16px;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}
.gallery__item:hover img { transform: scale(1.03); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 12, 6, 0.94);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255, 250, 240, 0.12);
  border: 1px solid rgba(255, 250, 240, 0.25);
  color: #fffaf0;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255, 250, 240, 0.25); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 250, 240, 0.12);
  border: 1px solid rgba(255, 250, 240, 0.25);
  color: #fffaf0;
  width: 54px; height: 54px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.lightbox__nav:hover { background: rgba(255, 250, 240, 0.25); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* Booking */
.booking {
  background: var(--bg);
  position: relative;
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking__text h2 { margin-top: 20px; }
.booking__text p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 20px;
}
.booking__highlights {
  margin-top: 36px;
  padding: 24px;
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  display: grid;
  gap: 16px;
}
.booking__highlights .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.booking__highlights .item .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 120px;
  padding-top: 2px;
}
.booking__highlights .item .v {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.booking__form {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.booking__form h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 4px;
}
.booking__form .sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--terracotta);
}
.field textarea { resize: vertical; min-height: 80px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.summary {
  padding: 18px 0;
  margin: 8px 0 18px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.summary__label { color: var(--muted); font-size: 13px; font-family: var(--f-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.summary__total {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--terracotta);
  font-weight: 400;
}
.summary__total .cur { font-size: 13px; color: var(--muted); margin-left: 4px; font-family: var(--f-mono); }
.summary__nights {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--f-mono);
}

.booking__submit {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 120%);
  background: var(--ink);
  color: var(--bg);
  padding: 16px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 14px;
  z-index: 110;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  display: flex; gap: 12px; align-items: center;
  max-width: 90vw;
}
.toast.show { transform: translate(-50%, 0); }
.toast .dot { width: 8px; height: 8px; background: #7fb96b; border-radius: 50%; }

/* FAQ */
.faq { background: var(--bg-2); }
.faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; }
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--terracotta); }
.faq__q .plus {
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--terracotta);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq__item.open .faq__q .plus { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__a p {
  padding: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 680px;
}

/* Location */
.location {
  background: var(--moss-dark);
  color: #f3ead6;
  padding: 110px 0;
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location__text .eyebrow { color: #e2c58b; }
.location__text .eyebrow::before { background: #e2c58b; }
.location__text h2 { color: #faf5ec; margin: 20px 0 24px; font-weight: 300; }
.location__text h2 em { font-style: italic; color: #e2c58b; }
.location__text p { color: rgba(243, 234, 214, 0.82); font-size: 18px; max-width: 520px; margin-bottom: 28px; }
.location__facts {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(243, 234, 214, 0.2);
}
.location__fact {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  font-size: 15px;
  padding: 8px 0;
}
.location__fact .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(243, 234, 214, 0.6);
  padding-top: 4px;
}
.location__map {
  aspect-ratio: 1/1.15;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #1f2717;
  border: 1px solid rgba(243, 234, 214, 0.15);
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(243, 234, 214, 0.78);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
.footer__brand img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
  height: 100px;
  margin-bottom: 16px;
}
.footer__brand h4 {
  color: #faf5ec;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}
.footer__brand p { font-size: 14px; max-width: 300px; line-height: 1.6; }
.footer__col h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 234, 214, 0.5);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col ul a, .footer__col ul li { font-size: 14px; color: rgba(243, 234, 214, 0.85); transition: color 0.2s; }
.footer__col ul a:hover { color: #e2c58b; }
.footer__bottom {
  border-top: 1px solid rgba(243, 234, 214, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(243, 234, 214, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* Responsive */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .welcome__grid, .stream__grid, .booking__grid, .location__grid, .faq__grid { grid-template-columns: 1fr; gap: 48px; }
  .cabin-panel { grid-template-columns: 1fr; gap: 32px; }
  .cabin-panel__media { min-height: 380px; }
  .experiences__grid { grid-template-columns: repeat(2, 1fr); }
  .xp--1, .xp--2, .xp--3, .xp--4, .xp--5, .xp--6 { grid-column: span 2; grid-row: span 1; }
  .gallery__grid { columns: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__meta { display: none; }
  .stream__pip { right: 10px; bottom: -20px; width: 45%; }
  .welcome__sign { right: 12px; top: -24px; }
}
@media (max-width: 620px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .gallery__grid { columns: 1; }
  .row2 { grid-template-columns: 1fr; }
  .location__fact { grid-template-columns: 100px 1fr; }
  .welcome__stats { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; margin-top: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__scroll { display: none; }
  .welcome__sign { display: none; }
  .cabin-panel__features { grid-template-columns: 1fr; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  color: #f3ead6;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(243,234,214,0.08);
  border-bottom: 1px solid rgba(243,234,214,0.08);
}
.ticker__track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 45s linear infinite;
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,234,214,0.85);
}
.ticker__dot { color: var(--ochre); font-size: 8px; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SEASONS
   ============================================================ */
.seasons { background: var(--bg); }
.seasons__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.season-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.season-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--season-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.season-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.season-card:hover::before { transform: scaleX(1); }
.season-card__icon {
  font-size: 28px;
  color: var(--season-color);
  margin-bottom: 20px;
  line-height: 1;
}
.season-card__months {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.season-card__name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 12px;
  font-style: italic;
  color: var(--season-color);
}
.season-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .seasons__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .seasons__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px -6px rgba(37, 211, 102, 0.55);
  z-index: 60;
  display: grid; place-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waFloat 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 32px -6px rgba(37, 211, 102, 0.7); }
.wa-float--open { background: var(--ink); animation: none; }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.wa-panel {
  position: fixed;
  right: 28px;
  bottom: 100px;
  width: 340px;
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  z-index: 60;
  animation: waPanel 0.25s cubic-bezier(0.2, 0.9, 0.2, 1);
}
@keyframes waPanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.wa-panel__head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff;
}
.wa-panel__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 500;
  display: grid; place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.wa-panel__head strong { display: block; font-size: 14px; }
.wa-panel__head span { font-size: 11px; opacity: 0.9; display: inline-flex; align-items: center; gap: 6px; }
.wa-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #b6ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.wa-panel__close {
  margin-left: auto;
  background: none; border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.8;
  line-height: 1;
}
.wa-panel__body { padding: 20px; }
.wa-panel__body p {
  background: var(--bg);
  padding: 12px 16px;
  border-radius: 14px 14px 14px 4px;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  line-height: 1.5;
}
.wa-panel__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px 20px;
  padding: 14px 18px;
  background: #25d366;
  color: #fff !important;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.wa-panel__cta:hover { background: #1ea952; }

@media (max-width: 520px) {
  .wa-float { bottom: 20px; right: 20px; }
  .wa-panel { right: 16px; bottom: 88px; width: calc(100vw - 32px); }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================
   QUINCHO LAS TACUARAS
   ========================================================== */
.quincho {
  padding: 120px 0;
  background: var(--bg-2);
  position: relative;
}
.quincho__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quincho__text h2 {
  margin-top: 16px;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-family: var(--f-display);
  color: var(--ink);
}
.quincho__text .lead {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
}
.quincho__text p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.quincho__features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
}
.quincho__feat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(168, 68, 43, 0.12);
  border-radius: 8px;
}
.quincho__feat .k {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.quincho__feat .v {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.quincho__photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(42, 30, 21, 0.18);
  aspect-ratio: 4 / 5;
}
.quincho__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quincho__photo .tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(42, 30, 21, 0.85);
  color: #faf5ec;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .quincho { padding: 80px 0; }
  .quincho__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quincho__features { grid-template-columns: 1fr; }
}

