/* ═══════════════════════════════════
   DESIGN SYSTEM VAGOVIA — Unified System
   Theme-variant via data-theme attribute
═══════════════════════════════════ */
:root {
  /* Base colors */
  --night:    #1c2b3a;
  --night-md: #2d4057;
  --night-lt: #3d5570;
  --cream:    #f5f0e8;
  --cream-d:  #ede6d8;
  --cream-dd: #e0d5c5;
  --white:    #fdfcfa;
  --rose:     #b5695a;
  --rose-d:   #8f4e41;
  --rose-lt:  #fdf2f0;
  --accent:    #c85c1a;
  --accent-d:  #a3470f;
  --accent-lt: #fdf2ec;
  --blue:     #2d5fa3;
  --blue-d:   #1e4275;
  --blue-lt:  #eef3fb;
  --gold:     #b8914a;
  --gold-lt:  #f5edd8;
  --green:    #2d6b4a;
  --green-lt: #e8f4ee;
  --wa:       #25D366;
  --ink:      #1c2b3a;
  --ink-soft: #4a5568;
  --ink-mute: #8a97a8;

  /* Typography */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;
  
  /* Borders & Shadows */
  --r:    10px;
  --r-sm:  6px;
  --r-lg: 16px;
  --sh:    0 2px 16px rgba(28,43,58,.08);
  --sh-md: 0 4px 28px rgba(28,43,58,.12);
  --sh-lg: 0 8px 48px rgba(28,43,58,.18);
  --mw:    1080px;
}

/* Theme: Adventure (Burnt Orange) - Default */
body[data-theme="adventure"] {
  --accent:    #c85c1a;
  --accent-d:  #a3470f;
  --accent-lt: #fdf2ec;
}

/* Theme: Honeymoon (Rose Gold) */
body[data-theme="honeymoon"] {
  --accent:    var(--rose);
  --accent-d:  var(--rose-d);
  --accent-lt: var(--rose-lt);
}

/* Theme: Adventure (Burnt Orange) - Default, già impostato sopra */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body { font-family: var(--f-body); background: var(--cream); color: var(--ink); line-height: 1.75; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }

