:root {
  --bg: #0D1B0E;
  --surface: #1A2E1C;
  --surface-2: #243824;
  --ink: #E8E0D4;
  --ink-soft: #B8B0A4;
  --accent: #C9A84C;
  --accent-2: #6B8F71;
  --line: rgba(201, 168, 76, 0.18);
  --line-strong: rgba(201, 168, 76, 0.35);
  --header-h: 72px;
  interpolate-size: allow-keywords;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html.no-js .reveal { opacity: 1; transform: none; }

body {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }

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

a { color: var(--accent); text-decoration: none; transition: color 240ms cubic-bezier(.4,0,.2,1); }
a:hover { color: var(--ink); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); letter-spacing: -0.012em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.eyebrow {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 8px; }

/* Container */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* ======= HEADER ======= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(13, 27, 14, 0.85);
  backdrop-filter: blur(2px);
  transition: background 240ms ease, box-shadow 240ms ease, padding 240ms ease;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(13, 27, 14, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.18);
  padding: 10px 0;
}
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.logo {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
  text-decoration: none;
  z-index: 1100;
}
.logo:hover { color: var(--ink); }

/* Nav desktop */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }

.nav-desktop .nav-cta {
  background: var(--accent);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 200ms;
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(3) { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile drawer */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms;
}
.mobile-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms, padding-left 240ms;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }
.mobile-drawer .nav-cta-mobile {
  margin-top: auto;
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 700;
  border-bottom: none;
  font-style: normal;
}
.mobile-drawer .nav-cta-mobile:hover { background: var(--ink); color: var(--bg); }
.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, border-color 240ms;
}
.drawer-close:hover {
  background: var(--surface-2);
  color: var(--accent);
  border-color: var(--accent);
}

/* ======= MAIN ======= */
main { padding-top: var(--header-h); }

/* ======= HERO ======= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-amazonia.jpg') center/cover no-repeat;
  transform: translateZ(0);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,27,14,0.6) 0%, rgba(13,27,14,0.85) 100%);
}

/* Mist animation - theme signature */
.hero-mist {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(107, 143, 113, 0.12) 25%,
    rgba(232, 224, 212, 0.06) 50%,
    rgba(107, 143, 113, 0.1) 75%,
    transparent 100%
  );
  animation: mistPulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mistPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-5%); }
  50% { opacity: 0.7; transform: translateX(5%); }
}
.hero-mist-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg,
    transparent 0%,
    rgba(201, 168, 76, 0.04) 30%,
    rgba(107, 143, 113, 0.08) 60%,
    transparent 100%
  );
  animation: mistPulse2 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mistPulse2 {
  0%, 100% { opacity: 0.2; transform: translateX(3%) translateY(-2%); }
  50% { opacity: 0.5; transform: translateX(-3%) translateY(2%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: clamp(2rem, 5vw, 4rem);
}
.hero-content .eyebrow { margin-bottom: 1.5rem; }
.hero-content h1 { margin-bottom: 1.5rem; }
.hero-content .hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-quote {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--accent);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-quote cite {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: normal;
  margin-top: 0.5rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  border-radius: 4px;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 12px 28px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 240ms, color 240ms, border-color 240ms, transform 180ms;
  text-decoration: none;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ======= SECTIONS ======= */
section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* Drop caps */
.drop-cap::first-letter {
  float: left;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 3.8rem;
  line-height: 0.8;
  color: var(--accent);
  margin-right: 12px;
  margin-top: 6px;
  font-weight: 700;
}

/* Section historia */
.historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (min-width: 768px) {
  .historia-grid { grid-template-columns: 1.2fr 1fr; }
}
.historia-text p {
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}
.historia-img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.historia-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.historia-img:hover img { transform: scale(1.04); }

/* Section expediciones */
.expedicion-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  margin-bottom: clamp(4rem, 6vw, 6rem);
}
@media (min-width: 768px) {
  .expedicion-block { grid-template-columns: 1fr 1fr; }
  .expedicion-block:nth-child(even) .expedicion-img { order: -1; }
}
.expedicion-img {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.expedicion-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.expedicion-img:hover img { transform: scale(1.04); }
.expedicion-text h3 { margin-bottom: 1rem; color: var(--accent); }
.expedicion-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.expedicion-meta {
  font-size: 0.85rem;
  color: var(--accent-2);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* Section lodge - horizontal gallery */
.lodge-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 2rem;
}
.lodge-gallery-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.lodge-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.lodge-gallery-item:hover img { transform: scale(1.04); }
.lodge-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(13,27,14,0.85));
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0;
  transition: opacity 360ms cubic-bezier(.4,0,.2,1);
}
.lodge-gallery-item:hover .lodge-gallery-caption { opacity: 1; }

/* Section reservar - packages */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}
.package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px -12px rgba(201, 168, 76, 0.15);
}
.package-card h4 { color: var(--accent); margin-bottom: 0.5rem; font-style: italic; }
.package-price {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 1rem;
  font-weight: 700;
}
.package-price span { font-size: 0.85rem; color: var(--ink-soft); font-weight: 400; }
.package-includes { list-style: none; margin-bottom: 1rem; }
.package-includes li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.package-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}
.package-excludes li::before { background: var(--line-strong); }
.package-disclaimer {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 3rem;
  text-align: center;
  font-style: italic;
}

