:root{
  --bg: #fbf6ee;
  --paper: #ffffff;
  --ink: #101115;
  --muted: rgba(16,17,21,.72);
  --line: rgba(16,17,21,.10);

  --navy: #0b1b2b;      /* tu color elegante */
  --gold: #c6a15b;      /* dorado */
  --gold2:#b48c49;

  --radius: 22px;
  --shadow: 0 18px 46px rgba(0,0,0,.10);
  --shadow2: 0 10px 28px rgba(0,0,0,.08);

  --serif: "Playfair Display", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
.wrap{ width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,246,238,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap:10px; }
.logo-badge{
  width: 44px; height: 44px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.brand-name{
  font-family: var(--serif);
  letter-spacing: .10em;
  font-size: 15px;
  color: var(--gold);
}

.navlist{
  list-style:none;
  display:flex;
  gap: 18px;
  padding:0; margin:0;
}
.navlist a{
  font-size: 14px;
  color: rgba(16,17,21,.78);
  padding: 8px 10px;
  border-radius: 999px;
}
.navlist a:hover{
  background: rgba(198,161,91,.14);
  color: var(--navy);
}

/* Lang switch */
.lang-switch{ display:flex; gap:8px; align-items:center; }
.lang-btn{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  letter-spacing: .12em;
  cursor:pointer;
  opacity: .85;
}
.lang-btn:hover{ opacity: 1; border-color: rgba(198,161,91,.55); }
.lang-btn.is-active{
  background: rgba(198,161,91,.16);
  border-color: rgba(198,161,91,.55);
  color: var(--navy);
  opacity: 1;
}

/* ===== Typography ===== */
.kicker{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198,161,91,.14);
  border: 1px solid rgba(198,161,91,.32);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11,27,43,.92);
  margin: 0 0 14px;
}

.h1{
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.06;
  margin: 0 0 12px;
}

.h2{
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  margin: 0 0 10px;
}

.h3{
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
}

.lead{
  margin: 0;
  color: var(--muted);
  max-width: 68ch;
  font-size: 16px;
}

.p{ margin: 0 0 12px; color: rgba(16,17,21,.78); }
.muted{ color: var(--muted); }

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn-primary{
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover{ filter: brightness(1.06); }
.btn-ghost{
  background: transparent;
  border-color: rgba(198,161,91,.55);
  color: var(--navy);
}
.btn-ghost:hover{ background: rgba(198,161,91,.14); }
.full{ width:100%; }

/* ===== Hero ===== */
.hero{
  padding: 68px 0 42px;
  background:
    radial-gradient(1200px 420px at 18% -18%, rgba(198,161,91,.24), transparent 60%),
    radial-gradient(900px 380px at 92% 0%, rgba(11,27,43,.16), transparent 65%);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items:center;
}

.hero-cta{ margin-top: 18px; display:flex; gap: 10px; flex-wrap: wrap; }

.hero-media{
  margin:0;
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
}

.hero-media img{
  width:100%;
  height: 520px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.hero-caption{
  position:absolute;
  left: 16px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,27,43,.62);
  color:#fff;
  border: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  letter-spacing: .02em;
}

.hero-trust{
  margin-top: 20px;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-item{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  border-radius: 18px;
  padding: 12px 14px;
  min-width: 160px;
  box-shadow: var(--shadow2);
}
.trust-big{
  display:block;
  font-weight: 800;
  color: var(--gold2);
  letter-spacing: .02em;
}
.trust-small{
  display:block;
  font-size: 13px;
  color: rgba(16,17,21,.72);
}

/* ===== Editorial + Map ===== */
.editorial{ padding: 30px 0 56px; }
.editorial-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items:start;
}

.pill-row{ margin-top: 12px; display:flex; gap:10px; flex-wrap: wrap; }
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198,161,91,.14);
  border: 1px solid rgba(198,161,91,.28);
  font-size: 13px;
  color: rgba(11,27,43,.92);
}

.ul{ margin: 0; padding-left: 18px; color: rgba(16,17,21,.78); }
.ul li{ margin: 8px 0; }

.map-card{
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}

