/* IdV faithful — palette, fonts, base — Variant C (motion + whitespace) */

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

  /* Motion */
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-emphasis: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
html, body { margin: 0; padding: 0; }
body { overflow-x: hidden; }
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 — Apple full-bleed 90vh */
.hero {
  position: relative; height: 90vh; min-height: 640px; overflow: hidden;
  background: #1A2740;
  width: 100vw; margin-left: calc(50% - 50vw);
}
.hero-slide {
  position: absolute; inset: -8% -2%;  /* slight overshoot for parallax breathing room */
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s var(--ease-out);
  will-change: transform, opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.62) 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; align-items: flex-start;
  color: #fff;
}
.hero-overline {
  font-family: var(--font-script); color: #FFE6A8; font-size: 1.6rem; margin-bottom: .2em;
  opacity: 0; transform: translateY(16px);
  animation: heroIn .9s var(--ease-out) .2s forwards;
}
.hero h1 {
  color: #fff; max-width: 820px;
  font-size: clamp(2.4rem, 5.6vw, 4.5rem);
  letter-spacing: -.018em; line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
  opacity: 0; transform: translateY(24px);
  animation: heroIn 1s var(--ease-out) .35s forwards;
}
.hero-sub {
  font-size: 1.15rem; max-width: 620px; margin: 18px 0 32px;
  opacity: 0; transform: translateY(18px);
  animation: heroIn .9s var(--ease-out) .55s forwards;
  line-height: 1.6;
}
.hero-sub.is-shown { opacity: .95; }
.hero-cta-row, .hero-trust-chip {
  opacity: 0; transform: translateY(14px);
  animation: heroIn .9s var(--ease-out) .75s forwards;
}
.hero-trust-chip { animation-delay: .9s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub { /* override final opacity to feel softer */ }
.hero-sub { animation-fill-mode: forwards; }
.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 — whitespace doubled (Apple-grade breathing room) */
section { padding: 120px 0; }
@media (max-width: 800px) { section { padding: 72px 0; } }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); letter-spacing: -.012em; }
.section-header .overline { color: var(--brand); }
.section-header p { color: var(--ink-3); max-width: 640px; margin: 12px auto 0; font-size: 1.05rem; line-height: 1.65; }

/* 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;
}

/* ============================================================
   VARIANT C — Motion + whitespace upgrades
   ============================================================ */

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out),
    filter 700ms var(--ease-out);
  will-change: opacity, transform, filter;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.delay-1 { transition-delay: 80ms; }
.delay-2 { transition-delay: 160ms; }
.delay-3 { transition-delay: 240ms; }
.delay-4 { transition-delay: 320ms; }
.delay-5 { transition-delay: 400ms; }
.delay-6 { transition-delay: 480ms; }

/* Parallax host clipping */
.parallax-host { position: relative; overflow: hidden; }
[data-parallax] { will-change: transform; }

/* Full-bleed utility */
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
}

/* Bigger collection cards + richer hover */
.coll-card {
  transition: transform 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}
.coll-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.coll-card img { transition: transform 900ms var(--ease-out); }
.coll-card:hover img { transform: scale(1.07); }
.coll-content {
  padding: 22px;
  transform: translateY(0);
  transition: padding 400ms var(--ease-out);
}
.coll-content .eyebrow {
  display: block;
  font-family: var(--font-script); color: #FFE6A8; font-size: 1rem;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 400ms var(--ease-out), max-height 400ms var(--ease-out);
}
.coll-card:hover .coll-content .eyebrow { opacity: 1; max-height: 24px; margin-bottom: 4px; }

/* Destination tile motion */
.dest-card {
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.dest-card img { transition: transform 800ms var(--ease-out); }
.dest-card:hover img { transform: scale(1.05); }
.dest-card .dest-content h3 {
  transition: transform 400ms var(--ease-out);
}
.dest-card:hover .dest-content h3 { transform: translateY(-3px); }
.dest-card .price-badge {
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.dest-card .scopri-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--brand); color: #fff;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  opacity: 0; transform: translateX(8px);
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
  pointer-events: none;
}
.dest-card:hover .price-badge { opacity: 0; transform: translateX(-6px); }
.dest-card:hover .scopri-badge { opacity: 1; transform: translateX(0); }