/* ======= LIANA DIVIDERS ======= */
.liana-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  max-width: 300px;
}
.liana-divider path {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.5;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s cubic-bezier(.2,.7,.2,1);
}
.liana-divider.is-in path { stroke-dashoffset: 0; }

/* ======= NICHE ANIMATIONS ======= */
/* Firefly ambient */
.fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.firefly {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: fireflyGlow var(--duration, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes fireflyGlow {
  0%, 100% { opacity: 0; transform: translate(0, 0); }
  25% { opacity: 0.8; transform: translate(var(--dx, 20px), var(--dy, -30px)); }
  50% { opacity: 0.4; transform: translate(calc(var(--dx, 20px) * 1.5), calc(var(--dy, -30px) * 0.5)); }
  75% { opacity: 0.7; transform: translate(var(--dx2, -10px), var(--dy2, 15px)); }
}

/* Leaf float */
.floating-leaf {
  position: absolute;
  width: 20px; height: 20px;
  opacity: 0.15;
  animation: leafFloat var(--leaf-dur, 12s) ease-in-out infinite;
  animation-delay: var(--leaf-delay, 0s);
  pointer-events: none;
}
@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  25% { transform: translateY(-40px) rotate(15deg); opacity: 0.25; }
  50% { transform: translateY(-20px) rotate(-10deg); opacity: 0.2; }
  75% { transform: translateY(-60px) rotate(8deg); opacity: 0.18; }
}

/* Vine draw animation */
@keyframes vineDraw {
  from { stroke-dashoffset: 300; }
  to { stroke-dashoffset: 0; }
}

/* Water ripple on CTA active */
.btn-primary:active::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  animation: rippleFlash 400ms ease-out;
}
@keyframes rippleFlash {
  from { transform: scale(0.5); opacity: 1; }
  to { transform: scale(1.5); opacity: 0; }
}
.btn-primary { position: relative; overflow: hidden; }

/* Steam rise ambient */
.steam-container {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  pointer-events: none;
  overflow: hidden;
}
.steam-particle {
  position: absolute;
  bottom: -20px;
  width: 2px; height: 40px;
  background: linear-gradient(to top, transparent, rgba(232, 224, 212, 0.08));
  border-radius: 50%;
  animation: steamRise var(--steam-dur, 9s) ease-out infinite;
  animation-delay: var(--steam-delay, 0s);
}
@keyframes steamRise {
  0% { transform: translateY(0) scaleX(1); opacity: 0; }
  20% { opacity: 0.6; }
  100% { transform: translateY(-180px) scaleX(2.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mist, .hero-mist-2, .firefly, .floating-leaf, .steam-particle { animation: none !important; opacity: 0 !important; }
  .liana-divider path { stroke-dashoffset: 0 !important; transition: none !important; }
}

/* ======= REVEAL ======= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ======= COUNTER ANIMATION ======= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin: 3rem 0;
  text-align: center;
}
.stat-item .stat-number {
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--accent);
  font-weight: 700;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ======= TESTIMONIALS ======= */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px);
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), box-shadow 280ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px -8px rgba(201, 168, 76, 0.1);
}
.testimonial-text {
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.testimonial-author {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
}
.testimonial-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ======= PROCESS / TIMELINE ======= */
.process-timeline {
  position: relative;
  padding-left: 40px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line-strong);
}
.process-step {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 24px;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -34px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}
.process-step h4 { color: var(--accent); margin-bottom: 0.5rem; }
.process-step p { color: var(--ink-soft); font-size: 0.95rem; }
.process-step .time-marker {
  font-size: 0.8rem;
  color: var(--accent-2);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ======= FAQ ======= */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 clamp(18px, 3vw, 28px);
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 26px;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}
.faq-body p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.8; }

