/* IdV faithful — palette, fonts, base */

:root {
  --paper: #FFFFFF;
  --paper-2: #F7F9FB;
  --paper-3: #EEF3F7;
  --ink: #36486B;          /* slate navy from their CSS */
  --ink-2: #404040;        /* charcoal text */
  --ink-3: #6B7280;        /* muted */
  --brand: #009BDC;        /* sky blue from meta */
  --brand-2: #0467AA;      /* mid blue */
  --brand-soft: #E6F4FB;
  --gold: #FFB534;         /* mustard yellow accent */
  --green: #23430C;        /* dark forest accent */
  --whatsapp: #25D366;
  --line: #E5E9EE;
  --shadow-1: 0 2px 6px rgba(54, 72, 107, 0.06);
  --shadow-2: 0 8px 24px rgba(54, 72, 107, 0.10);
  --shadow-3: 0 16px 40px rgba(54, 72, 107, 0.14);
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: 'Ubuntu', -apple-system, system-ui, sans-serif;
  --font-script: 'Satisfy', 'Brush Script MT', cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 .4em;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
h3 { font-size: 1.15rem; }

.script { font-family: var(--font-script); font-weight: 400; color: var(--brand); }
.overline { font-family: var(--font-script); font-size: 1.4rem; color: var(--brand); display: block; margin-bottom: .2em; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 24px; max-width: 1240px; margin: 0 auto;
  font-size: .8rem; color: var(--ink-3);
  border-bottom: 1px solid var(--line);
}
.header-top a { color: var(--ink); }
.header-top .phone { font-weight: 600; color: var(--brand-2); }
.header-main {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 24px; max-width: 1240px; margin: 0 auto;
}
.logo img { height: 44px; }
.nav { display: flex; gap: 22px; flex-wrap: wrap; }
.nav a {
  color: var(--ink); font-family: var(--font-display); font-weight: 500;
  font-size: .92rem;
}
.nav a.new::after {
  content: 'NEW'; display: inline-block; background: var(--gold); color: #fff;
  font-size: .55rem; padding: 2px 5px; border-radius: 3px; margin-left: 4px; vertical-align: middle;
  font-weight: 700; letter-spacing: .04em;
}
.cta-pill {
  background: var(--brand); color: #fff !important;
  padding: 10px 20px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  border: none; cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,155,220,.3);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none !important;
}
.cta-pill:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,155,220,.4); }
.cta-pill.gold { background: var(--gold); box-shadow: 0 4px 12px rgba(255,181,52,.3); }
.cta-pill.outline { background: transparent; color: var(--brand) !important; border: 1.5px solid var(--brand); box-shadow: none; }

/* Hero */
.hero {
  position: relative; height: 580px;
  background: #1A2740;
  /* No overflow:hidden — search picker panels need to overflow downward */
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
}
.hero-overline { font-family: var(--font-script); color: #FFE6A8; font-size: 1.5rem; margin-bottom: .2em; }
.hero h1 { color: #fff; max-width: 720px; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hero-sub { font-size: 1.1rem; max-width: 600px; margin: 12px 0 24px; opacity: .95; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.95); color: var(--ink); padding: 8px 14px;
  border-radius: var(--r-pill); font-size: .85rem; font-weight: 500;
  margin-top: 16px; width: fit-content;
}
.hero-trust-chip .stars { color: #FF9F1C; letter-spacing: 1px; }
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background .2s;
}
.hero-dots span.active { background: #fff; }

/* Trust strip */
.trust-strip {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-strip-inner {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; align-items: center;
  font-size: .82rem; color: var(--ink); font-family: var(--font-display); font-weight: 500;
}
.trust-strip-inner span { display: inline-flex; align-items: center; gap: 6px; }
.trust-strip-inner span::before {
  content: ''; width: 6px; height: 6px; background: var(--brand);
  border-radius: 50%; display: inline-block;
}

/* Sections */
section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header .overline { color: var(--brand); }
.section-header p { color: var(--ink-3); max-width: 640px; margin: 8px auto 0; }

/* Collection cards */
.grid-collections {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .grid-collections { grid-template-columns: repeat(2, 1fr); } }
.coll-card {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-md); overflow: hidden;
  background: #1A2740; cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: transform .25s, box-shadow .25s;
}
.coll-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.coll-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.coll-card:hover img { transform: scale(1.06); }
.coll-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 40%, rgba(0,0,0,.78) 100%);
}
.coll-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 16px; color: #fff;
}
.coll-content h3 { color: #fff; font-size: 1.15rem; margin: 0 0 4px; }
.coll-content .tag { font-size: .82rem; opacity: .9; }
.price-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(255,255,255,.95); color: var(--ink);
  padding: 5px 10px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
}
.price-badge.gold { background: var(--gold); color: var(--ink); }