/* Specialist card — grayscale-to-color + WhatsApp slide-up */
.spec-card {
  flex-direction: column; align-items: stretch;
  padding: 28px;
  transition: transform 500ms var(--ease-out), border-color 300ms, box-shadow 500ms var(--ease-out);
  position: relative; overflow: hidden;
}
.spec-card .spec-top { display: flex; gap: 16px; align-items: center; }
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--brand); }
.spec-avatar {
  filter: grayscale(70%);
  transition: filter 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.spec-card:hover .spec-avatar { filter: grayscale(0); transform: scale(1.04); }
.spec-info { flex: 1; }
.spec-info .signature {
  font-family: var(--font-script); color: var(--brand);
  font-size: 1rem; margin-top: 6px;
  opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 380ms var(--ease-out), max-height 380ms var(--ease-out);
}
.spec-card:hover .signature { opacity: 1; max-height: 28px; }
.spec-actions { margin-top: 14px; }
.spec-btn { transition: transform 220ms var(--ease-out), background 220ms; }
.spec-btn:active { transform: scale(.97); }

/* Review card hover */
.review-card {
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }

/* Featured destination — Apple full-bleed band */
.featured-band {
  position: relative; height: 70vh; min-height: 520px;
  overflow: hidden;
  width: 100vw; margin-left: calc(50% - 50vw);
  display: flex; align-items: center;
  background: #1A2740;
}
.featured-band .bg {
  position: absolute; inset: -10% -2%;
  background-size: cover; background-position: center;
  z-index: 0;
}
.featured-band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.30) 50%, rgba(0,0,0,.10) 100%);
  z-index: 1;
}
.featured-band .featured-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  color: #fff;
  width: 100%;
}
.featured-band .featured-eyebrow {
  font-family: var(--font-script); color: #FFE6A8;
  font-size: 1.4rem; margin-bottom: 8px; display: block;
}
.featured-band h2 {
  color: #fff; font-size: clamp(2rem, 4.4vw, 3.6rem);
  letter-spacing: -.014em; max-width: 720px; line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  margin-bottom: 16px;
}
.featured-band .featured-sub {
  font-size: 1.1rem; max-width: 540px; opacity: .94; line-height: 1.65;
  margin-bottom: 28px;
}

/* Reviews dark band */
.reviews-band {
  background: #1A2740;
  width: 100vw; margin-left: calc(50% - 50vw);
  color: #fff;
  position: relative; overflow: hidden;
}
.reviews-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,155,220,.15) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,181,52,.10) 0, transparent 40%);
  pointer-events: none;
}
.reviews-band .wrap { position: relative; z-index: 1; }
.reviews-band .section-header h2 { color: #fff; }
.reviews-band .section-header p { color: rgba(255,255,255,.72); }
.reviews-band .section-header .overline { color: #FFE6A8; }
.reviews-band .review-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.reviews-band .review-text { color: rgba(255,255,255,.92); font-size: .96rem; }
.reviews-band .review-author .meta .name { color: #fff; }
.reviews-band .review-author .meta .city { color: rgba(255,255,255,.6); }
.reviews-band .trustpilot-fake { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #fff; }
.reviews-band .trustpilot-fake .tp-score { color: #fff; }
.reviews-band .trustpilot-fake small { color: rgba(255,255,255,.7); }

/* Treedom band — full-bleed nature photo */
.treedom-band {
  background: var(--green);
  width: 100vw; margin-left: calc(50% - 50vw);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.treedom-band .bg-photo {
  position: absolute; inset: -10% -2%;
  background-size: cover; background-position: center;
  background-image: url('https://cdn.ideeperviaggiare.it/media/2018/09/giappone-arashiyama-autunno-battello-che-naviga-sul-fiume-1366x909-9687.jpg');
  z-index: 0;
}
.treedom-band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(35,67,12,.92) 0%, rgba(35,67,12,.70) 100%);
  z-index: 1;
}
.treedom-band .wrap { position: relative; z-index: 2; }
.treedom-band h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); margin-bottom: 8px; }
.treedom-band p { font-size: 1rem; line-height: 1.6; }

/* Final CTA — full-bleed dark navy */
.final-cta {
  background: #1A2740;
  width: 100vw; margin-left: calc(50% - 50vw);
  padding: 140px 0;
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.final-cta .backdrop {
  position: absolute; inset: -10% -2%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,155,220,.20) 0, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255,181,52,.10) 0, transparent 40%);
  z-index: 0;
}
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta .overline { color: #FFE6A8; }
.final-cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); max-width: 820px; margin: 0 auto; letter-spacing: -.012em; }
.final-cta p { max-width: 560px; margin: 18px auto 36px; color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.65; }
.final-cta .cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.final-cta .cta-pill.outline { color: #fff !important; border-color: rgba(255,255,255,.4); background: transparent; }
.final-cta .cta-pill.outline:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* Stats counter strip */
.stats-strip {
  padding: 64px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  text-align: center;
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.stat-item { padding: 8px; }
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--brand-2); letter-spacing: -.012em;
  line-height: 1;
}
.stat-label {
  font-size: .85rem; color: var(--ink-3); margin-top: 8px;
  font-family: var(--font-display); font-weight: 500;
}