.container { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; }
.sec-label { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; display: block; }
.sec-title { font-family: var(--f-display); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: var(--night); line-height: 1.2; margin-bottom: .75rem; }
.sec-body  { color: var(--ink-soft); max-width: 660px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════ HEADER ════════ */
.s-header { position: sticky; top: 0; z-index: 900; background: rgba(245,240,232,.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--cream-d); height: 64px; box-shadow: 0 2px 12px rgba(28,43,58,.07); }
.s-header-inner { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.s-logo { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--night); white-space: nowrap; flex-shrink: 0; }
.s-logo em { color: var(--accent); font-style: normal; }
.s-nav { display: none; align-items: center; gap: .15rem; }
@media(min-width:768px) { .s-nav { display: flex; } }
.s-nav a { font-size: .73rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); padding: .45rem .7rem; border-radius: var(--r-sm); transition: color .15s, background .15s; white-space: nowrap; }
.s-nav a:hover { color: var(--night); background: var(--cream-d); }
.s-nav a.active { color: var(--accent); background: var(--accent-lt); }
.s-nav .nav-welcome { color: var(--blue); border: 1.5px solid var(--blue); padding: .4rem .8rem; }
.s-nav .nav-welcome:hover { background: var(--blue-lt); }
.s-nav .nav-school { color: #5a3e9e; border: 1.5px solid #5a3e9e; padding: .4rem .8rem; border-radius: var(--r-sm); }
.s-nav .nav-school:hover { background: #f0ebff; }
.s-actions { display: flex; gap: .6rem; align-items: center; flex-shrink: 0; }
.btn-tel { display: flex; align-items: center; gap: .35rem; background: var(--night); color: white; font-size: .78rem; font-weight: 600; padding: .5rem 1rem; border-radius: 24px; border: none; cursor: pointer; transition: background .2s; white-space: nowrap; min-height: 44px; text-decoration: none; }
.btn-tel:hover { background: var(--night-md); }
.btn-cta-h { background: var(--accent); color: white; font-size: .78rem; font-weight: 600; padding: .5rem 1rem; border-radius: 24px; border: none; cursor: pointer; transition: background .2s; white-space: nowrap; min-height: 44px; display: none; align-items: center; }
@media(min-width:768px) { .btn-cta-h { display: flex; } }
.btn-cta-h:hover { background: var(--accent-d); }
.burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: .5rem; }
@media(min-width:768px) { .burger { display: none; } }
.burger span { display: block; height: 2px; background: var(--night); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: flex; flex-direction: column; background: var(--white); border-bottom: 2px solid var(--cream-d); overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.mobile-menu.open { max-height: 480px; }
.mobile-menu a { padding: .9rem 1.5rem; font-size: .88rem; font-weight: 600; border-bottom: 1px solid var(--cream-d); color: var(--night); }
.mobile-menu a:hover { background: var(--cream); }
.mobile-menu .mm-welcome { color: var(--blue); }
.mobile-menu .mm-school  { color: #5a3e9e; }
.mobile-menu .mm-cta     { background: var(--accent); color: white; text-align: center; border: none; }

/* ════════ BREADCRUMB ════════ */
.breadcrumb { background: var(--white); border-bottom: 1px solid var(--cream-d); padding: .6rem 0; font-size: .72rem; color: var(--ink-mute); }
.breadcrumb-inner { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-mute); transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); font-weight: 600; }

/* ════════ HERO ════════ */
.hero { position: relative; min-height: 88vh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1531366936337-7c912a4589a7?w=1400&q=80'); background-size: cover; background-position: center 40%; transform: scale(1.04); transition: transform 8s ease-out; }
.hero-bg.loaded { transform: scale(1); }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28,43,58,.15) 0%, rgba(28,43,58,.4) 50%, rgba(28,43,58,.82) 100%); }
.hero-content { position: relative; z-index: 2; padding: 5rem 1.25rem 4rem; max-width: var(--mw); margin: 0 auto; width: 100%; }
.hero-pretitle { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.hero-pretitle::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--gold); }
.hero h1 { font-family: var(--f-display); font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 1.25rem; max-width: 780px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: clamp(.95rem, 2vw, 1.1rem); color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 1.5rem; line-height: 1.7; }
.ai-snippet { background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border-left: 3px solid var(--accent); border-radius: var(--r); padding: 1.25rem 1.5rem; font-size: .88rem; color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 2rem; line-height: 1.7; text-align: left; }
.ai-snippet strong { color: white; font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.btn-hero-p { background: var(--accent); color: white; font-size: .9rem; font-weight: 700; padding: .95rem 2rem; border-radius: 28px; border: none; cursor: pointer; min-height: 52px; transition: background .2s, transform .15s; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.btn-hero-p:hover { background: var(--accent-d); transform: translateY(-1px); }
.btn-hero-s { background: transparent; color: white; font-size: .9rem; font-weight: 600; padding: .95rem 2rem; border-radius: 28px; border: 2px solid rgba(255,255,255,.5); cursor: pointer; min-height: 52px; transition: border-color .2s, background .2s; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.btn-hero-s:hover { border-color: white; background: rgba(255,255,255,.1); }
.hero-stats { display: flex; gap: 1.75rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat { text-align: center; }
.hero-stat-n { font-family: var(--f-display); font-size: 1.6rem; font-weight: 700; color: white; line-height: 1; }
.hero-stat-l { font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .2rem; }

/* ════════ INFO BAR ════════ */
.info-bar { background: var(--night); color: rgba(255,255,255,.65); font-size: .75rem; padding: .7rem 0; }
.info-bar-inner { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; align-items: center; justify-content: center; }
.info-bar strong { color: rgba(255,255,255,.9); }
.info-sep { color: rgba(255,255,255,.2); }

/* ════════ MANIFESTO ════════ */
.manifesto-wrap { padding: 5rem 0 4.5rem; background: var(--white); }
.manifesto-inner { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:720px) { .manifesto-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.manifesto-copy { }
.manifesto-copy h2 { font-family: var(--f-display); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; color: var(--night); line-height: 1.25; margin-bottom: 1.25rem; }
.manifesto-copy h2 em { color: var(--accent); font-style: normal; }
.manifesto-copy p { color: var(--ink-soft); font-size: .97rem; line-height: 1.85; margin-bottom: 1rem; }
.manifesto-copy p:last-of-type { margin-bottom: 0; }
.manifesto-visual { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.manifesto-visual img { width: 100%; height: 420px; object-fit: cover; }
.manifesto-badge { position: absolute; bottom: 1.25rem; left: 1.25rem; background: rgba(28,43,58,.82); backdrop-filter: blur(6px); color: white; padding: .75rem 1.1rem; border-radius: var(--r); border-left: 3px solid var(--accent); font-size: .78rem; line-height: 1.5; }
.manifesto-badge strong { display: block; font-size: .92rem; margin-bottom: .1rem; }

/* ════════ VANTAGGI ════════ */
.vantaggi-wrap { padding: 4rem 0; background: var(--cream); }
.vantaggi-inner { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; }
.vantaggi-header { text-align: center; margin-bottom: 3rem; }
.vantaggi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media(max-width:720px) { .vantaggi-grid { grid-template-columns: 1fr; } }
.vantaggio-card { background: var(--white); border-radius: var(--r-lg); padding: 2rem 1.75rem; box-shadow: var(--sh); border: 1px solid var(--cream-d); transition: box-shadow .25s, transform .25s; position: relative; overflow: hidden; }
.vantaggio-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--gold)); }
.vantaggio-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.vantaggio-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.vantaggio-card h3 { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--night); margin-bottom: .6rem; }
.vantaggio-card p { font-size: .85rem; color: var(--ink-soft); line-height: 1.7; }
.vantaggio-card .badge-level { display: inline-flex; align-items: center; gap: .35rem; margin-top: .85rem; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 20px; }
.badge-soft    { background: var(--green-lt); color: var(--green); }
.badge-mod     { background: var(--gold-lt);  color: #7a5c1e; }
.badge-active  { background: var(--accent-lt); color: var(--accent-d); }

/* ════════ TOUR PREVIEW ════════ */
.tours-wrap { padding: 4.5rem 0 5rem; background: var(--white); }
.tours-inner { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; }
.tours-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.tours-link { font-size: .8rem; font-weight: 700; color: var(--accent); letter-spacing: .05em; display: flex; align-items: center; gap: .35rem; transition: gap .2s; }
.tours-link:hover { gap: .6rem; }
.tours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media(max-width:720px) { .tours-grid { grid-template-columns: 1fr; } }
@media(min-width:900px) { .tours-grid { grid-template-columns: repeat(4, 1fr); } }

.tour-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--cream-d); transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.tour-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.tour-img { height: 200px; background-size: cover; background-position: center; position: relative; overflow: hidden; flex-shrink: 0; }
.tour-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(28,43,58,.5) 100%); }
.tour-badges { position: absolute; top: .75rem; left: .75rem; z-index: 2; display: flex; flex-direction: column; gap: .35rem; }
.tour-badge { display: inline-flex; align-items: center; gap: .3rem; font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .6rem; border-radius: 20px; white-space: nowrap; }
.tb-fire  { background: var(--accent); color: white; }
.tb-new   { background: var(--night); color: var(--gold); }
.tb-soon  { background: rgba(255,255,255,.9); color: var(--ink); }
.tour-posti { position: absolute; bottom: .75rem; right: .75rem; z-index: 2; background: rgba(28,43,58,.82); backdrop-filter: blur(4px); color: white; font-size: .62rem; font-weight: 700; padding: .28rem .65rem; border-radius: 20px; display: flex; align-items: center; gap: .3rem; }
.tour-posti .posti-fill { color: var(--gold); }
.tour-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.tour-meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.tour-tag { font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .55rem; border-radius: 20px; }
.tt-days   { background: var(--cream-d); color: var(--night-lt); }
.tt-soft   { background: var(--green-lt); color: var(--green); }
.tt-mod    { background: var(--gold-lt); color: #7a5c1e; }
.tt-flight { background: var(--blue-lt); color: var(--blue-d); }
.tour-body h3 { font-family: var(--f-display); font-size: 1rem; font-weight: 700; color: var(--night); line-height: 1.25; }
.tour-body p  { font-size: .8rem; color: var(--ink-soft); line-height: 1.65; flex: 1; }
.tour-price-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--cream-d); }
.price-from { font-size: .62rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .05em; }
.price-new  { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--accent); line-height: 1; }
.price-per  { font-size: .65rem; color: var(--ink-mute); }
.btn-tour { background: var(--accent); color: white; font-size: .75rem; font-weight: 700; padding: .55rem 1.1rem; border-radius: 20px; border: none; cursor: pointer; text-decoration: none; white-space: nowrap; transition: background .2s; min-height: 44px; display: inline-flex; align-items: center; }
.btn-tour:hover { background: var(--accent-d); }
.btn-tour-out { background: transparent; color: var(--ink-soft); font-size: .75rem; font-weight: 700; padding: .55rem 1.1rem; border-radius: 20px; border: 1.5px solid var(--cream-dd); cursor: pointer; text-decoration: none; white-space: nowrap; transition: border-color .2s, color .2s; min-height: 44px; display: inline-flex; align-items: center; }
.btn-tour-out:hover { border-color: var(--accent); color: var(--accent); }

