:root {
  --cream: #ffedd4;
  --cream-2: #f4d9b0;
  --guindo: #4a1c1c;
  --guindo-deep: #2f1010;
  --ink: #0a0a0a;
  --sand: #e8d5b7;
  --gold: #c4a574;
  --line: #2c2c2c;
  --soft: #e8e5e0;
  --zinen: #e0dacb;
  --white: #fffaf3;
  --shadow: 0 18px 50px rgba(74, 28, 28, 0.18);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.container { width: min(1120px, calc(100% - 2.4rem)); margin-inline: auto; }
.section { padding: 5.5rem 0; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.kicker {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

/* NAV */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  background: rgba(36, 14, 14, 0.97);
  border-bottom: 1px solid rgba(255, 237, 212, 0.14);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}
.nav-brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-brand img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  background: var(--cream);
}
.nav-links { display: flex; gap: 1.15rem; align-items: center; flex-wrap: wrap; }
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a.is-active {
  border-bottom-color: var(--cream);
}
.nav-actions { display: flex; gap: 0.6rem; align-items: center; }
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: rgba(0,0,0,.35);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}
.nav .btn-cream { background: var(--cream); color: var(--guindo); }
.btn-guindo { background: var(--guindo); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--guindo); }
.cart-btn { position: relative; width: 46px; height: 46px; padding: 0; display: grid; place-items: center; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--cream); color: var(--guindo);
  min-width: 18px; height: 18px; border-radius: 99px;
  font-size: 0.65rem; display: grid; place-items: center; font-weight: 700;
}
.lang-wrap { position: relative; }
.lang-toggle {
  display: flex; gap: 6px; align-items: center;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.2);
  color: #fff; border-radius: 999px; padding: 0.4rem 0.7rem; cursor: pointer;
}
.nav-on-light .lang-toggle { background: rgba(0,0,0,.28); color: #fff; border-color: rgba(255,255,255,.2); }
.lang-toggle img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }
.lang-menu {
  display: none; position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--cream); color: var(--guindo);
  min-width: 180px; border-radius: 14px; padding: 0.4rem;
  box-shadow: var(--shadow); z-index: 90;
}
.lang-menu.open { display: block; }
.lang-menu button {
  width: 100%; display: flex; gap: 8px; align-items: center;
  background: none; border: 0; padding: 0.55rem 0.7rem; cursor: pointer; border-radius: 10px;
  color: var(--guindo);
}
.lang-menu button:hover, .lang-menu button.active { background: rgba(74,28,28,.08); }
.lang-menu img { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; }
.hamburger { display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; color: var(--cream); }
.hamburger span { display: block; height: 2px; background: currentColor; margin: 6px 10px; color: var(--cream); }
.hero-destinos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1.2rem;
  max-width: 720px;
}
.hero-destinos a {
  border: 1px solid rgba(255,237,212,.5);
  color: var(--cream);
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,0,0,.28);
}
.hero-destinos a:hover {
  background: var(--cream);
  color: var(--guindo);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
  background: #000;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.58) saturate(1.05);
}
.hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(74,28,28,0) 0%, rgba(74,28,28,.55) 58%, #4a1c1c 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 1.4rem; max-width: 920px; }
.hero-eyebrow { letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.78rem; opacity: .88; }
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  margin: 0.5rem 0 0.7rem;
  color: var(--cream);
}
.hero p { font-size: clamp(1.05rem, 2.4vw, 1.45rem); max-width: 36rem; margin: 0 auto 1.6rem; }

/* CONCEPT burgundy */
.concept {
  background: var(--guindo);
  color: var(--cream);
  padding: 6rem 0 4rem;
}
.concept-grid, .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}
.concept h2, .lickana h2, .pukara h2, .experiences h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.concept .lead, .lickana .lead { font-size: 1.12rem; margin-bottom: 1rem; }
.concept-photo, .split img {
  width: 100%; height: 420px; object-fit: cover; border-radius: 4px;
  filter: saturate(1.05);
}

.volcanoes { padding-top: 1rem; }
.volcano-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.vcard {
  background: rgba(255,237,212,.08);
  border: 1px solid rgba(255,237,212,.16);
  padding: 1.4rem;
  border-radius: 16px;
}
.vcard h3 { font-size: 1.35rem; margin-bottom: 0.45rem; }

.lickana { background: var(--cream); color: var(--guindo); }
.pukara { background: #3d1616; color: var(--cream); }
.pukara-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.pcard {
  background: rgba(255,237,212,.07);
  border: 1px solid rgba(255,237,212,.14);
  padding: 1.3rem 1.2rem;
  border-radius: 16px;
}
.pcard h3 { font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--gold); }