/* Marquee — destinations ribbon */
.marquee-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  width: 100vw; margin-left: calc(50% - 50vw);
  position: relative;
}
.marquee-band::before, .marquee-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee-band::before { left: 0; background: linear-gradient(90deg, #fff 0%, transparent 100%); }
.marquee-band::after { right: 0; background: linear-gradient(270deg, #fff 0%, transparent 100%); }
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 500; color: var(--ink);
  font-size: .98rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 16px;
}
.marquee-track span::after {
  content: '·'; color: var(--brand); font-weight: 700; font-size: 1.4rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Plane loop band */
.plane-band {
  background: var(--paper-2);
  width: 100vw; margin-left: calc(50% - 50vw);
  padding: 56px 0; position: relative; overflow: hidden;
  text-align: center;
}
.plane-band .plane-eyebrow {
  font-family: var(--font-script); color: var(--brand);
  font-size: 1.4rem; display: block; margin-bottom: 8px;
}
.plane-band h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--ink); margin-bottom: 0;
  letter-spacing: -.01em;
}
.plane-band .plane-track {
  position: relative; height: 64px; margin-top: 24px; overflow: hidden;
}
.plane-band .plane {
  position: absolute; top: 50%;
  width: 80px; height: 64px;
  background-image: url('assets/plane-hero.png');
  background-size: contain; background-repeat: no-repeat; background-position: center;
  transform: translateY(-50%);
  animation: planeLoop 22s linear infinite;
  z-index: 1;
}
.plane-band .plane.back {
  animation-delay: -11s;
  z-index: 0;
  opacity: .35;
  transform: translateY(-50%) scale(.7);
}
@keyframes planeLoop {
  0% { left: -10%; }
  100% { left: 110%; }
}

/* Sticky filter chip row (WeRoad-style) */
.filter-chips {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 32px;
  position: sticky; top: 88px; z-index: 10;
  padding: 14px 16px;
  border-radius: var(--r-pill);
  transition: background 320ms, backdrop-filter 320ms, box-shadow 320ms, padding 320ms;
}
.filter-chips.is-stuck {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-2);
}
.filter-chip {
  border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 8px 16px; cursor: pointer; font-size: .88rem;
  background: #fff; font-family: var(--font-display); color: var(--ink);
  transition: all 220ms var(--ease-out);
}
.filter-chip:hover { border-color: var(--brand); transform: translateY(-1px); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Buttons — micro-press */
.cta-pill { transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
.cta-pill:active { transform: scale(.97); }

/* Underline-grow on text links */
.text-link {
  position: relative; color: var(--brand-2); text-decoration: none;
  font-weight: 600;
}
.text-link::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  height: 1.5px; width: 100%;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 380ms var(--ease-out);
}
.text-link:hover { text-decoration: none; }
.text-link:hover::after { transform: scaleX(1); }

/* Live-feed glow when refreshing */
.live-feed.is-refreshing {
  box-shadow: 0 0 0 4px rgba(0,155,220,.15), var(--shadow-2);
  border-color: var(--brand);
}

/* Header anchor offset */
section[id] { scroll-margin-top: 96px; }

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  [data-parallax] { transform: none !important; }
  .marquee-track, .plane, .plane.back { animation: none; }
  .hero-overline, .hero h1, .hero-sub, .hero-cta-row, .hero-trust-chip {
    opacity: 1; transform: none; animation: none;
  }
  html { scroll-behavior: auto; }
}

/* Mobile: kill parallax + heavy effects */
@media (max-width: 800px) {
  [data-parallax] { transform: none !important; }
  .featured-band, .final-cta { padding: 80px 0; }
  .treedom-band { padding: 64px 0; }
  .filter-chips { position: static; }
  .reveal { transform: translateY(20px); filter: blur(4px); }
  .stats-grid { gap: 24px; }
  .featured-band h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
}

/* Quote page motion uplift */
.quote-hero {
  width: 100vw; margin-left: calc(50% - 50vw);
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.quote-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,181,52,.20) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.18) 0, transparent 40%);
}
.quote-hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); letter-spacing: -.014em; }
.quote-form { margin-top: -36px; padding: 44px; }
@media (max-width: 600px) { .quote-form { padding: 28px; } }