.map-head{
  padding: 18px 18px 10px;
  border-bottom: 1px solid var(--line);
}
.map-kicker{
  margin:0 0 4px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(16,17,21,.66);
}
.map-title{
  margin:0;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 22px;
}

.map-embed{
  height: 320px;
  background: #fff;
}
.map-embed iframe{
  width:100%;
  height:100%;
  border:0;
}

.map-foot{
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}
.map-note{ margin: 0 0 12px; color: rgba(16,17,21,.72); }

/* ===== Collection ===== */
.collection{ padding: 54px 0 74px; }
.collection-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 16px;
  margin-bottom: 18px;
}
.head-actions{ display:flex; gap:10px; flex-wrap: wrap; }

.collection-grid{
  display:grid;
  grid-template-columns: 340px 1fr;
  gap: 18px;
  align-items:start;
}

/* Filters */
.filters{
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  padding: 18px;
  position: sticky;
  top: 92px;
}

.filters-title{
  margin: 0 0 14px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: 20px;
}

.filter-block{ margin-bottom: 12px; }
.label{
  display:block;
  font-size: 13px;
  color: rgba(16,17,21,.72);
  margin-bottom: 6px;
}

.select, .input{
  width:100%;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 0 12px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  background: #fff;
  color: rgba(16,17,21,.86);
}
.input{ padding: 0 12px; }

.filters-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(16,17,21,.62);
}

/* Results */
.results{
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  padding: 18px;
}

.results-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.results-count{ margin:0; color: rgba(16,17,21,.72); }

.sort{ display:flex; gap: 10px; align-items:center; }
.sort .label{ margin:0; }

/* Itinerary cards (inspiración tipo tus capturas: grandes, foto + overlay + flecha) */
.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trip{
  position: relative;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  background: #111;
  min-height: 300px;
  body{
    outline: 6px solid red;
  }
}

.trip img{
  width:100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.trip::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.08) 60%);
}

.trip-content{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
}

.trip-top{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
  margin-bottom: 10px;
}