/* ════════ CTA CATALOGO ════════ */
.cta-cat-wrap { padding: 3.5rem 0; background: linear-gradient(135deg, var(--night) 0%, var(--night-md) 100%); }
.cta-cat-inner { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
.cta-cat-inner h2 { font-family: var(--f-display); font-size: clamp(1.4rem, 3.5vw, 1.9rem); font-weight: 700; color: white; }
.cta-cat-inner p { color: rgba(255,255,255,.65); max-width: 540px; font-size: .95rem; }
.btn-cat-p { background: var(--accent); color: white; font-size: .97rem; font-weight: 700; padding: 1rem 2.25rem; border-radius: 28px; border: none; cursor: pointer; min-height: 54px; transition: background .2s, transform .15s; text-decoration: none; display: inline-flex; align-items: center; gap: .55rem; }
.btn-cat-p:hover { background: var(--accent-d); transform: translateY(-1px); }
.btn-cat-s { background: transparent; color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 600; padding: 1rem 2rem; border-radius: 28px; border: 2px solid rgba(255,255,255,.3); cursor: pointer; min-height: 54px; transition: border-color .2s; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.btn-cat-s:hover { border-color: rgba(255,255,255,.7); color: white; }
.cta-cat-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ════════ PERCHÉ 45+ ════════ */
.perche-wrap { padding: 5rem 0; background: var(--cream); }
.perche-inner { max-width: var(--mw); margin: 0 auto; padding: 0 1.25rem; }
.perche-header { max-width: 600px; margin-bottom: 3rem; }
.perche-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media(max-width:600px) { .perche-grid { grid-template-columns: 1fr; } }
.perche-card { background: var(--white); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--sh); border: 1px solid var(--cream-d); display: flex; gap: 1.1rem; align-items: flex-start; transition: box-shadow .2s; }
.perche-card:hover { box-shadow: var(--sh-md); }
.perche-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.perche-card h3 { font-family: var(--f-display); font-size: .97rem; font-weight: 700; color: var(--night); margin-bottom: .35rem; }
.perche-card p  { font-size: .8rem; color: var(--ink-soft); line-height: 1.7; }

/* ════════ DESTINAZIONI ════════ */
.dest-wrap { background: var(--cream-d); padding: 3rem 1.25rem; }
.dest-inner { max-width: var(--mw); margin: 0 auto; }
.dest-grid { display: grid; gap: .75rem; margin-top: 1.75rem; grid-template-columns: repeat(2, 1fr); }
@media(min-width:480px) { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:700px) { .dest-grid { grid-template-columns: repeat(4, 1fr); } }
@media(min-width:900px) { .dest-grid { grid-template-columns: repeat(5, 1fr); } }
.dest-link {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  background: var(--white); border: 1px solid var(--cream-d);
  padding: .65rem .9rem; border-radius: var(--r);
  font-size: .78rem; font-weight: 600; color: var(--night);
  text-decoration: none; transition: all .2s;
}
.dest-link:hover { background: var(--rose-lt); color: var(--rose-d); border-color: var(--rose-mid); }
.dest-link::before { content: '♥'; font-size: .6rem; color: var(--rose-mid); flex-shrink: 0; }

/* ════════ STAGIONALITÀ ════════ */
.season-wrap { background: var(--cream); padding: 3rem 1.25rem; }
.season-inner { max-width: var(--mw); margin: 0 auto; }
.season-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
@media(min-width:600px) { .season-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:900px) { .season-grid { grid-template-columns: repeat(4, 1fr); } }
.season-card { background: var(--white); border: 1px solid var(--cream-d); border-radius: var(--r); padding: 1.25rem; box-shadow: var(--sh); }
.season-q { display: inline-block; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .6rem; border-radius: 20px; margin-bottom: .75rem; }
.season-q.best { background: #e8f5ee; color: #2d6b4a; }
.season-q.good { background: var(--gold-lt); color: #7a5a20; }
.season-q.possible { background: #fff3e0; color: #8a5000; }
.season-q.avoid { background: #fdecea; color: #8b2020; }
.season-card h4 { font-family: var(--f-display); font-size: .95rem; font-weight: 700; color: var(--night); margin-bottom: .4rem; }
.season-card p { font-size: .78rem; color: var(--ink-soft); line-height: 1.6; }

/* ════════ SOCIAL PROOF ════════ */
.proof-wrap { background: var(--white); padding: 3.5rem 1.25rem; }
.proof-inner { max-width: var(--mw); margin: 0 auto; }
.proof-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 2.5rem; }
.stat-card { background: var(--rose-lt); border: 1px solid rgba(181,105,90,.15); border-radius: var(--r); padding: 1.25rem .75rem; text-align: center; }
.stat-num { font-family: var(--f-display); font-size: 1.9rem; font-weight: 700; color: var(--rose); line-height: 1; margin-bottom: .3rem; }
.stat-lbl { font-size: .65rem; color: var(--ink-mute); line-height: 1.4; }
.reviews-grid { display: grid; gap: 1.5rem; }
@media(min-width:700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
.rev-card { background: var(--white); border: 1px solid var(--cream-d); border-radius: var(--r); padding: 1.5rem; position: relative; box-shadow: var(--sh); }
.rev-card::before { content: '"'; font-family: var(--f-display); font-size: 5rem; color: var(--champagne); position: absolute; top: .2rem; left: .8rem; line-height: 1; }
.rev-stars { color: var(--gold); font-size: .88rem; margin-bottom: .5rem; }
.rev-text { font-size: .82rem; font-style: italic; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1rem; padding-top: .3rem; }
.rev-author { display: flex; align-items: center; gap: .6rem; }
.rev-av { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, #7a2c3e, var(--rose)); color: white; font-size: .68rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rev-name { font-weight: 600; font-size: .8rem; color: var(--night); }
.rev-dest { font-size: .7rem; color: var(--ink-mute); }

/* ════════ FAQ ════════ */
.faq-wrap { padding: 3.5rem 1.25rem; background: var(--white); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { border-top: 1px solid var(--cream-d); }
.faq-item { border-bottom: 1px solid var(--cream-d); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; cursor: pointer; font-size: .95rem; font-weight: 500; color: var(--night); user-select: none; min-height: 44px; transition: color .15s; }
.faq-q:hover { color: var(--rose); }
.faq-icon { width: 28px; height: 28px; min-width: 28px; border-radius: 50%; background: var(--cream-d); color: var(--night); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 300; flex-shrink: 0; transition: transform .2s, background .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--rose); color: white; }
.faq-a { display: none; font-size: .88rem; color: var(--ink-soft); line-height: 1.75; padding-bottom: 1.1rem; padding-right: 2.5rem; }
.faq-item.open .faq-a { display: block; }

/* ════════ FORM PREVENTIVO ════════ */
.prev-wrap {
  background: linear-gradient(135deg, #7a2c3e 0%, var(--rose) 100%);
  padding: 4rem 1.25rem;
}
.prev-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.prev-wrap .sec-label { color: rgba(255,255,255,.7); }
.prev-wrap .sec-title { color: white; font-size: clamp(1.4rem, 4vw, 2rem); }
.prev-sub { color: rgba(255,255,255,.72); font-size: .88rem; margin: .75rem 0 2rem; line-height: 1.65; }
.prev-promise { display: flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.1); border-radius: var(--r-sm); padding: .85rem 1rem; margin-bottom: .85rem; font-size: .82rem; color: rgba(255,255,255,.85); }
.prev-form { display: flex; flex-direction: column; gap: .75rem; text-align: left; }
.prev-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media(max-width:460px) { .prev-row { grid-template-columns: 1fr; } }
.prev-form input, .prev-form select, .prev-form textarea {
  width: 100%; padding: .95rem 1rem; font-size: .95rem; 
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-sm); color: white; min-height: 52px; transition: background .2s, border-color .2s;
}
.prev-form input::placeholder, .prev-form textarea::placeholder { color: rgba(255,255,255,.4); }
.prev-form input:focus, .prev-form select:focus, .prev-form textarea:focus { border-color: white; background: rgba(255,255,255,.18); }
.prev-form select option { background: #7a2c3e; color: white; }
.prev-form textarea { min-height: 100px; resize: vertical; }
.btn-prev { background: white; color: #7a2c3e; font-size: 1rem; font-weight: 700; padding: 1rem 2rem; border-radius: var(--r-sm); border: none; cursor: pointer; min-height: 56px; transition: transform .15s, box-shadow .15s; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.btn-prev:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.prev-privacy { font-size: .65rem; color: rgba(255,255,255,.35); text-align: center; margin-top: .5rem; }
.prev-privacy a { color: rgba(255,255,255,.55); text-decoration: underline; }

/* ════════ PORTALE OFFERTE ════════ */
.portale-wrap { background: var(--cream-d); padding: 2.5rem 1.25rem; border-top: 1px solid var(--cream-dd); }
.portale-inner { max-width: var(--mw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
@media(max-width:640px) { .portale-inner { flex-direction: column; text-align: center; } }
.portale-text h3 { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--night); margin-bottom: .3rem; }
.portale-text p { font-size: .85rem; color: var(--ink-soft); line-height: 1.6; }
.btn-portale { display: inline-flex; align-items: center; gap: .5rem; background: var(--night); color: white; font-size: .9rem; font-weight: 700; padding: .85rem 1.5rem; border-radius: var(--r-sm); text-decoration: none; white-space: nowrap; transition: background .2s, transform .15s; }
.btn-portale:hover { background: var(--rose); transform: translateY(-2px); }

/* ════════ CTA FINALE ════════ */
.cta-wrap { padding: 5rem 1.25rem; background: linear-gradient(135deg, #1a2d1a 0%, var(--night) 60%, #1a2240 100%); text-align: center; }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner .sec-label { justify-content: center; display: flex; }
.cta-inner .sec-title { color: white; margin-bottom: .75rem; }
.cta-sub { color: rgba(255,255,255,.65); margin-bottom: 2.5rem; font-size: .97rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.btn-cta-burnt { background: var(--accent); color: white; font-size: 1rem; font-weight: 700; padding: 1rem 2rem; border-radius: var(--r-sm); border: none; cursor: pointer; min-height: 52px; transition: background .2s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-cta-burnt:hover { background: var(--accent-d); }
.btn-cta-outline { background: transparent; color: white; font-size: 1rem; font-weight: 700; padding: 1rem 2rem; border-radius: var(--r-sm); border: 2px solid rgba(255,255,255,.35); cursor: pointer; min-height: 52px; transition: border-color .2s; text-decoration: none; display: inline-flex; align-items: center; }
.btn-cta-outline:hover { border-color: white; }

/* ════════ FOOTER ════════ */
footer { background: #111c27; color: rgba(255,255,255,.45); padding: 2.5rem 1.25rem 5.5rem; font-size: .78rem; }
@media(min-width:700px) { footer { padding-bottom: 2.5rem; } }
.footer-inner { max-width: var(--mw); margin: 0 auto; display: grid; gap: 2rem; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; margin-bottom: 2rem; }
@media(max-width:900px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
@media(max-width:600px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
.fc-logo { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: .75rem; }
.fc-logo em { color: var(--accent); font-style: normal; }
.fc-desc { font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.9; }
.fc-desc a { color: rgba(255,255,255,.45); }
.fc-title { font-family: var(--f-display); font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: .9rem; }
.fc-links a { display: block; font-size: .78rem; color: rgba(255,255,255,.3); line-height: 2.3; transition: color .2s; }
.fc-links a:hover { color: var(--gold); }
.footer-legal { max-width: var(--mw); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .72rem; }
.footer-legal a { color: var(--gold); }

/* ════════ STICKY ELEMENTS ════════ */
.wa-float { position: fixed; bottom: 5rem; right: 1.25rem; z-index: 800; width: 52px; height: 52px; border-radius: 50%; background: var(--wa); color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(37,211,102,.4); text-decoration: none; transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
@media(min-width:700px) { .wa-float { bottom: 2rem; right: 2rem; } }
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 888; background: white; border-top: 1px solid var(--cream-d); padding: .75rem 1.25rem; display: flex; gap: .6rem; box-shadow: 0 -4px 24px rgba(28,43,58,.12); }
@media(min-width:700px) { .sticky-bar { display: none; } }
.sb-a { flex: 1; background: var(--night); color: white; font-size: .8rem; font-weight: 700; padding: .8rem; border-radius: var(--r-sm); border: none; cursor: pointer; text-align: center; min-height: 48px; text-decoration: none; display: flex; align-items: center; justify-content: center; }
.sb-b { flex: 1; background: var(--accent); color: white; font-size: .8rem; font-weight: 700; padding: .8rem; border-radius: var(--r-sm); border: none; cursor: pointer; text-align: center; min-height: 48px; }

/* ════════ GENERIC SECTIONS (for Honeymoon compatibility) ════════ */
.section { padding: 4rem 0; }
.section-title { font-family: var(--f-display); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: var(--night); text-align: center; margin-bottom: 1rem; }
.section-subtitle { font-size: .95rem; color: var(--ink-soft); text-align: center; max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ════════ GENERIC CARDS (for Honeymoon compatibility) ════════ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; max-width: var(--mw); margin: 0 auto; }
@media(max-width:640px) { .cards-grid { grid-template-columns: 1fr; } }

.card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--cream-d); transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.card__image { width: 100%; height: 220px; object-fit: cover; display: block; }
.card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__title { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--night); margin-bottom: .5rem; line-height: 1.3; }
.card__subtitle { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.6; }
.card__meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--cream-d); }
.card__price { font-family: var(--f-display); font-size: 1.2rem; font-weight: 700; color: var(--accent); }

/* ════════ TESTIMONIALS (for Honeymoon compatibility) ════════ */
.testimonial { background: var(--white); padding: 1.75rem; border-radius: var(--r-lg); box-shadow: var(--sh); border: 1px solid var(--cream-d); }
.testimonial__rating { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .05em; }
.testimonial__text { font-size: .88rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial__author { font-size: .85rem; font-weight: 600; color: var(--accent); }

/* ════════ ITINERARI SECTION ════════ */
.itinerari-grid { display: grid; gap: 1.5rem; }
@media(min-width:560px) { .itinerari-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .itinerari-grid { grid-template-columns: repeat(3, 1fr); } }

/* ════════ ITINERARI CARDS ════════ */
.itin-card { background: var(--white); border: 1px solid var(--cream-d); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); transition: transform .28s, box-shadow .28s; display: flex; flex-direction: column; }
.itin-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.itin-img { position: relative; height: 220px; overflow: hidden; }
.itin-img img { width: 100%; height: 100%; object-fit: cover; }
.itin-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(181,105,90,.9); color: white; font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 20px; }
.itin-nights { position: absolute; bottom: 12px; right: 14px; z-index: 2; background: rgba(28,43,58,.75); color: rgba(255,255,255,.9); font-size: .65rem; font-weight: 600; padding: .25rem .65rem; border-radius: 20px; }
.itin-body { padding: 1.4rem 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.itin-body h3 { font-family: var(--f-display); font-size: 1.1rem; font-weight: 700; color: var(--night); margin-bottom: .5rem; line-height: 1.25; }
.itin-body p { font-size: .82rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1rem; flex: 1; }
.itin-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.1rem; }
.itin-tag { background: var(--cream); color: var(--night-md); font-size: .65rem; font-weight: 600; padding: .2rem .55rem; border-radius: 20px; }
.itin-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--cream-d); }
.itin-price { }
.price-from { font-size: .65rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .06em; }
.price-val { font-family: var(--f-display); font-size: 1.25rem; font-weight: 700; color: var(--rose); line-height: 1; white-space: nowrap; }
.price-unit { font-size: .65rem; color: var(--ink-mute); }
.btn-itin { display: inline-flex; align-items: center; gap: .3rem; font-size: .78rem; font-weight: 700; color: var(--rose); border: 1.5px solid var(--rose); padding: .5rem 1rem; border-radius: var(--r-sm); text-decoration: none; transition: background .2s, color .2s; white-space: nowrap; min-height: 44px; }
.btn-itin:hover { background: var(--rose); color: white; }

/* ════════ COME FUNZIONA (Process) ════════ */
.process-wrap { background: var(--cream); padding: 3.5rem 1.25rem; }
.process-inner { max-width: var(--mw); margin: 0 auto; }
.sec-label { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.sec-title { font-family: var(--f-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--night); line-height: 1.2; margin-bottom: 2.5rem; }
.process-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media(min-width:600px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.proc-card { background: var(--white); border: 1px solid var(--cream-d); border-radius: var(--r); padding: 1.75rem 1.5rem; position: relative; box-shadow: var(--sh); overflow: hidden; text-align: left; }
.proc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--rose) 0%, var(--gold) 100%); }
.proc-num { font-family: var(--f-display); font-size: 3rem; font-weight: 700; color: var(--cream-dd); line-height: 1; margin-bottom: .5rem; }
.proc-card h3 { font-family: var(--f-display); font-size: 1.05rem; font-weight: 700; color: var(--night); margin-bottom: .6rem; }
.proc-card p { font-size: .85rem; color: var(--ink-soft); line-height: 1.7; }

/* ════════ TRUST: PERCHÉ VAGOVIA ════════ */
.trust-wrap { padding: 3.5rem 1.25rem; background: var(--night); }
.trust-inner { max-width: var(--mw); margin: 0 auto; display: grid; gap: 3rem; align-items: center; }
@media(min-width:700px) { .trust-inner { grid-template-columns: 1fr 1fr; } }
.trust-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.trust-pt { display: flex; align-items: flex-start; gap: .85rem; }
.trust-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.trust-pt h4 { font-size: .9rem; font-weight: 700; color: white; margin-bottom: .2rem; }
.trust-pt p { font-size: .8rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.trust-visual { position: relative; }
.trust-img-wrap { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-lg); }
.trust-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.trust-cta-box { position: absolute; bottom: -1rem; left: -1rem; background: white; border-radius: var(--r); padding: 1.1rem 1.25rem; box-shadow: var(--sh-md); border-left: 3px solid var(--rose); min-width: 190px; }
@media(max-width:699px) { .trust-cta-box { position: static; margin-top: 1rem; } }
.trust-cta-box strong { display: block; font-size: .85rem; color: var(--night); margin-bottom: .25rem; }
.trust-cta-box p { font-size: .75rem; color: var(--ink-soft); line-height: 1.5; }
.btn-consult { display: inline-flex; align-items: center; gap: .5rem; background: var(--rose); color: white; font-size: .88rem; font-weight: 700; padding: .9rem 1.75rem; border-radius: var(--r-sm); border: none; cursor: pointer; min-height: 52px; transition: background .2s; margin-top: 1.5rem; text-decoration: none; }
.btn-consult:hover { background: var(--rose-d); }

/* ════════ UTILITIES ════════ */
.btn-primary { background: var(--accent); color: white; font-size: 1rem; font-weight: 700; padding: 1rem 2rem; border-radius: 50px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background .2s, transform .15s; box-shadow: 0 4px 15px rgba(181,105,90,.3); }
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(181,105,90,.4); }
.hidden { display: none; }