/* ======= FORM ======= */
.form-section { max-width: 640px; margin: 0 auto; }
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 700;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--ink);
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 0.95rem;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { cursor: pointer; }

.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.field-checkbox label { margin-bottom: 0; font-weight: 400; font-size: 0.85rem; color: var(--ink-soft); }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.form-status.is-success { display: block; background: rgba(107, 143, 113, 0.15); color: var(--accent-2); border: 1px solid var(--accent-2); }
.form-status.is-error { display: block; background: rgba(180, 60, 60, 0.1); color: #d4746a; border: 1px solid rgba(180, 60, 60, 0.3); }

/* ======= TRUST STRIP ======= */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 2rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.trust-badge svg { width: 14px; height: 14px; stroke: var(--accent); fill: none; }

/* ======= FOOTER ======= */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 5vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 1rem; }
.footer-col h4 { font-size: 1rem; color: var(--accent); margin-bottom: 1rem; font-style: normal; }
.footer-col a {
  display: block;
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 240ms, padding-left 240ms;
}
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }

/* ======= CONTACT CHANNELS ======= */
.contact-channels {
  display: grid;
  gap: 18px;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 16px;
  border-radius: 6px;
  transition: background 240ms cubic-bezier(.4,0,.2,1), transform 240ms;
}
.contact-channel:hover {
  background: var(--surface-2);
  transform: translateX(4px);
}
.contact-channel svg {
  width: 20px; height: 20px;
  stroke: var(--accent-2);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 240ms, transform 240ms;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-channel:hover svg { stroke: var(--accent); transform: scale(1.08); }
.contact-channel-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-channel-value {
  color: var(--ink);
  font-size: 0.95rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-channel-value a { color: var(--ink); }
.contact-channel-value a:hover { color: var(--accent); }

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 20px 24px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 48px -12px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
  font-style: normal;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner-actions button {
  flex: 1;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 4px;
  font-family: Georgia, 'Palatino Linotype', 'Book Antiqua', serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  transition: background 240ms, color 240ms, border-color 240ms;
}
.cookie-btn-accept { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.cookie-btn-accept:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cookie-btn-reject { background: transparent; color: var(--ink); }
.cookie-btn-reject:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }
.cookie-btn-settings { background: transparent; color: var(--ink-soft); }
.cookie-btn-settings:hover { background: var(--surface-2); color: var(--ink); border-color: var(--accent); }

/* ======= TABLES ======= */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }

table {
  width: 100%;
  border-collapse: collapse;
}
table th, table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
table th {
  background: var(--surface);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
table td { color: var(--ink-soft); }

/* ======= LEGAL PAGES ======= */
.legal-content { max-width: 780px; margin: 0 auto; }
.legal-content h2 { margin: 3rem 0 1.5rem; }
.legal-content h3 { margin: 2rem 0 1rem; color: var(--accent-2); }
.legal-content p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.legal-content ul, .legal-content ol { color: var(--ink-soft); padding-left: 24px; margin-bottom: 1.2rem; }
.legal-content li { margin-bottom: 0.5rem; }

/* ======= 404 ======= */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.page-404 h1 { font-size: clamp(4rem, 10vw, 8rem); color: var(--accent); margin-bottom: 1rem; }
.page-404 p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ======= RESPONSIVE ======= */
@media (max-width: 640px) {
  .packages-grid { gap: 16px; }
  .package-card { padding: 20px; }
  .stats-row { gap: 16px; }
  .expedicion-block { margin-bottom: 3rem; }
  .lodge-gallery { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip { gap: 8px; }
  .trust-badge { font-size: 0.75rem; padding: 4px 10px; }
}

@media (max-width: 480px) {
  .hero-content { padding: clamp(1.5rem, 4vw, 2rem); }
  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .process-timeline { padding-left: 30px; }
  .process-step { padding-left: 16px; }
  .contact-channel { padding: 10px 12px; }
}

/* Contact page grid */
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr !important; }
}

/* Print */
@media print {
  .site-header, .cookie-banner, .mobile-drawer, .mobile-drawer-backdrop, .nav-toggle { display: none !important; }
  main { padding-top: 0; }
  body { background: #fff; color: #111; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