.experiences, .shop-page {
  padding: 7.5rem 0 4.5rem;
  background: var(--cream);
  color: var(--guindo);
}
.shop-page { min-height: 100vh; }
.shop-page h1 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: .6rem; }
.exp-head { max-width: 640px; margin-bottom: 2.2rem; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.exp-card {
  position: relative;
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  color: var(--cream);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.exp-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.exp-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(47,16,16,.92) 0%, rgba(47,16,16,.15) 55%, transparent 100%);
  pointer-events: none;
}
.exp-body { position: relative; z-index: 2; padding: 1.5rem; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; min-height: 360px; }
.exp-body h3 { font-size: 2rem; }
.exp-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 0.8rem; gap: 0.8rem; }
.price { font-weight: 700; letter-spacing: 0.04em; }

.faq { background: var(--guindo); color: var(--cream); }
.faq-item { border-bottom: 1px solid rgba(255,237,212,.16); }
.faq-item button {
  width: 100%; text-align: left; background: none; border: 0; color: inherit;
  padding: 1.1rem 0; font-size: 1.15rem; font-family: var(--display); cursor: pointer;
}
.faq-item p { display: none; padding: 0 0 1.1rem; opacity: .88; }
.faq-item.open p { display: block; }

.footer {
  background: #230d0d;
  color: var(--zinen);
  padding: 3.4rem 0 1.6rem;
}
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer .brand-name { font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.12em; }
.footer ul { list-style: none; }
.footer li { margin: 0.35rem 0; }
.footer-bottom { margin-top: 2.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,237,212,.12); display: flex; justify-content: space-between; gap: 1rem; }

/* FLOAT */
.fw-root {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 70;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.fw-count {
  background: rgba(255,237,212,.94);
  border: 1px solid rgba(74,28,28,.18);
  color: var(--guindo);
  border-radius: 0.85rem;
  padding: 0.55rem 1.05rem 0.5rem;
  text-align: center;
  box-shadow: 0 4px 18px rgba(74,28,28,.16);
  min-width: 118px;
}
.fw-fox {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.15rem;
}
.fw-fox svg { width: 100%; height: 100%; overflow: visible; }
.fw-fox .fox-body {
  transform-origin: 50% 80%;
  animation: fox-bob 2.4s ease-in-out infinite;
}
.fw-fox .fox-tail {
  transform-origin: 40px 42px;
  animation: fox-wag 1.15s ease-in-out infinite;
}
@keyframes fox-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-3px) rotate(2deg); }
}
@keyframes fox-wag {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(14deg); }
}
@media (prefers-reduced-motion: reduce) {
  .fw-fox .fox-body, .fw-fox .fox-tail { animation: none; }
}
.fw-count b { display: block; font-size: 1.45rem; line-height: 1; }
.fw-count span { font-size: 0.54rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: .72; }
.wa {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 5px 22px rgba(37,211,102,.5);
}
.wa svg { width: 30px; height: 30px; }

/* CART DRAWER */
.drawer-bg {
  position: fixed; inset: 0; background: rgba(20,8,8,.45);
  opacity: 0; pointer-events: none; transition: .25s ease; z-index: 100;
}
.drawer-bg.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--cream); color: var(--guindo);
  transform: translateX(100%); transition: .3s ease; z-index: 110;
  display: flex; flex-direction: column; padding: 1.3rem;
}
.drawer.open { transform: none; }
.drawer h2 { font-size: 2rem; margin-bottom: 1rem; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 0.75rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(74,28,28,.12); }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.drawer-foot { margin-top: auto; padding-top: 1rem; }

.purchase-section {
  background: var(--guindo);
  color: var(--cream);
  padding: 4.5rem 0;
}
.purchase-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .5rem; }
.purchase-sub { max-width: 640px; opacity: .92; margin-bottom: 2rem; }
.purchase-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.6rem; align-items: start; }
.purchase-summary {
  background: rgba(255,237,212,.1);
  border: 1px solid rgba(255,237,212,.2);
  border-radius: 20px;
  padding: 1.5rem;
}
.summary-price { font-family: var(--display); font-size: 2.4rem; margin: .4rem 0 1rem; }
.attendees-warning {
  background: rgba(255,237,212,.12);
  border-left: 4px solid var(--gold);
  padding: .85rem 1rem;
  margin: 1rem 0;
  font-size: .95rem;
}
.field-label { display:block; letter-spacing:.1em; text-transform:uppercase; font-size:.75rem; margin-bottom:.6rem; }
.chile-note { font-size: .8rem; opacity: .8; margin-top: .6rem; }
.summary-note { font-size: .85rem; opacity: .8; margin-top: .8rem; }