/* Destination grid */
.grid-destinations {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .grid-destinations { grid-template-columns: repeat(2, 1fr); } }
.dest-card {
  position: relative; aspect-ratio: 1;
  border-radius: var(--r-md); overflow: hidden;
  background: #1A2740; cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: transform .25s;
}
.dest-card:hover { transform: translateY(-3px); }
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7) 100%);
}
.dest-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 14px; color: #fff;
}
.dest-content h3 { color: #fff; font-size: 1.05rem; margin: 0; }

/* Specialists */
.specialists-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 800px) { .specialists-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .specialists-grid { grid-template-columns: 1fr; } }
.spec-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.spec-card:hover { border-color: var(--brand); box-shadow: var(--shadow-1); }
.spec-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.spec-info h3 { font-size: 1rem; margin-bottom: 2px; }
.spec-info .role { font-size: .82rem; color: var(--ink-3); margin-bottom: 10px; }
.spec-actions { display: flex; gap: 6px; }
.spec-btn {
  font-size: .78rem; padding: 6px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  font-family: var(--font-display); color: var(--ink);
  text-decoration: none;
}
.spec-btn:hover { background: var(--paper-2); text-decoration: none; }
.spec-btn.wa { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.spec-btn.wa:hover { background: #20BC5A; }

/* Reviews */
.reviews-band { background: var(--paper-2); }
.reviews-header {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.trustpilot-fake {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; padding: 10px 16px; border-radius: var(--r-md);
  border: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 600;
}
.trustpilot-fake .tp-stars { color: #00B67A; letter-spacing: 2px; font-size: 1.05rem; }
.trustpilot-fake .tp-score { color: var(--ink); }
.trustpilot-fake small { color: var(--ink-3); font-weight: 400; }

.reviews-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff; padding: 20px;
  border-radius: var(--r-md); border: 1px solid var(--line);
}
.review-stars { color: #FF9F1C; letter-spacing: 1px; margin-bottom: 8px; font-size: .95rem; }
.review-text { font-size: .9rem; color: var(--ink-2); line-height: 1.55; margin-bottom: 14px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-author .av {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .8rem;
}
.review-author .meta { font-size: .8rem; }
.review-author .meta .name { font-weight: 600; color: var(--ink); }
.review-author .meta .city { color: var(--ink-3); }

/* Palma section */
.palma {
  background: linear-gradient(135deg, #E6F4FB 0%, #FFF 100%);
}
.palma-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 800px) { .palma-grid { grid-template-columns: 1fr; gap: 24px; } }
.palma h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.palma .subtitle { color: var(--brand-2); font-style: italic; margin-bottom: 16px; }
.palma p { font-size: 1rem; color: var(--ink-2); line-height: 1.7; }
.palma-anatomy {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px;
}
.palma-anatomy div {
  background: rgba(255,255,255,.7); padding: 14px; border-radius: var(--r-md);
  border-left: 3px solid var(--brand);
}
.palma-anatomy strong { color: var(--brand-2); font-family: var(--font-display); font-size: .9rem; display: block; margin-bottom: 2px; }
.palma-anatomy span { font-size: .82rem; color: var(--ink-2); }
.palma-visual {
  aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden;
  background: url('https://cdn.ideeperviaggiare.it/media/2018/09/giappone-arashiyama-autunno-battello-che-naviga-sul-fiume-1366x909-9687.jpg') center/cover;
}

/* Treedom band */
.treedom-band {
  background: var(--green); color: #fff;
  padding: 36px 0;
}
.treedom-band .wrap {
  display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.treedom-band h3 { color: #fff; margin: 0 0 4px; font-size: 1.2rem; }
.treedom-band p { margin: 0; opacity: .9; font-size: .92rem; }

/* Footer */
.site-footer {
  background: #1A2740; color: #B8C4DA;
  padding: 56px 0 24px;
  font-size: .85rem;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 32px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.footer-grid h4 { color: #fff; font-size: .9rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .04em; }
.footer-grid a { color: #B8C4DA; display: block; padding: 4px 0; font-size: .82rem; }
.footer-grid a:hover { color: #fff; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px; font-size: .75rem; color: #8090A8; line-height: 1.6;
}

/* WhatsApp sticky */
.wa-sticky {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  background: var(--whatsapp); color: #fff;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  text-decoration: none; cursor: pointer;
  transition: transform .2s;
}
.wa-sticky:hover { transform: scale(1.08); text-decoration: none; }
.wa-sticky svg { width: 32px; height: 32px; fill: #fff; }
.wa-sticky::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 3px solid rgba(37,211,102,.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Live feed pill */
.live-feed {
  position: fixed; bottom: 24px; left: 24px; z-index: 70;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 10px 18px 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-2);
  font-size: .82rem; color: var(--ink); font-family: var(--font-display);
  max-width: 360px;
  transition: opacity .4s;
}
.live-feed .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #00B67A;
  flex-shrink: 0;
  animation: blink 1.5s infinite;
}
@keyframes blink { 50% { opacity: .3; } }
@media (max-width: 700px) {
  .live-feed { display: none; }
  .wa-sticky { bottom: 16px; right: 16px; width: 54px; height: 54px; }
}

/* Quote page */
.quote-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff; padding: 56px 0 36px; text-align: center;
}
.quote-hero h1 { color: #fff; }
.quote-hero p { opacity: .92; font-size: 1.08rem; max-width: 580px; margin: 12px auto 0; }
.quote-form {
  max-width: 720px; margin: -24px auto 0; position: relative; z-index: 2;
  background: #fff; border-radius: var(--r-lg); padding: 32px;
  box-shadow: var(--shadow-3);
}
.quote-form .field { margin-bottom: 20px; }
.quote-form label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: .92rem; color: var(--ink); margin-bottom: 8px;
}
.chip-row { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 7px 14px; cursor: pointer; font-size: .85rem;
  background: #fff; font-family: var(--font-body); color: var(--ink-2);
  transition: all .15s;
}
.chip:hover { border-color: var(--brand); }
.chip.selected { background: var(--brand); color: #fff; border-color: var(--brand); }
.quote-form input[type=text], .quote-form input[type=email], .quote-form input[type=date], .quote-form input[type=tel], .quote-form input[type=range] {
  width: 100%; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 11px 14px; font-family: var(--font-body); font-size: .95rem;
  color: var(--ink); background: #fff;
}
.quote-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.budget-display {
  font-family: var(--font-display); font-weight: 600;
  color: var(--brand); font-size: 1.1rem;
}
.quote-submit {
  width: 100%; background: var(--brand); color: #fff;
  border: none; padding: 14px; border-radius: var(--r-md);
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  cursor: pointer; transition: background .15s;
  margin-top: 8px;
}
.quote-submit:hover { background: var(--brand-2); }

.quote-success {
  max-width: 720px; margin: 60px auto; padding: 40px;
  background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line);
  text-align: center;
}
.quote-success h2 { color: var(--brand); }
.quote-success .check {
  width: 64px; height: 64px; border-radius: 50%; background: #E6F4FB;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 28px; color: var(--brand);
}
.hidden { display: none; }

/* Design changelog page */
.design-page { background: var(--paper-2); padding: 56px 0; min-height: 100vh; }
.design-card {
  background: #fff; border-radius: var(--r-md); padding: 28px;
  margin-bottom: 16px; border: 1px solid var(--line);
}
.design-card .label {
  display: inline-block; background: var(--brand-soft); color: var(--brand-2);
  padding: 3px 10px; border-radius: var(--r-pill);
  font-size: .72rem; font-weight: 600; margin-bottom: 8px;
  font-family: var(--font-display);
}
.design-card h3 { margin: 0 0 6px; }
.design-card .lift {
  margin-top: 10px; font-size: .85rem; color: var(--green);
  font-family: var(--font-display); font-weight: 600;
}
.variant-badge {
  display: inline-block; background: var(--gold); color: var(--ink);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  margin-bottom: 16px;
}

/* ============================================ */
/* AIRBNB-PATTERN OVERLAY (Variant B · onpage) */
/* ============================================ */

/* 1. Hero search composer (4-chip pill) */
.hero-search-wrap {
  position: relative; display: inline-block; max-width: 100%;
}
.hero-search {
  display: inline-flex; align-items: stretch;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  padding: 8px 8px 8px 4px;
  margin: 24px 0 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.08);
  max-width: 100%;
  flex-wrap: nowrap;
}
.hero-search .hs-chip {
  background: transparent; border: none;
  padding: 10px 22px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px; cursor: pointer;
  border-radius: 999px;
  transition: background .15s;
  text-align: left;
  min-width: 0;
}
.hero-search .hs-chip:hover { background: var(--paper-2); }
.hero-search .hs-chip.active { background: #fff; box-shadow: var(--shadow-2); }
.hero-search .hs-label {
  font-family: var(--font-display); font-weight: 600;
  font-size: .72rem; color: var(--ink);
  text-transform: none; letter-spacing: 0;
}
.hero-search .hs-value {
  font-family: var(--font-body); font-size: .82rem;
  color: var(--ink-3); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 160px;
}
.hero-search .hs-value.set { color: var(--ink-2); font-weight: 500; }
.hero-search .hs-divider {
  width: 1px; background: var(--line); margin: 10px 0;
  flex-shrink: 0;
}
.hero-search .hs-cta {
  background: var(--brand); color: #fff; border: none;
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  cursor: pointer;
  margin-left: 6px;
  transition: background .15s, transform .15s;
}
.hero-search .hs-cta:hover { background: var(--brand-2); transform: scale(1.02); }
.hero-search .hs-cta svg { stroke: #fff; }

/* Hero search picker panels — anchored under the search bar */
.hs-panel {
  position: absolute; z-index: 10;
  top: calc(100% + 10px); left: 0;
  background: #fff; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.22), 0 4px 12px rgba(0,0,0,.08);
  padding: 0; min-width: 540px; max-width: 92vw;
  border: 1px solid var(--line);
}
.hs-panel.open { animation: hsPop .2s ease-out; }
@keyframes hsPop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.hs-panel-inner { padding: 24px; }
.hs-panel-inner h4 {
  font-family: var(--font-display); color: var(--ink);
  margin: 0 0 14px; font-size: 1rem;
}
.hs-picker-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.hs-picker-grid .hs-dest {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px;
  border: 1px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: .82rem;
  transition: border-color .15s, background .15s;
}
.hs-picker-grid .hs-dest:hover { border-color: var(--brand); background: var(--brand-soft); }
.hs-picker-grid .hs-dest strong {
  font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: .9rem;
}
.hs-picker-grid .hs-dest .px { color: var(--brand-2); font-weight: 600; font-size: .78rem; }
.hs-when-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px;
}
.hs-when-row label {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-display); font-weight: 600;
  font-size: .82rem; color: var(--ink);
}
.hs-when-row input {
  border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; font-family: var(--font-body); font-size: .92rem;
  color: var(--ink);
}
.hs-when-quick { display: flex; gap: 8px; flex-wrap: wrap; }
.hs-when-quick button {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 14px; background: #fff; cursor: pointer;
  font-family: var(--font-body); font-size: .82rem; color: var(--ink-2);
}
.hs-when-quick button:hover { border-color: var(--brand); color: var(--brand); }
.hs-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.hs-chip-grid .hs-pick {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; background: #fff; cursor: pointer;
  font-family: var(--font-body); font-size: .88rem; color: var(--ink-2);
  transition: all .15s;
}
.hs-chip-grid .hs-pick:hover { border-color: var(--brand); }
.hs-chip-grid .hs-pick.selected {
  background: var(--brand); color: #fff; border-color: var(--brand);
}

@media (max-width: 720px) {
  .hero-search { flex-wrap: wrap; padding: 8px; gap: 4px; border-radius: 18px; }
  .hero-search .hs-chip { flex-basis: calc(50% - 4px); padding: 8px 14px; border-radius: 12px; }
  .hero-search .hs-divider { display: none; }
  .hero-search .hs-cta { flex-basis: 100%; justify-content: center; margin-left: 0; margin-top: 4px; }
  .hs-panel { min-width: 0; width: 100%; left: 0; }
  .hs-panel.open { animation: none; }
  .hs-picker-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 2. Sticky horizontal category strip (Airbnb landing nav) */
.cat-strip {
  position: sticky; top: 73px; z-index: 40;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0 12px;
}
.cat-strip-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 24px;
  display: flex; gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 16px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: .72rem; color: var(--ink-3);
  border-bottom: 2px solid transparent;
  white-space: nowrap; flex-shrink: 0;
  transition: color .15s, border-color .15s;
}
.cat-chip:hover { color: var(--ink); }
.cat-chip.selected { color: var(--ink); border-bottom-color: var(--ink); }
.cat-chip .cat-icon {
  font-size: 1.3rem; line-height: 1; color: var(--ink-3);
}
.cat-chip.selected .cat-icon { color: var(--brand); }
@media (max-width: 700px) {
  .cat-strip { top: 56px; }
}

/* 3. Collection card upgrades — hover carousel + heart + rating + host */
.coll-card { position: relative; }
.coll-card .coll-photos {
  position: absolute; inset: 0;
  z-index: 0;
}
.coll-card .coll-photo {
  position: absolute; inset: 0; opacity: 0;
  background-size: cover; background-position: center;
  transition: opacity .5s;
}
.coll-card .coll-photo.active { opacity: 1; }
.coll-card .coll-dots {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 3;
  opacity: 0; transition: opacity .2s;
}
.coll-card:hover .coll-dots { opacity: 1; }
.coll-card .coll-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5);
}
.coll-card .coll-dots span.active { background: #fff; }
.heart-btn {
  position: absolute; top: 12px; left: 12px; z-index: 4;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.3); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform .15s, background .15s;
}
.heart-btn:hover { transform: scale(1.1); background: rgba(0,0,0,.5); }
.heart-btn.saved { color: #FF385C; background: rgba(255,255,255,.95); }
.heart-btn svg { width: 18px; height: 18px; }
.coll-card .coll-rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .8rem; color: #fff; font-family: var(--font-display); font-weight: 600;
  margin-bottom: 4px;
}
.coll-card .coll-rating .star { color: #FFB534; }
.coll-card .coll-rating .reviews { font-weight: 400; opacity: .85; }
.coll-card .host-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 8px;
  font-size: .72rem; color: rgba(255,255,255,.92);
  font-family: var(--font-body);
}
.coll-card .host-badge .host-av {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .55rem;
}
.coll-card .trust-row {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  display: flex; flex-direction: column; gap: 4px; align-items: flex-end;
}
.coll-card .trust-pill {
  display: inline-block;
  background: rgba(255,255,255,.95); color: var(--ink);
  font-size: .7rem; font-family: var(--font-display); font-weight: 600;
  padding: 4px 9px; border-radius: 999px;
}
.coll-card .trust-pill.gold { background: var(--gold); }
.coll-card .price-badge { display: none; } /* replaced by trust-row */
.coll-card.hidden-cat { display: none; }

/* 4. Modal pattern (save for later / quaderno) */
.idv-modal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.idv-modal[hidden] { display: none !important; }
.idv-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26,39,64,.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.idv-modal-card {
  position: relative; z-index: 1;
  background: #fff; border-radius: 16px;
  max-width: 460px; width: 100%;
  padding: 32px 28px 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  animation: modalUp .25s ease-out;
}
@keyframes modalUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.idv-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  border: none; background: var(--paper-2); cursor: pointer;
  font-size: 22px; color: var(--ink); line-height: 1;
}
.idv-modal-close:hover { background: var(--paper-3); }
.idv-modal-eyebrow {
  font-family: var(--font-script); color: var(--brand);
  font-size: 1.2rem; display: block; margin-bottom: 4px;
}
.idv-modal-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.idv-modal-sub { color: var(--ink-3); font-size: .92rem; margin: 0 0 20px; }
.idv-modal-form { display: flex; flex-direction: column; gap: 14px; }
.idv-modal-form label {
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-display); font-weight: 600; color: var(--ink);
  font-size: .85rem;
}
.idv-modal-form label em {
  font-style: normal; font-weight: 400; color: var(--ink-3);
  font-family: var(--font-body); font-size: .78rem;
}
.idv-modal-form input {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 14px; font-family: var(--font-body); font-size: .95rem;
  color: var(--ink);
}
.idv-modal-form input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.idv-modal-form button[type=submit] {
  background: var(--brand); color: #fff; border: none;
  padding: 12px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  cursor: pointer; margin-top: 4px;
}
.idv-modal-form button[type=submit]:hover { background: var(--brand-2); }
.idv-modal-foot {
  font-size: .76rem; color: var(--ink-3); text-align: center;
  margin: 6px 0 0;
}

/* 5. Mobile sticky bottom CTA */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 70;
  background: #fff; border-top: 1px solid var(--line);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  align-items: center; justify-content: space-between; gap: 12px;
}
.mobile-cta-bar .mcb-info {
  display: flex; flex-direction: column; line-height: 1.2;
}
.mobile-cta-bar .mcb-info strong {
  font-family: var(--font-display); color: var(--ink); font-size: 1rem;
}
.mobile-cta-bar .mcb-info span {
  font-size: .76rem; color: var(--ink-3);
}
.mobile-cta-bar .mcb-btn {
  background: var(--brand); color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .88rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,155,220,.3);
}
.mobile-cta-bar .mcb-btn:hover { text-decoration: none; }
@media (max-width: 700px) {
  .mobile-cta-bar { display: flex; }
  .wa-sticky { bottom: 80px; right: 14px; }
  body { padding-bottom: 70px; }
}

/* 6. Preventivo sticky sidebar */
.preventivo-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 32px;
  align-items: flex-start;
  margin-top: -24px; position: relative; z-index: 2;
}
@media (max-width: 900px) { .preventivo-layout { grid-template-columns: 1fr; } }
.preventivo-side {
  position: sticky; top: 96px;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: var(--shadow-2);
}
@media (max-width: 900px) {
  .preventivo-side { position: static; }
}
.preventivo-side .ps-price {
  font-family: var(--font-display); color: var(--ink); margin-bottom: 4px;
}
.preventivo-side .ps-price strong { font-size: 1.5rem; font-weight: 700; }
.preventivo-side .ps-price .ps-unit { color: var(--ink-3); font-weight: 400; font-size: .92rem; }
.preventivo-side .ps-sub { color: var(--ink-3); font-size: .82rem; margin-bottom: 16px; }
.preventivo-side .ps-quick-pick {
  border: 1px solid var(--line); border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
  background: var(--paper-2);
}
.preventivo-side .ps-quick-pick .ps-row {
  display: flex; justify-content: space-between; padding: 6px 0;
  font-size: .84rem; border-bottom: 1px dashed var(--line);
}
.preventivo-side .ps-quick-pick .ps-row:last-child { border-bottom: none; }
.preventivo-side .ps-quick-pick .ps-row span:first-child {
  color: var(--ink-3); font-family: var(--font-display);
}
.preventivo-side .ps-quick-pick .ps-row span:last-child {
  color: var(--ink); font-weight: 600;
}
.preventivo-side .ps-cta {
  width: 100%; background: var(--brand); color: #fff;
  border: none; padding: 13px;
  border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: background .15s;
  display: block; text-align: center; text-decoration: none;
}
.preventivo-side .ps-cta:hover { background: var(--brand-2); text-decoration: none; }
.preventivo-side .ps-reassure {
  font-size: .8rem; color: var(--ink-3); text-align: center;
  margin: 10px 0 0;
}
.preventivo-side .ps-reassure strong { color: var(--green); }
.preventivo-side .ps-host {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
}
.preventivo-side .ps-host .ps-host-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .85rem;
}
.preventivo-side .ps-host .ps-host-info { font-size: .8rem; }
.preventivo-side .ps-host .ps-host-info strong { font-family: var(--font-display); color: var(--ink); display: block; }
.preventivo-side .ps-host .ps-host-info span { color: var(--ink-3); }

.preventivo-side .resume-banner {
  background: linear-gradient(135deg, var(--brand-soft), #fff);
  border: 1px solid var(--brand);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: .82rem;
}
.preventivo-side .resume-banner strong {
  font-family: var(--font-display); color: var(--brand-2); display: block; font-size: .78rem; margin-bottom: 2px;
}
.preventivo-side .resume-banner em { font-style: normal; color: var(--ink); }
.preventivo-side .resume-banner button {
  background: none; border: none; color: var(--brand-2); cursor: pointer;
  text-decoration: underline; font-size: .76rem; padding: 0; margin-top: 4px;
  font-family: var(--font-body);
}
