: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;
}

.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)
);
}