.calendar { background: rgba(255,237,212,.08); border-radius: 16px; padding: 1rem; }
.cal-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:.6rem; }
.cal-head button { width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,237,212,.3); background:transparent; color:var(--cream); cursor:pointer; font-size:1.2rem; }
.cal-legend { display:flex; gap:1rem; font-size:.75rem; margin-bottom:.6rem; }
.cal-legend .lg::before { content:""; display:inline-block; width:10px; height:10px; border-radius:2px; margin-right:6px; vertical-align:middle; }
.cal-legend .available::before { background:#7dcea0; }
.cal-legend .closed::before { background:#8a5a5a; }
.cal-week, .cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; text-align:center; }
.cal-week { font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; opacity:.7; margin-bottom:6px; }
.day-cell { height:40px; border:0; border-radius:8px; background:transparent; color:var(--cream); cursor:pointer; }
.day-cell.available { background:rgba(125,206,160,.25); }
.day-cell.available:hover { background:rgba(125,206,160,.45); }
.day-cell.selected { background:var(--cream); color:var(--guindo); font-weight:700; }
.day-cell.past, .day-cell.closed { opacity:.35; cursor:not-allowed; }
.day-cell.empty { pointer-events:none; }

.info-side p { margin: .4rem 0; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; }
.att-card, .assign-card { background:#fff; border:1px solid rgba(74,28,28,.12); border-radius:16px; padding:1rem; margin:1rem 0; }
.radio-group { display:flex; gap:1rem; flex-wrap:wrap; }
.chip-list { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.7rem; }
.chip { border:1px solid rgba(74,28,28,.2); border-radius:99px; padding:.35rem .8rem; cursor:pointer; }
.chip.on, .attendee-opt.selected { background:var(--guindo); color:var(--cream); border-color:var(--guindo); }
.attendee-opt { display:flex; flex-direction:column; align-items:flex-start; width:100%; margin:.35rem 0; padding:.7rem; border:1px solid rgba(74,28,28,.15); border-radius:12px; background:#fff; cursor:pointer; }
.check-row { display:flex; gap:.5rem; align-items:center; margin: .8rem 0; }
.sum-row { display:flex; justify-content:space-between; gap:1rem; margin:.5rem 0; }
.sum-hr { margin:1rem 0; border:0; border-top:1px solid rgba(74,28,28,.15); }
.sticky-sum { position:sticky; top:90px; }
.checkout-page .panel[hidden] { display:none !important; }

/* PAGES */
.page-hero {
  min-height: 52vh;
  display: grid; align-items: end;
  color: var(--cream);
  position: relative;
  background: #1a0a0a;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.page-hero .inner { position: relative; z-index: 2; padding: 7rem 0 2.4rem; }
.back-link { font-size: 0.78rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

.detail-wrap { display: grid; grid-template-columns: 1.3fr .8fr; gap: 2rem; padding: 3rem 0 5rem; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.gallery img { height: 210px; width: 100%; object-fit: cover; border-radius: 12px; }
.includes, .recs { margin-top: 1.6rem; }
.includes li { margin: 0.35rem 0 0.35rem 1rem; }
.book-box {
  background: #fff7ea; border: 1px solid rgba(74,28,28,.12);
  border-radius: 20px; padding: 1.4rem; position: sticky; top: 90px;
  box-shadow: var(--shadow);
}
.book-box h3 { font-size: 1.8rem; margin-bottom: .4rem; color: var(--guindo); }
.field { display: flex; flex-direction: column; gap: 0.3rem; margin: 0.75rem 0; }
.field label { font-size: 0.78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--guindo); }
.field input, .field select {
  border: 1px solid rgba(74,28,28,.2); background: #fff; border-radius: 10px;
  padding: 0.7rem .8rem; color: var(--ink);
}
.qty { display: flex; align-items: center; gap: .7rem; }
.qty button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(74,28,28,.25); background: #fff; cursor: pointer; }
.purchase-section .field label, .purchase-section .chile-note { color: var(--cream); }
.purchase-section .qty button { border-color: rgba(255,237,212,.4); }

.checkout-page { padding: 7.5rem 0 4rem; color: var(--guindo); }
.steps { display: flex; gap: 0.6rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.step { padding: .35rem .8rem; border-radius: 99px; background: rgba(74,28,28,.08); font-size: .78rem; }
.step.on { background: var(--guindo); color: var(--cream); }
.checkout-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.6rem; }
.panel { background: #fff7ea; border-radius: 18px; padding: 1.3rem; border: 1px solid rgba(74,28,28,.1); }
.pay-opt { border: 1px solid rgba(74,28,28,.18); border-radius: 14px; padding: 1rem; margin: .6rem 0; cursor: pointer; }
.pay-opt.selected { border-color: var(--guindo); background: rgba(74,28,28,.05); }
.pay-opt.disabled { opacity: .5; cursor: not-allowed; }
.status-page { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 2rem; }
.status-page h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--guindo); margin-bottom: .6rem; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 70px; left: 1rem; right: 1rem;
    background: var(--cream); color: var(--guindo); padding: 1rem; border-radius: 16px;
  }
  .nav-links.open a { color: var(--guindo); }
  .concept-grid, .split, .volcano-cards, .pukara-grid, .exp-grid, .detail-wrap, .checkout-grid, .footer-main, .purchase-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .concept-photo, .split img { height: 260px; }
  .hero h1 { font-size: 2.3rem; }
}