.chip{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trip-title{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.12;
}

.trip-meta{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 12px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
}
.trip-price strong{
  color: var(--gold);
  font-size: 16px;
}

.trip-arrow{
  position:absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(198,161,91,.18);
  border: 1px solid rgba(198,161,91,.42);
  display:grid;
  place-items:center;
  color:#fff;
  font-weight: 900;
}
.trip:hover .trip-arrow{ background: rgba(198,161,91,.26); }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .navlist{ display:none; } /* si quieres luego hacemos hamburguesa */
  .hero-grid, .editorial-grid{ grid-template-columns: 1fr; }
  .hero-media img{ height: 420px; }
  .collection-grid{ grid-template-columns: 1fr; }
  .filters{ position: static; }
  .cards{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .wrap{ width: min(1180px, calc(100% - 28px)); }
  .trust-item{ min-width: 140px; }
}

/* ===== CARD BASE ===== */
.trip{
position: relative;
display: block;
width: 100%;
aspect-ratio: 4 / 5;        /* 🔥 CLAVE: formato vertical elegante */
border-radius: 24px;
overflow: hidden;
background: #000;
}

.trip img{
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;          /* 🔥 recorta sin deformar */
object-position: center;
z-index: 0;
}

.trip::after{
content: "";
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(
  to top,
  rgba(0,0,0,.75),
  rgba(0,0,0,.15),
  rgba(0,0,0,0)
);
}

.trip::after{
content: "";
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(
  to top,
  rgba(0,0,0,.75),
  rgba(0,0,0,.15),
  rgba(0,0,0,0)
);
}

/* como en mexico y japon: sin filtros visibles */
.filters{
  display: none !important;
}

.collection-grid{
  grid-template-columns: 1fr !important;
}

.results{
  width: 100%;
}

.cards{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip{
  min-height: 360px;
  height: 420px;
  aspect-ratio: auto;
}

.footer{
  padding: 20px 0 36px;
}

.footer-inner{
  border-top: 1px solid rgba(16,17,21,.08);
  padding-top: 18px;
}

.footer-copy{
  margin: 0;
  color: rgba(16,17,21,.58);
  font-size: 14px;
}

@media (max-width: 980px){
  .cards{
    grid-template-columns: 1fr;
  }

  .trip{
    height: 400px;
    min-height: 400px;
  }
}

/* ===== HEADER EXACTO COMO LAS OTRAS PÁGINAS ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f7f1e8;
  border-bottom: 1px solid rgba(198,161,91,.12);
  transition: box-shadow .3s ease;
}

.site-header.is-scrolled{
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  min-height: 72px;
  padding: 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.logo-badge{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid rgba(198,161,91,.18);
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.04);
}

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

.brand-name{
  font-family: var(--serif);
  letter-spacing: .14em;
  font-size: 15px;
  color: var(--gold);
  white-space: nowrap;
}

.navlist{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 28px;
  padding:0;
  margin:0;
}

.navlist li{
  list-style:none;
}

.navlist a{
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  padding: 8px 0;
  background: transparent !important;
  border-radius: 0;
}

.navlist a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin:center;
  transition: transform .25s ease;
}

.navlist a:hover::after,
.navlist a.is-current::after{
  transform: scaleX(1);
}

.lang-switch{
  display:flex;
  gap:10px;
  align-items:center;
}

.lang-btn{
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16,17,21,.08);
  background: #ece8e1;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(16,17,21,.42);
  cursor:pointer;
  transition: all .25s ease;
  padding: 0;
}

.lang-btn.is-active{
  background: #7b281d;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(123,40,29,.22);
}

/* ===== FOOTER EXACTO COMO LAS OTRAS PÁGINAS ===== */
.site-footer{
  margin-top: 60px;
  padding: 54px 0 26px;
  background: transparent;
}

.footer-top{
  display:grid;
  grid-template-columns:1.55fr .8fr .8fr;
  gap:70px;
  align-items:start;
  padding-bottom:28px;
  border-bottom:1px solid rgba(16,17,21,.10);
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.footer-logo-badge{
  width:74px;
  height:74px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(198,161,91,.16);
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.04);
  flex-shrink:0;
}

.footer-logo-badge img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.footer-brand-name{
  font-family:var(--serif);
  font-size:28px;
  letter-spacing:.14em;
  color:var(--gold);
  line-height:1;
}

.footer-description{
  max-width:620px;
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:rgba(16,17,21,.66);
}

.footer-links h3,
.footer-contact h3{
  margin:6px 0 18px;
  font-family:var(--serif);
  font-size:28px;
  line-height:1.1;
  color:#2a2a2a;
}

.footer-links,
.footer-contact{
  display:flex;
  flex-direction:column;
}

.footer-links a,
.footer-contact a{
  margin-bottom:10px;
  font-size:16px;
  color:rgba(16,17,21,.68);
  transition:color .2s ease, transform .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:var(--gold2);
  transform:translateX(2px);
}

.footer-bottom{
  text-align:center;
  padding-top:22px;
}

.footer-bottom p{
  margin:0;
  font-size:15px;
  color:rgba(16,17,21,.58);
}

/* ===== OCULTAR FOOTER CORTO ANTERIOR SI SIGUE EXISTIENDO ===== */
.footer{
  display: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .navlist{
    display:none;
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:32px;
  }

  .footer-brand-name{
    font-size:22px;
  }

  .footer-links h3,
  .footer-contact h3{
    font-size:24px;
  }

  .footer-logo-badge{
    width:62px;
    height:62px;
    border-radius:18px;
  }
}

@media (max-width: 520px){
  .bar{
    min-height:78px;
  }

  .logo-badge{
    width:46px;
    height:46px;
  }

  .brand-name{
    font-size:14px;
    letter-spacing:.10em;
  }

  .lang-btn{
    width:42px;
    height:42px;
    font-size:15px;
  }

  .site-footer{
    padding:40px 0 22px;
  }

  .footer-brand{
    gap:14px;
  }

  .footer-logo-badge{
    width:54px;
    height:54px;
    border-radius:16px;
  }

  .footer-brand-name{
    font-size:18px;
    letter-spacing:.10em;
  }

  .footer-description,
  .footer-links a,
  .footer-contact a{
    font-size:15px;
  }

  .footer-links h3,
  .footer-contact h3{
    font-size:22px;
  }
}