/* =====================================================
   TALITHA KUM — style.css — Riscrittura completa
   ===================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── SIA PRESENTER (calligrafia sullo sfondo) ── */
.sia-topbar {
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
  padding: 18px 24px 12px;
  text-align: center;
  line-height: 1;
  max-height: 80px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.7s ease, opacity 0.5s ease, padding 0.7s ease;
}
.sia-topbar.is-collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.sia-topbar-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: rgba(255, 220, 170, 0.65);
  display: block;
}
.sia-topbar-presenta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0.15em;
  color: rgba(255, 220, 170, 0.65);
  display: block;
  margin-top: 3px;
}
html { scroll-behavior: smooth; overflow-x: hidden; }

:root {
  --dark:      #0d0500;
  --dark-2:    #1a0800;
  --accent:    #c86030;   /* terracotta */
  --accent-v:  #8b4820;   /* umber */
  --warm:      #e09040;   /* amber */
  --on-dark:   #ffffff;
  --on-dark-m: rgba(255,255,255,0.72);
  --light:     #f5ede0;
  --on-light:  #1a0800;
  --on-light-m:rgba(26,8,0,0.62);
  --max-w:     720px;
  --max-w-wide:1100px;
}

body {
  background: var(--dark);
  color: var(--on-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
  padding-bottom: 72px;
}

.container      { max-width: var(--max-w);      margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 24px; }

/* ── SECTIONS ── */
.s-dark   { background: var(--dark);   color: var(--on-dark);  padding: 88px 0; }
.s-dark-2 { background: var(--dark-2); color: var(--on-dark);  padding: 88px 0; }
.s-light  { background: var(--light);  color: var(--on-light); padding: 88px 0; }
.s-video  { background: var(--dark);   padding: 72px 0 80px; border-top: 3px solid var(--accent); border-bottom: 3px solid var(--accent); }
.s-toscana {
  background: #13100a;
  color: #ede4d4;
  padding: 88px 0 0;
  position: relative;
  isolation: isolate;
}
.s-toscana::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='320' height='320' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 320px 320px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
.s-toscana > * { position: relative; z-index: 1; }
.s-toscana .eyebrow      { color: #c89a5a; }
.s-toscana .section-title { color: #f0e6d2; }
.s-toscana .section-body  { color: rgba(237,228,212,0.72); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow-dark { color: var(--accent); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--on-dark);
  margin-bottom: 36px;
}
.title-dark         { color: var(--on-light); }
.section-title-center { text-align: center; }

.section-body        { font-size: 1.07rem; color: var(--on-dark-m); margin-bottom: 28px; line-height: 1.82; }
.section-body-center { text-align: center; }

/* Paragrafo enfatizzato in corsivo nelle sezioni scure */
.section-body-em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.48);
  margin-top: 12px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.65;
}

/* Corpo testo nelle sezioni chiare */
.text-body-light {
  font-size: 1.07rem;
  color: var(--on-light-m);
  margin-bottom: 28px;
  line-height: 1.82;
}

.section-closing-light {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--on-light);
  margin-top: 40px;
  line-height: 1.65;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.1s;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, #ff8c42, #e85d20, #c03a10);
  color: #fff;
  text-shadow: 0 1px 3px rgba(40,10,0,0.6);
  box-shadow: 0 0 0 1px rgba(255,160,80,0.3), 0 6px 32px rgba(255,100,40,0.7), 0 2px 8px rgba(0,0,0,0.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,160,80,0.5), 0 8px 40px rgba(255,100,40,0.85), 0 2px 10px rgba(0,0,0,0.4); }

.btn-hero {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.btn-hero-main {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}
.btn-hero-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  opacity: 0.75;
  text-transform: uppercase;
}
.btn-hero-sub strong { font-weight: 700; opacity: 1; }

.btn-primary-dark {
  background: linear-gradient(135deg, var(--accent), var(--accent-v));
  color: #fff;
  text-shadow: 0 1px 2px rgba(60,15,0,0.35);
  box-shadow: 0 4px 24px rgba(200,70,30,0.4);
}
.btn-primary-dark:hover { opacity: 0.88; }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.78);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

.btn-klarna {
  display: block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.42);
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: border-color 0.2s;
}
.btn-klarna:hover { border-color: rgba(255,255,255,0.3); }

.btn-large { padding: 20px 48px; font-size: 14px; }

/* ── DRUM TOGGLE ── */
.drum-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 3, 20, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  z-index: 50;
  backdrop-filter: blur(10px);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.drum-toggle svg { width: 16px; height: 16px; }
.drum-toggle .drum-wave { opacity: 0; transition: opacity 0.3s; }
.drum-toggle:hover { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.25); }
.drum-toggle.is-playing {
  color: var(--warm);
  border-color: rgba(224,120,48,0.5);
  box-shadow: 0 0 14px rgba(224,120,48,0.25);
}
.drum-toggle.is-playing .drum-wave { opacity: 1; }
.drum-wave-1 { animation: none; }
.drum-wave-2 { animation: none; }
.drum-toggle.is-playing .drum-wave-1 { animation: wave-pulse 1.2s ease-in-out infinite; }
.drum-toggle.is-playing .drum-wave-2 { animation: wave-pulse 1.2s ease-in-out infinite 0.3s; }
@keyframes wave-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(22,6,40,0.98) 0%, rgba(5,2,15,0.99) 100%);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(200,80,48,0.4);
  box-shadow: 0 -10px 40px rgba(160,30,20,0.14);
  padding: 11px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-bar.is-visible { transform: translateY(0); }

.sticky-left   { display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; }
.sticky-name   { font-family: 'Cormorant Garamond', serif; font-size: 17px; letter-spacing: 3px; color: #fff; }
.sticky-detail { font-size: 10px; letter-spacing: 1.5px; color: rgba(255,255,255,0.36); text-transform: uppercase; }

.sticky-mid { flex: 1; display: flex; justify-content: center; }
.sticky-urgency {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm);
  background: rgba(224,120,48,0.1);
  border: 1px solid rgba(224,120,48,0.28);
  border-radius: 20px;
  padding: 5px 16px;
  white-space: nowrap;
}

.sticky-right      { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.sticky-price-wrap { text-align: right; min-width: 140px; }
.sticky-from   { display: block; font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.sticky-amount { display: block; font-family: 'Cormorant Garamond', serif; font-size: 34px; color: var(--warm); line-height: 1; }
.sticky-full   { display: block; font-family: 'Nunito', sans-serif; font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.3); margin-top: 4px; letter-spacing: 0.3px; }
.sticky-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.sticky-actions    { display: flex; flex-direction: row; gap: 8px; align-items: center; }
.sticky-klarna-btn { display: none; }
.sticky-btn    { padding: 13px 28px; font-size: 11px; white-space: nowrap; }

/* ── HERO ── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 38% at 50% 64%, rgba(200,60,20,0.52) 0%, transparent 68%),
    radial-gradient(ellipse 60% 25% at 50% 68%, rgba(224,108,20,0.3) 0%, transparent 55%),
    linear-gradient(
      178deg,
      #060214 0%,
      #160530 18%,
      #32102a 36%,
      #68180e 52%,
      #c04010 60%,
      #7a1e18 74%,
      #3d0c10 90%,
      #200608 100%
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0 24px 160px;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
}

.starfield { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }

/* ── PIANETI ── */
.planet {
  position: absolute;
  border-radius: 50%;
  animation: floatPlanet linear infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes floatPlanet {
  0%   { transform: translateY(0)    rotate(0deg);  }
  25%  { transform: translateY(-15px) rotate(5deg);  }
  50%  { transform: translateY(0)    rotate(0deg);  }
  75%  { transform: translateY(15px) rotate(-5deg); }
  100% { transform: translateY(0)    rotate(0deg);  }
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 0.85; }
}


/* ── EMBER PARTICLES ── */
.ember {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fcd070, #e08030);
  animation: emberRise linear infinite;
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 4px rgba(240,150,40,0.4);
}
@keyframes emberRise {
  0%   { transform: translate(0, 0);         opacity: 0.28; }
  65%  { transform: translate(6px, -110px);  opacity: 0.1;  }
  100% { transform: translate(-4px, -170px); opacity: 0;    }
}

/* ── SHOOTING STARS (stelle cadenti) ── */
.shooting-star {
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.88) 55%, rgba(255,255,255,0) 100%);
  border-radius: 2px;
  pointer-events: none;
  z-index: 3;
  animation: shootStar linear forwards;
}
@keyframes shootStar {
  0%   { opacity: 0; transform: rotate(30deg) translateX(0);    }
  10%  { opacity: 1; }
  80%  { opacity: 0.7; }
  100% { opacity: 0; transform: rotate(30deg) translateX(320px); }
}

/* ── HERO SACRED GEOMETRY WATERMARK ── */
.hero-title-wrap {
  position: relative;
  display: block;
}

.hero-sacred {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 360px;
  opacity: 0.11;
  pointer-events: none;
  z-index: 1;
}

/* ── SHAMANIC ORNAMENT ── */
.shaman-sep {
  display: flex;
  justify-content: center;
  margin: 36px 0;
  color: var(--accent);
  opacity: 0.32;
}

.hero-content {
  position: relative;
  max-width: 680px;
  z-index: 10;
  padding-top: 28px;
}
.hero-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.hero-title-orbit {
  position: relative;
  z-index: 3;
  animation: title-orbit 16s linear infinite;
}

@keyframes title-orbit {
  0%   { transform: translate(2px,  0px);  }
  25%  { transform: translate(0px,  2px);  }
  50%  { transform: translate(-2px, 0px);  }
  75%  { transform: translate(0px, -2px);  }
  100% { transform: translate(2px,  0px);  }
}

.hero-title {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 10vw, 108px);
  font-weight: 300;
  letter-spacing: 10px;
  color: #fff8f0;
  line-height: 1;
  margin-bottom: 14px;
  text-shadow:
    0 0 60px rgba(220,100,30,0.6),
    0 0 120px rgba(180,40,20,0.3),
    0 0 200px rgba(120,30,80,0.15);
  animation: earth-heartbeat 9s ease-in-out infinite;
  transform-origin: center;
}

@keyframes earth-heartbeat {
  0%, 74%, 100% { transform: scale(1); text-shadow: 0 0 60px rgba(220,100,30,0.6), 0 0 120px rgba(180,40,20,0.3), 0 0 200px rgba(120,30,80,0.15); }
  76% { transform: scale(1.012);
        text-shadow: 0 0 60px rgba(220,100,30,0.6), 0 0 120px rgba(180,40,20,0.3), 0 0 200px rgba(120,30,80,0.15), 0 0 40px rgba(212,96,16,0.8); }
  78% { transform: scale(1.002); }
  80% { transform: scale(1.02);
        text-shadow: 0 0 60px rgba(220,100,30,0.6), 0 0 120px rgba(180,40,20,0.3), 0 0 200px rgba(120,30,80,0.15), 0 0 60px rgba(212,96,16,0.9); }
  84% { transform: scale(1); }
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  letter-spacing: 1px;
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 28px;
}

.hero-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(224,120,48,0.10);
  border: 1px solid rgba(224,120,48,0.32);
  border-radius: 30px;
  padding: 9px 20px;
  margin: 18px 0 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #e8955a;
}
.hero-scarcity strong { color: #fff; font-weight: 700; }

.scarcity-pulse {
  width: 8px;
  height: 8px;
  background: var(--warm);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-warm 2s ease-in-out infinite;
}
@keyframes pulse-warm {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(224,120,48,0.5); }
  60%       { opacity: 0.85; box-shadow: 0 0 0 6px rgba(224,120,48,0); }
}
.hero-meta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.52);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.hero-meta strong { color: #fff; }
.hero-sep { color: var(--accent); }
.hero-posti {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  margin: -12px 0 20px;
}
.hero-posti strong { color: #fff; font-weight: 700; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-silhouette {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}
.hero-silhouette::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 35% 80% at 50% 85%, rgba(255,190,70,0.22) 0%, rgba(200,110,20,0.08) 55%, transparent 80%),
    radial-gradient(ellipse 110% 90% at 50% 115%, rgba(200, 100, 20, 0.40) 0%, rgba(180, 80, 10, 0.18) 38%, transparent 60%),
    radial-gradient(ellipse 40%  80% at 12% 110%, rgba(210, 110, 20, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 40%  80% at 88% 110%, rgba(210, 110, 20, 0.28) 0%, transparent 65%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.hs-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 18px;
  background: linear-gradient(to top, #0d0500 0%, #1a0800 55%, transparent 100%);
  z-index: 6;
}
.hs-img {
  position: absolute;
  display: block;
  mix-blend-mode: multiply;
  z-index: 1;
}
.hs-u1 { left:  0%;  bottom: 0; height: 108px; }
.hs-t1 { left:  8%;  bottom: 0; height:  88px; }
.hs-u2 { left: 17%;  bottom: 0; height:  82px; transform: scaleX(-1); }
.hs-u3 { left: 28%;  bottom: 0; height:  70px; }
.hs-u4 { left: 43%;  bottom: 0; height:  92px; transform: scaleX(-1); }
.hs-t2 { left: 50%;  bottom: 0; height: 130px; transform: translateX(-50%); }
.hs-u5 { left: 57%;  bottom: 0; height:  78px; }
.hs-u6 { left: 66%;  bottom: 0; height:  66px; transform: scaleX(-1); }
.hs-t3 { left: 72%;  bottom: 0; height: 105px; }
.hs-u7 { left: 81%;  bottom: 0; height:  84px; transform: scaleX(-1); }
.hs-u8 { right: 0%;  bottom: 0; height:  98px; }
@media (max-width: 640px) {
  .hero-silhouette { height: 130px; }
  .hs-t1, .hs-u2, .hs-u3, .hs-u4, .hs-u6, .hs-t3, .hs-u7 { display: none; }
  .hs-u1 { height: 74px; }
  .hs-t2 { height: 88px; }
  .hs-u5 { height: 66px; left: 58%; }
  .hs-u8 { height: 70px; }
}

/* ── CAMPFIRE ─────────────────────────────────────────── */
.campfire {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 220px;
  height: 150px;
  z-index: 7;
  pointer-events: none;
}
.campfire__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 150px;
  background: radial-gradient(ellipse 55% 48% at 50% 96%,
    rgba(255, 145, 20, 0.44) 0%,
    rgba(255, 80, 0, 0.20) 34%,
    rgba(200, 50, 0, 0.07) 58%,
    transparent 80%
  );
  animation: campfire-glow 2.6s ease-in-out infinite alternate;
}
@keyframes campfire-glow {
  0%   { opacity: 0.78; transform: translateX(-50%) scaleX(1.00); }
  38%  { opacity: 1.00; transform: translateX(-50%) scaleX(1.09); }
  70%  { opacity: 0.88; transform: translateX(-50%) scaleX(0.95); }
  100% { opacity: 0.93; transform: translateX(-50%) scaleX(1.04); }
}
.campfire__logs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(0.4);
  transform-origin: bottom center;
  width: 32px;
  height: 10px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.9;
  overflow: visible;
}
.campfire__canvas {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(1px);
  z-index: 2;
}

/* ── VIDEO (dentro hero) ── */
.hero-video-wrap {
  max-width: 820px;
  width: 100%;
  margin: 32px auto 0;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 2px solid #D4AF37;
  border-radius: 6px;
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
  background: #000;
  cursor: pointer;
}
.tania-vid {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: auto;
}
.hero-video-wrap:hover {
  box-shadow: 0 0 28px rgba(212,175,55,0.45);
}
.tania-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(7, 4, 10, 0.12), rgba(7, 4, 10, 0.34));
  pointer-events: none;
  transition: opacity 0.24s ease, background 0.24s ease;
}
.hero-video-wrap:not(.is-paused) .tania-video-overlay {
  opacity: 0;
}
.tania-video-overlay__glow {
  position: absolute;
  inset: auto 50% 18%;
  width: min(48vw, 320px);
  height: min(14vw, 88px);
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,125,42,0.42) 0%, rgba(255,125,42,0.18) 42%, rgba(255,125,42,0) 72%);
  filter: blur(18px);
}
.tania-video-overlay__button {
  position: relative;
  z-index: 1;
  width: clamp(86px, 11vw, 118px);
  height: clamp(86px, 11vw, 118px);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.32), 0 0 42px rgba(255,121,54,0.22);
  transition: transform 0.24s ease;
}
.hero-video-wrap:hover .tania-video-overlay__button {
  transform: scale(1.04);
}
.tania-video-overlay__button svg {
  width: 100%;
  height: 100%;
}
.hero-video-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.42);
  margin-top: 14px;
  letter-spacing: 0.5px;
}
.video-cta { text-align: center; margin-top: 28px; position: relative; z-index: 12; }
.video-ph {
  background-color: rgba(0,0,0,0.25);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #D4AF37;
  box-shadow: 0 0 18px rgba(212,175,55,0.35), inset 0 0 18px rgba(212,175,55,0.1);
  border-radius: 6px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.video-ph:hover {
  border-color: rgba(212,175,55,1);
  box-shadow: 0 0 32px rgba(212,175,55,0.45), inset 0 0 18px rgba(212,175,55,0.12);
}
.play-btn {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--warm), var(--accent), var(--accent-v));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(200,80,30,0.45);
  animation: play-pulse 2.8s ease-in-out infinite;
}
.play-btn::before {
  content: '';
  display: block;
  border-style: solid;
  border-width: 11px 0 11px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 5px;
}
@keyframes play-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(200,80,30,0.45); transform: scale(1); }
  50%       { box-shadow: 0 0 65px rgba(200,80,30,0.8), 0 0 100px rgba(200,80,30,0.2); transform: scale(1.07); }
}

/* ── SCROLL HINT post-video ── */
.scroll-hint {
  position: relative;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 14;
}
.scroll-hint-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.scroll-hint-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
}
.scroll-hint-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  animation: arrow-bounce 1.6s ease-in-out infinite;
  margin-top: 4px;
  cursor: pointer;
}
.scroll-hint-circle svg {
  width: 18px;
  height: 18px;
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}
.play-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 1px;
}

/* ── PAIN LIST [LIGHT] ── */
.pain-list { list-style: none; margin: 32px 0; }
.pain-list li {
  padding: 16px 0 16px 32px;
  border-bottom: 1px solid rgba(22,8,36,0.08);
  font-size: 1.05rem;
  color: var(--on-light);
  position: relative;
  line-height: 1.6;
}
.pain-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── TWO-COL [DARK] ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 40px 0; }
.two-col-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 28px 24px;
}
.two-col-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.two-col-block p { font-size: 0.95rem; color: var(--on-dark-m); line-height: 1.7; }
.two-col-note {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
}

/* ── AMQ [LIGHT] ── */
.amq-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 36px 0; }
.amq-card-light {
  background: #fff;
  border: 1px solid rgba(22,8,36,0.08);
  border-radius: 4px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(22,8,36,0.06);
}
.amq-card-light h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--on-light); margin-bottom: 12px; }
.amq-card-light p  { font-size: 0.95rem; color: var(--on-light-m); line-height: 1.7; }
.amq-separator {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--on-light-m);
  margin-bottom: 32px;
}
.amq-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.amq-list-title {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--on-light);
  margin-bottom: 12px;
}
.check-list { list-style: none; }
.check-list li {
  padding: 8px 0 8px 28px;
  font-size: 0.95rem;
  color: var(--on-light-m);
  position: relative;
  border-bottom: 1px solid rgba(22,8,36,0.06);
}
.check-no  li::before { content: '✗'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }
.check-yes li::before { content: '✓'; position: absolute; left: 0; color: #27ae60; font-weight: 700; }

/* ── LINEAGE [DARK] ── */
.lineage-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}
.lineage-dot {
  width: 10px; height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  position: relative;
}
.lineage-dot + .lineage-dot::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  transform: translateY(-50%);
}
.lineage-you {
  width: auto; height: auto;
  background: var(--accent);
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

/* ── TANIA [LIGHT] ── */
.tania-layout { display: flex; flex-direction: column; gap: 40px; margin-top: 32px; }
.tania-photo-col { text-align: center; }
.tania-ph {
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: auto;
  border-radius: 4px;
  display: block;
  object-fit: unset;
  margin: 0 auto;
}
.tania-badge {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--warm), var(--accent));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 3px;
  text-align: center;
}
.tania-intro { font-size: 1.05rem; color: var(--on-light); line-height: 1.75; margin-bottom: 24px; }
.tania-tags  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  background: rgba(22,8,36,0.07);
  border: 1px solid rgba(22,8,36,0.1);
  border-radius: 3px;
  padding: 5px 10px;
  font-size: 0.78rem;
  color: var(--on-light-m);
}
.tania-quote { border-left: 3px solid var(--accent); padding-left: 18px; }
.tania-quote p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--on-light); line-height: 1.65; }

/* ── GALLERY [DARK] ── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 36px 0; }
.gallery-item img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; display: block; }

.day-blocks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 40px 0; }
.day-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 22px 18px;
}
.day-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.day-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.day-block p { font-size: 0.88rem; color: var(--on-dark-m); line-height: 1.6; }

.puglia-box {
  background: rgba(200,120,74,0.1);
  border: 1px solid rgba(200,120,74,0.25);
  border-radius: 4px;
  padding: 32px 28px;
  margin-top: 12px;
}
.puglia-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.puglia-box p { font-size: 0.97rem; color: var(--on-dark-m); line-height: 1.7; }

/* ── VALUE TABLE [LIGHT] ── */
.value-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.value-table td {
  padding: 14px 0;
  font-size: 0.97rem;
  color: var(--on-light);
  border-bottom: 1px solid rgba(22,8,36,0.08);
}
.value-table td:last-child { text-align: right; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; white-space: nowrap; }
.value-total td { font-size: 1.05rem; border-top: 2px solid rgba(22,8,36,0.15); border-bottom: none; padding-top: 18px; }
.value-highlight {
  background: linear-gradient(135deg, var(--warm), var(--accent), var(--accent-v));
  border-radius: 6px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  margin-top: 8px;
}
.value-from  { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.value-price { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: #fff; line-height: 1; }
.value-price strong { font-size: 3.2rem; }
.value-note  { font-size: 0.88rem; color: rgba(255,255,255,0.75); max-width: 340px; line-height: 1.5; }

/* ── TESTIMONIALS [DARK] ── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.testimonial-ph {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.testimonial-icon { font-size: 2rem; }
.testimonial-ph p { font-size: 0.82rem; color: var(--on-dark-m); }

/* ── FOR LIST [LIGHT] ── */
.for-list { list-style: none; margin: 28px 0; }
.for-list li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid rgba(22,8,36,0.07);
  font-size: 1.02rem;
  color: var(--on-light);
  position: relative;
  line-height: 1.6;
}
.for-list li::before { content: '✓'; position: absolute; left: 0; color: #27ae60; font-weight: 700; }

/* ── PRICING ── */
.pricing-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  margin: 44px 0 32px;
  align-items: start;
}

/* ── PRICING 2-COL ── */
.pricing-2col {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  margin: 48px 0 36px;
  align-items: start;
}
.p3-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.p3-card--hero {
  border-color: var(--accent);
  background: rgba(200,80,48,0.08);
  box-shadow: 0 0 60px rgba(200,80,48,0.15);
  padding-top: 36px;
}
.p3-hero-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--warm), var(--accent));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.p3-ticket-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
}
.p3-card--hero .p3-ticket-label { color: var(--accent); opacity: 0.9; }
.p3-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}
.p3-body {
  font-size: 0.87rem;
  color: var(--on-dark-m);
  line-height: 1.65;
}
.p3-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.p3-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: #fff;
  line-height: 1;
}
.p3-price-was {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.p3-per {
  font-size: 0.85rem;
  color: var(--on-dark-m);
}
.p3-note {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
  margin-top: -4px;
}
.p3-klarna-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
  padding: 9px 12px;
  text-align: center;
}
.p3-klarna-rate {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
}
.p3-list {
  list-style: none;
  flex: 1;
}
.p3-list li {
  font-size: 0.82rem;
  padding: 5px 0 5px 16px;
  color: var(--on-dark-m);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.p3-list li:last-child { border-bottom: none; }
.p3-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 0.72rem; }
.p3-list--sm li { font-size: 0.78rem; padding: 4px 0 4px 14px; }
.p3-room-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin: 10px 0 18px;
  padding: 10px 12px;
  border-left: 2px solid rgba(255,255,255,0.15);
}
.p3-includes {
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 12px 14px;
}
.p3-includes-title {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  margin-bottom: 8px;
}

/* Duo card pricing block */
.p3-duo-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.p3-duo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.p3-duo-row--deal { color: rgba(255,255,255,0.85); }
.p3-duo-label { }
.p3-duo-save {
  font-style: normal;
  font-size: 0.72rem;
  background: rgba(200,80,48,0.25);
  color: var(--warm);
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 6px;
}
.p3-duo-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #fff;
}
.p3-duo-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 8px;
  margin-top: 4px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.p3-duo-total-row strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 400;
}
.p3-duo-per {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  text-align: right;
  margin-top: -4px;
}
.p3-duo-note {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  margin-top: -4px;
}
.p3-card .btn-primary { width: 100%; text-align: center; font-size: 11px; padding: 13px 10px; }

@media (max-width: 700px) {
  .pricing-2col { grid-template-columns: 1fr; }
  .p3-card--hero { order: -1; }
}

/* Entry card */
.pricing-entry-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}
.entry-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm);
}
.entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
}
.entry-body {
  font-size: 0.9rem;
  color: var(--on-dark-m);
  line-height: 1.72;
  flex: 1;
}
.entry-days {
  list-style: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  overflow: hidden;
}
.entry-days li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.entry-days li:last-child { border-bottom: none; }
.entry-day-dot {
  width: 6px; height: 6px;
  background: var(--warm);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}
.entry-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.entry-amount { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: #fff; line-height: 1; }
.entry-per    { font-size: 0.85rem; color: var(--on-dark-m); }
.entry-klarna-note { font-size: 0.72rem; color: rgba(255,255,255,0.28); text-align: center; }

.btn-ghost-warm {
  background: transparent;
  border: 1px solid rgba(224,120,48,0.45);
  color: rgba(255,200,140,0.85);
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 24px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.btn-ghost-warm:hover { border-color: rgba(224,120,48,0.75); color: rgba(255,215,160,1); }

/* Pro section */
.pricing-pro-header { margin-bottom: 20px; }
.pro-eyebrow-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--warm), var(--accent));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.pro-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}
.pro-subtitle { font-size: 0.92rem; color: var(--on-dark-m); line-height: 1.6; }

.pro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pro-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin-top: 12px;
}
.pro-card-featured {
  border-color: var(--accent);
  background: rgba(200,80,48,0.07);
  box-shadow: 0 0 40px rgba(200,80,48,0.12);
}
.pro-card-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--warm), var(--accent));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pro-card-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm);
  border: 1px solid rgba(224,120,48,0.3);
  border-radius: 3px;
  padding: 2px 8px;
  align-self: flex-start;
}
.pro-card-name  { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: #fff; }
.pro-card-price { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: #fff; line-height: 1; }
.pro-per        { font-size: 0.8rem; color: var(--on-dark-m); }
.pro-card-rate  { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.72); }
.pro-card-list  { list-style: none; flex: 1; }
.pro-card-list li {
  font-size: 0.82rem;
  padding: 5px 0 5px 16px;
  color: var(--on-dark-m);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.pro-card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 0.72rem; }
.pro-card .btn-primary { width: 100%; text-align: center; font-size: 11px; padding: 12px 10px; }
.pro-card .btn-klarna  { margin-top: 2px; }

.pricing-trust { display: flex; justify-content: center; gap: 12px; font-size: 0.78rem; color: var(--on-dark-m); flex-wrap: wrap; }

/* ── GARANZIA [LIGHT] ── */
.guarantee-box { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.guarantee-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(22,8,36,0.08);
  border-radius: 4px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(22,8,36,0.05);
}
.guarantee-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.guarantee-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--on-light); margin-bottom: 6px; }
.guarantee-block p  { font-size: 0.95rem; color: var(--on-light-m); line-height: 1.65; }
.guarantee-note { text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--on-light-m); }

/* ── FAQ [DARK] ── */
.faq-list   { margin-top: 32px; }
.faq__item  { border-bottom: 1px solid rgba(255,255,255,0.07); }
.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  gap: 20px;
  transition: color 0.2s;
}
.faq__trigger:hover { color: var(--on-dark-m); }
.faq__icon { flex-shrink: 0; font-size: 1.5rem; color: var(--accent); transition: transform 0.3s; line-height: 1; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__body p { padding-bottom: 20px; color: var(--on-dark-m); font-size: 0.97rem; line-height: 1.7; }

/* ── CTA FINALE ── */
.s-cta-final {
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(180,50,20,0.25) 0%, transparent 65%),
    linear-gradient(175deg, #1c0828 0%, #0a0418 50%, #180620 100%);
  padding: 96px 0;
  text-align: center;
  border-top: 1px solid rgba(200,80,30,0.25);
}
.cta-pre {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 4px;
  margin: 24px 0 16px;
}
.cta-meta     { font-size: 0.82rem; color: rgba(255,255,255,0.42); letter-spacing: 1px; margin-bottom: 36px; }
.cta-deadline { margin-top: 18px; font-size: 0.75rem; color: rgba(255,255,255,0.28); letter-spacing: 1px; }

/* ── EMAIL OPT-IN ── */
.optin-box   { max-width: 480px; margin: 0 auto; text-align: center; }
.optin-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: #fff; margin-bottom: 10px; }
.optin-sub   { color: var(--on-dark-m); margin-bottom: 28px; }
.optin-form  { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.optin-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
}
.optin-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.optin-form input[type="email"]:focus { border-color: var(--accent); }
.optin__thanks { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: #fff; padding: 20px 0; }

/* ── LEAD MAGNET POPUP ── */
.lm-popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 4, 20, 0.82);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.lm-popup-overlay.is-open { opacity: 1; pointer-events: auto; }
.lm-popup {
  background: linear-gradient(145deg, #1a0820 0%, #2d0f2a 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 40px 36px 36px;
  max-width: 440px; width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.60);
}
.lm-popup__exit {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.28); font-size: 11.5px;
  text-align: center; width: 100%; padding: 4px 0 0;
  font-family: inherit; transition: color 0.2s; text-decoration: underline;
}
.lm-popup__exit:hover { color: rgba(255,255,255,0.55); }
.lm-popup__eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent, #c87028); margin-bottom: 14px;
}
.lm-popup__title-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
.lm-popup__doc-icon { width: 36px; height: 44px; flex-shrink: 0; margin-top: 4px; }
.lm-popup__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem; font-weight: 300;
  color: #fff; line-height: 1.25; margin-bottom: 0;
}
.lm-popup__sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.58);
  line-height: 1.6; margin-bottom: 28px;
}
.lm-popup__form { display: flex; flex-direction: column; gap: 11px; }
.lm-popup__form input[type="text"],
.lm-popup__form input[type="email"],
.lm-popup__form input[type="tel"] {
  width: 100%; padding: 12px 14px; box-sizing: border-box;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; color: #fff; font-size: 0.9rem;
  outline: none; transition: border-color 0.2s; font-family: inherit;
}
.lm-popup__form input::placeholder { color: rgba(255,255,255,0.28); }
.lm-popup__form input:focus { border-color: rgba(255,255,255,0.45); }
.lm-popup__form input.is-err { border-color: #e05c5c; }
.lm-popup__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lm-popup__check {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.lm-popup__check input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: #7030a0; width: 14px; height: 14px; cursor: pointer; }
.lm-popup__check a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.lm-popup__check--muted { color: rgba(255,255,255,0.38); }
.lm-popup__error { font-size: 12px; color: #e05c5c; margin: 0; min-height: 16px; }
.lm-popup__note { font-size: 11.5px; color: rgba(255,255,255,0.32); text-align: center; margin: 0; }
.lm-popup__thanks {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.3rem;
  color: #fff; text-align: center; padding: 20px 0; margin: 0;
}
@media (max-width: 480px) {
  .lm-popup { padding: 28px 18px 24px; }
  .lm-popup__title { font-size: 1.5rem; }
  .lm-popup__row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; letter-spacing: 2px; color: rgba(255,255,255,0.38); }
.footer-links { display: flex; gap: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-links a { color: rgba(255,255,255,0.28); text-decoration: none; }
.footer-copy  { font-size: 0.72rem; color: rgba(255,255,255,0.22); }
.footer-disclaimer { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.22); margin-top: 6px; }

/* ── BOOKING OVERLAY ── */
.bk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,3,0,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.bk-overlay.is-open { opacity: 1; pointer-events: auto; }

.bk-modal {
  background:
    radial-gradient(circle at 22% 8%, rgba(146,96,255,0.22) 0%, rgba(146,96,255,0) 34%),
    radial-gradient(circle at 86% 18%, rgba(232,200,122,0.16) 0%, rgba(232,200,122,0) 28%),
    radial-gradient(ellipse at 50% 124%, rgba(255,122,34,0.28) 0%, rgba(213,48,14,0.14) 24%, rgba(255,122,34,0) 58%),
    linear-gradient(160deg, #120926 0%, #080516 48%, #03030b 100%);
  border: 1px solid rgba(185,160,255,0.18);
  border-radius: 18px;
  padding: 34px 40px 34px;
  max-width: 540px;
  width: 100%;
  position: relative;
  isolation: isolate;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.88),
    0 0 0 1px rgba(185,160,255,0.08),
    0 0 90px rgba(88,62,170,0.24);
  transform-origin: center center;
  transition: transform 0.15s ease-out;
}
.bk-modal::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 26%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,89,22,0.22), rgba(255,89,22,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.bk-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.38);
  font-size: 18px; line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bk-close[hidden] { display: none !important; }
.bk-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.8);
}

.bk-eyebrow {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(232,200,122,0.92);
  margin-bottom: 6px;
}
.bk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 300;
  color: #fff; line-height: 1.25;
  margin-bottom: 10px;
}
.bk-main-title {
  font-size: clamp(31px, 7vw, 44px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.bk-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.45;
  margin: -2px 0 12px;
}

.bk-intro {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 14px;
}
.bk-intro strong {
  color: rgba(232,200,122,0.98);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.bk-timer-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  column-gap: 16px;
  row-gap: 10px;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(185,160,255,0.16);
}
.bk-timer-copy span {
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  line-height: 1.35;
  display: block;
}
.bk-timer-head strong {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.35rem;
  line-height: 0.9;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}
.bk-timer-track {
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  overflow: hidden;
  transform: translateZ(0);
}
.bk-timer-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e8c87a, #ff7a22, #d5300e);
  transform-origin: left center;
  transform: scaleX(1);
  transition: transform 1s linear;
}
.bk-timer-note {
  grid-column: 1 / -1;
  display: block;
  margin-top: -4px;
  color: rgba(232,200,122,0.78);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.bk-timer-head-intro {
  margin: 0 0 16px;
}
.bk-step-a-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5.5vw, 36px);
  line-height: 1.06;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0 0 8px;
}
.bk-plan-promo-sub {
  font-size: 13px;
  color: rgba(232,200,122,0.95);
  margin: 0 0 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
}


/* ── Plan cards ── */
.bk-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}
.bk-plan {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 20px 16px 16px;
  cursor: pointer;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.22s, background 0.22s, transform 0.18s, box-shadow 0.22s;
  position: relative;
}
.bk-plan:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.055);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.bk-plan.is-active {
  border-color: rgba(232,200,122,0.9);
  background: rgba(126,90,255,0.10);
  box-shadow: 0 0 0 1px rgba(232,200,122,0.22), 0 12px 32px rgba(0,0,0,0.3);
}
.bk-plan-featured {
  border-color: rgba(185,160,255,0.35);
  background: rgba(126,90,255,0.07);
  box-shadow: 0 0 20px rgba(126,90,255,0.10);
}
.bk-plan-featured:hover {
  border-color: rgba(232,200,122,0.72);
  background: rgba(126,90,255,0.12);
  box-shadow: 0 0 32px rgba(126,90,255,0.22), 0 12px 32px rgba(0,0,0,0.35);
}
.bk-plan-day {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.025);
  padding: 16px 18px;
}
.bk-plan-badge {
  position: absolute;
  top: -11px; left: 14px;
  background: linear-gradient(90deg, #7e5aff, #d8c27a);
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(126,90,255,0.45);
}
.bk-plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
}
.bk-plan-prices {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 3px;
}
.bk-plan-full {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
}
.bk-plan-launch {
  font-size: 1rem;
  color: rgba(232,200,122,0.62);
  text-decoration: line-through;
  font-weight: 700;
}
.bk-plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.35rem;
  color: #fff4d0;
  line-height: 1;
  font-weight: 500;
  text-shadow: 0 0 18px rgba(255,122,34,0.16);
}
.bk-plan-note {
  font-size: 0.71rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.45;
  margin-top: 2px;
}
.bk-plan-note-small {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.26);
}
.bk-plan-klarna {
  font-size: 0.71rem;
  color: rgba(232,200,122,0.92);
  opacity: 0.82;
  margin-top: 4px;
}

/* ── Recap selezione in Step E ── */
.bk-selected-recap {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(232,200,122,0.95);
  margin-bottom: 12px;
  padding: 8px 14px;
  background: rgba(126,90,255,0.10);
  border-left: 2px solid rgba(232,200,122,0.82);
  border-radius: 4px;
}
.bk-selected-recap[hidden] { display: none !important; }

.bk-benefits {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 12px 14px;
  background: rgba(126,90,255,0.10);
  border: 1px solid rgba(185,160,255,0.14);
  border-radius: 12px;
}
.bk-benefits li {
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  line-height: 1.35;
  padding-left: 24px;
  position: relative;
}
.bk-benefits li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  top: 0;
  color: rgba(232,200,122,0.95);
  font-size: 1.1rem;
}

.bk-form-title {
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 10px;
}

/* ── Reassurance ── */
.bk-reassurance {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  text-align: center;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  letter-spacing: 0.2px;
  line-height: 1.45;
}
.bk-cta-main,
.bk-cta-sub {
  display: block;
}
.bk-cta-main {
  font-weight: 800;
  letter-spacing: 0.09em;
}
.bk-cta-sub {
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.82;
}

@media (max-width: 480px) {
  .bk-modal {
    padding: 18px 16px 16px;
    border-radius: 14px;
  }
  .bk-timer-head {
    padding: 8px 10px;
    margin-bottom: 12px;
  }
  .bk-timer-head strong {
    font-size: 1.7rem;
  }
  .bk-timer-note {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .bk-title {
    font-size: 1.4rem !important;
    margin-bottom: 4px !important;
  }
  .bk-step-a-title {
    font-size: 2rem;
  }
  .bk-subtitle {
    font-size: 0.82rem !important;
    margin-bottom: 12px !important;
  }
  .bk-plans {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }
  .bk-plan {
    padding: 10px 12px 10px;
    gap: 2px;
    border-radius: 10px;
  }
  .bk-plan-badge {
    top: -9px;
    font-size: 7.5px;
    padding: 2px 8px;
  }
  .bk-plan-name {
    font-size: 0.95rem;
  }
  .bk-plan-price {
    font-size: 1.5rem;
  }
  .bk-plan-launch {
    font-size: 0.9rem;
  }
  .bk-plan-note {
    font-size: 0.65rem;
    line-height: 1.35;
    margin-top: 1px;
  }
  .bk-plan-klarna {
    font-size: 0.65rem;
    margin-top: 1px;
  }
  .bk-plan-day {
    flex-direction: row !important;
    align-items: center !important;
    padding: 10px 12px !important;
  }
}

/* Dual: solo / group */
.bk-dual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-opt {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.bk-opt:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.07); }
.bk-opt-featured { border-color: var(--accent); background: rgba(200,80,48,0.07); }
.bk-opt-featured:hover { background: rgba(200,80,48,0.12); }
.bk-opt-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--warm), var(--accent));
  color: #fff; font-size: 8px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 12px; border-radius: 20px; white-space: nowrap;
}
.bk-opt-icon { font-size: 1.3rem; }
.bk-opt-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: #fff; }
.bk-opt-price { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: #fff; line-height: 1; }
.bk-opt-price small { font-size: 0.85rem; color: var(--on-dark-m); }
.bk-opt-note { font-size: 0.76rem; color: var(--accent); margin-top: 2px; }

/* Room selection */
.bk-rooms { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.bk-room {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 20px 16px;
  text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.bk-room:hover { border-color: rgba(255,255,255,0.3); }
.bk-room.is-active { border-color: var(--accent); background: rgba(200,80,48,0.08); }
.bk-room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: #fff; }
.bk-room-price { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; color: #fff; line-height: 1; }
.bk-room-note { font-size: 0.76rem; color: var(--on-dark-m); margin-top: 2px; }

/* Group box */
.bk-group-box {
  background: rgba(200,80,48,0.07);
  border: 1px solid rgba(200,80,48,0.22);
  border-radius: 8px; padding: 24px;
  margin-bottom: 24px; text-align: center;
}
.bk-group-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: #fff; line-height: 1; }
.bk-group-per { font-size: 1.2rem; color: var(--on-dark-m); }
.bk-group-total { font-size: 0.95rem; color: var(--on-dark-m); margin-top: 6px; }
.bk-group-saving { font-size: 0.8rem; color: var(--warm); margin-top: 4px; }
.bk-group-list { list-style: none; margin-top: 16px; text-align: left; }
.bk-group-list li {
  font-size: 0.86rem; color: var(--on-dark-m);
  padding: 5px 0 5px 20px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bk-group-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }

/* Day selector */
.bk-days { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.bk-day {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 20px 10px;
  text-align: center; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  transition: border-color 0.2s, background 0.2s;
}
.bk-day:hover { border-color: rgba(255,255,255,0.3); }
.bk-day.is-active { border-color: var(--accent); background: rgba(200,80,48,0.08); }
.bk-day-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: #fff; line-height: 1; }
.bk-day-label { font-size: 0.72rem; color: var(--on-dark-m); text-transform: uppercase; letter-spacing: 1px; }

/* Step actions */
.bk-step-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.bk-step-actions .btn { width: 100%; text-align: center; }
.bk-link-klarna {
  background: none; border: none;
  color: rgba(255,255,255,0.32);
  font-size: 0.8rem; font-family: 'Nunito', sans-serif;
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.bk-link-klarna:hover { color: rgba(255,255,255,0.6); }
.bk-back-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 20px 0 0;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.bk-back-pill:hover {
  border-color: rgba(232,200,122,0.52);
  background: rgba(232,200,122,0.12);
  color: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}

/* Step E — form dati */
.bk-form { display: flex; flex-direction: column; gap: 10px; }
.bk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bk-form input[type="text"],
.bk-form input[type="email"],
.bk-form input[type="tel"] {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px; color: #fff; font-size: 0.92rem;
  font-family: 'Nunito', sans-serif; outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.bk-form input::placeholder { color: rgba(255,255,255,0.38); }
.bk-form input:focus { border-color: rgba(255,255,255,0.45); }
.bk-form input.bk-err { border-color: #e05c5c; }
.bk-privacy-label {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.55); font-size: 0.8rem;
  font-family: 'Nunito', sans-serif; cursor: pointer; line-height: 1.4;
}
.bk-privacy-label input[type="checkbox"] { flex-shrink: 0; margin-top: 2px; }
.bk-privacy-label a { color: var(--accent); }
.bk-form-err {
  color: #ff9a9a; font-size: 0.78rem;
  font-family: 'Nunito', sans-serif;
  line-height: 1.45;
  background: rgba(72,18,30,0.58);
  border: 1px solid rgba(255,128,128,0.14);
  border-radius: 8px;
  padding: 8px 11px;
}
@media (max-width: 600px) {
  .bk-form-row { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .pro-cards      { grid-template-columns: 1fr; }
  .tania-layout   { flex-direction: column; }
}

@media (max-width: 768px) {
  .s-dark, .s-dark-2, .s-light, .s-video, .s-cta-final { padding: 64px 0; }

  .two-col   { grid-template-columns: 1fr; gap: 20px; }
  .amq-cards { grid-template-columns: 1fr; }
  .amq-lists { grid-template-columns: 1fr; gap: 24px; }

  .gallery {
    grid-template-columns: repeat(3, 80vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
  }
  .gallery-item { scroll-snap-align: start; }
  .gallery-item img { height: 200px; }

  .day-blocks   { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }

  .twscroll-item img  { height: 260px; }
  .twscroll-vid video { height: 260px; }
  .twscroll-qcard     { width: 220px; }

  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; text-align: center; }
  .hero-meta { gap: 8px; font-size: 11px; }

  .sticky-bar        { padding: 10px 16px; align-items: stretch; }
  .sticky-left       { display: none; }
  .sticky-mid        { display: none; }
  .sticky-divider    { display: none; }
  .sticky-right      { flex: 1; flex-direction: column; align-items: stretch; gap: 7px; min-width: 0; }
  .sticky-price-wrap { display: flex; flex-direction: row; align-items: baseline; gap: 10px; min-width: unset; text-align: left; }
  .sticky-from       { display: block; font-size: 7.5px; }
  .sticky-amount     { font-size: 26px; line-height: 1; flex-shrink: 0; }
  .sticky-full       { margin-top: 0; font-size: 9.5px; align-self: flex-end; margin-bottom: 2px; }
  .sticky-actions    { flex-direction: row; gap: 8px; align-items: center; }
  .sticky-klarna-btn { display: none; }
  .sticky-btn        { flex: 1; text-align: center; padding: 13px 10px; font-size: 10.5px; }

  .footer-inner { flex-direction: column; text-align: center; }
  .optin-form   { flex-direction: column; }
  .optin-form input[type="email"] { min-width: unset; width: 100%; }
  .optin-form .btn { width: 100%; }
}

/* ── MASSERIA CAROUSEL ─────────────────────────────── */
.s-toscana .container-wide { margin-bottom: 56px; }

.mc-wrap {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  background: #13100a;
}

.mc-slide {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: transform, opacity;
}
.mc-slide.is-active {
  opacity: 1;
  animation: mc-kb 10s ease-in-out both;
}
@keyframes mc-kb {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}

/* vignette top only — bottom rimosso per evitare flicker */
.mc-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,2,15,0.55) 0%,
      transparent 22%,
      transparent 100%);
  z-index: 2;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* cosmic star overlay */
.mc-cosmic {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.mc-cosmic-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: mc-twinkle linear infinite;
}
@keyframes mc-twinkle {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50%       { opacity: 0.12; transform: scale(0.5); }
}

/* arrows */
.mc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(5,2,15,0.52);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mc-arrow:hover { background: rgba(5,2,15,0.82); color: #fff; border-color: rgba(255,255,255,0.3); }
.mc-arrow--prev { left: 24px; }
.mc-arrow--next { right: 24px; }

/* bottom bar */
.mc-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mc-cap {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  font-family: 'Nunito', sans-serif;
  transition: opacity 0.35s ease;
}
.mc-dots { display: flex; gap: 8px; }
.mc-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.25s;
}
.mc-dot.is-active {
  background: var(--warm);
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .s-masseria   { padding: 64px 0 0; }
  .mc-wrap      { height: 300px; }
  .mc-arrow     { display: none; }
  .mc-bottom    { padding: 14px 16px; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 5px; }
  .day-blocks { grid-template-columns: 1fr; }
  .cta-title  { letter-spacing: 2px; }
  .bk-modal   { padding: 32px 20px 28px; }
  .bk-dual    { grid-template-columns: 1fr; }
  .bk-rooms   { grid-template-columns: 1fr; }
}

/* ── WHATSAPP WIDGET ─────────────────────────────────────── */
.whatsapp-widget {
  position: fixed;
  bottom: 82px;
  right: 20px;
  z-index: 2200;
  /* sticky-mode overrides below */
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.whatsapp-widget.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 35% 30%, #5aeea0, #25D366 40%, #1a9e4a 70%, #0a5e2a 100%);
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(37,211,102,0.3),
    0 0 40px rgba(37,211,102,0.1),
    inset -8px -8px 18px rgba(0,0,0,0.45),
    inset 2px 2px 6px rgba(255,255,255,0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waFloat 3.5s ease-in-out infinite, waGlow 3s ease-in-out infinite;
  border: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  overflow: hidden;
}
.whatsapp-button::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 60%, rgba(90,238,160,0.06) 100%);
  pointer-events: none;
}
.whatsapp-button:hover {
  transform: scale(1.12);
  box-shadow:
    0 0 30px rgba(37,211,102,0.45),
    0 0 60px rgba(37,211,102,0.15),
    inset -8px -8px 18px rgba(0,0,0,0.45),
    inset 2px 2px 6px rgba(255,255,255,0.1);
}
.whatsapp-icon {
  width: 28px;
  height: 28px;
  fill: rgba(255,255,255,0.92);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
@keyframes waFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  25%     { transform: translateY(-8px) rotate(0deg); }
  50%     { transform: translateY(-12px) rotate(2deg); }
  75%     { transform: translateY(-6px) rotate(0deg); }
}
@keyframes waOrbit {
  0%   { transform: translate(0px,  0px); }
  25%  { transform: translate(2px, -3px); }
  50%  { transform: translate(0px, -5px); }
  75%  { transform: translate(-2px,-3px); }
  100% { transform: translate(0px,  0px); }
}
@keyframes waGlow {
  0%,100% { box-shadow: 0 0 20px rgba(37,211,102,0.3), 0 0 40px rgba(37,211,102,0.1), inset -8px -8px 18px rgba(0,0,0,0.45), inset 2px 2px 6px rgba(255,255,255,0.08); }
  50%     { box-shadow: 0 0 28px rgba(37,211,102,0.4), 0 0 55px rgba(37,211,102,0.12), 0 0 0 5px rgba(37,211,102,0.04), inset -8px -8px 18px rgba(0,0,0,0.45), inset 2px 2px 6px rgba(255,255,255,0.1); }
}
.wa-bubbles-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.whatsapp-widget.open .wa-bubbles-container {
  opacity: 1;
  visibility: visible;
}
.wa-bubble {
  position: relative;
  background: #dcf8c6;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 18px 18px 4px 18px;
  padding: 12px 16px;
  max-width: 280px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(8px) scale(0.95);
}
.whatsapp-widget.open .wa-bubble {
  animation: waBubbleIn 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards;
  animation-delay: calc(0.08s * var(--bubble-index, 0));
}
.wa-bubble:hover {
  background: #c8f0ae;
  transform: translateX(-3px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  color: #111;
}
.wa-bubble-header {
  background: #25d366;
  border: none;
  cursor: default;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #fff;
}
.wa-bubble-header:hover {
  background: #25d366;
  transform: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.wa-bubble-tail {
  position: absolute;
  bottom: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: inherit;
  border: inherit;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  display: none;
}
.wa-bubbles-container > .wa-bubble:last-child .wa-bubble-tail { display: block; }
.wa-bubble-text { display: block; }
@keyframes waBubbleIn {
  0%   { opacity: 0; transform: translateY(8px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── STICKY-MODE: widget dentro la sticky bar ── */
.sticky-wa-wrap {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.whatsapp-widget.sticky-mode {
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.whatsapp-widget.sticky-mode .whatsapp-button {
  width: 46px;
  height: 46px;
  animation: waOrbit 2.8s ease-in-out infinite, waGlow 3s ease-in-out infinite;
}

.whatsapp-widget.sticky-mode .wa-bubbles-container {
  position: fixed;
  bottom: 82px;
  right: 20px;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .whatsapp-widget:not(.sticky-mode) { bottom: 78px; }
  .whatsapp-button { width: 50px; height: 50px; }
  .whatsapp-icon   { width: 26px; height: 26px; }
  .wa-bubble       { max-width: 260px; font-size: 12px; padding: 10px 14px; }
  .whatsapp-widget.sticky-mode .whatsapp-button { width: 40px; height: 40px; }
  .whatsapp-widget.sticky-mode .wa-bubbles-container { bottom: 76px; right: 12px; }
}
@media (max-width: 480px) {
  .wa-bubble { max-width: calc(100vw - 80px); }
}

/* ── VSL PRICE GATE ── */
.vsl-gate {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  margin: 32px 0 12px;
}
.vsl-gate-msg {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.5px;
}

/* ── PRICING DYNAMIC ELEMENTS ── */
.entry-anchor {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.28);
  text-decoration: line-through;
  margin-right: 6px;
}
.entry-cena-note {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.28);
  margin-top: -8px;
}
.pro-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pro-card-anchor {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.42);
  text-decoration: line-through;
}

/* ── ENTRY DAY THEMES ── */
.edt-days {
  list-style: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.edt-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.edt-item:last-child { border-bottom: none; }
.edt-choose-note {
  font-size: 0.78rem;
  color: var(--on-dark-m);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.edt-item--star {
  background: rgba(224,120,48,0.07);
}
.edt-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 2px;
}
.edt-date {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
}
.edt-dot {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}
.edt-tema {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.50);
  font-style: italic;
}
.edt-cta-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(224,120,48,0.4);
  color: rgba(255,200,140,0.8);
  font-family: 'Nunito', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.edt-cta-btn:hover { border-color: rgba(224,120,48,0.7); color: rgba(255,215,160,1); }

.entry-ticket-label {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm);
  border: 1px solid rgba(224,120,48,0.35);
  border-radius: 20px;
  padding: 4px 14px;
  align-self: flex-start;
}
.entry-includes {
  background: rgba(255,255,255,0.035);
  border-radius: 6px;
  padding: 13px 15px;
}
.entry-includes-title {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-bottom: 8px;
}
.entry-includes-list { list-style: none; }
.entry-includes-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  padding: 3px 0 3px 14px;
  position: relative;
}
.entry-includes-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-size: 0.7rem; }

.pro-card-ticket-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
}
.pro-card-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-top: -2px;
}
.pro-card-klarna-row {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
  padding: 9px 12px;
  text-align: center;
}

/* ── BOOKING MULTI-SELECT DAY ── */
.bk-day-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.bk-day-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.bk-day-check:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.07); }
.bk-day-cb {
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--warm);
  cursor: pointer;
}
.bk-day-check-body { display: flex; flex-direction: column; gap: 2px; }
.bk-day-check-date { font-size: 0.92rem; color: #fff; font-weight: 500; }
.bk-day-check-tema { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-style: italic; }
.bk-day-check--star {
  border-color: rgba(224,120,48,0.3);
  background: rgba(224,120,48,0.05);
}
.bk-day-check--star:hover {
  border-color: rgba(224,120,48,0.55);
  background: rgba(224,120,48,0.1);
}
.bk-day-check--all {
  border-style: dashed;
  border-color: rgba(255,255,255,0.15);
}
.bk-giorni-price {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  min-height: 1.8rem;
  transition: opacity 0.2s;
}

/* ── TOSCANA — LANDSCAPE (dietro al fuoco) ──────────────────── */
.hero { padding-bottom: 300px; }
.hero-silhouette { height: 280px; }

.hs-landscape {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: 820px;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
  z-index: 3;
}

.hs-ground { display: none; }

.hs-extra {
  position: absolute;
  width: auto;
  pointer-events: none;
  z-index: 4;
}

.hs-base {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

.hs-hill-far {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.8px);
}

.hs-hill-mid {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hs-top-sx,
.hs-top-dx {
  position: absolute;
  bottom: 0;
  height: 90%;
  max-width: 30%;
  width: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  opacity: 0.2;
}
.hs-top-sx { left: 0;  object-position: bottom left; }
.hs-top-dx { right: 0; object-position: bottom right; }


/* campfire spostato al centro del viale */
.campfire { bottom: 50px; }

/* luce del fuoco sui cipressi — colore aggiornato via JS — sotto le PNG */
.campfire-tree-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
}

@media (max-width: 640px) {
  .hero            { padding-bottom: 170px; min-height: auto; }
  .hero-silhouette { height: 170px; }
  .campfire        { bottom: 20px; }

  /* Bottone su mobile — più piccolo del desktop ma prominente */
  .btn-large {
    padding: 16px 36px;
  }

  /* Testo bottone CTA più leggibile su mobile */
  .btn-hero-sub { font-size: 10px; opacity: 0.9; }

  /* Scroll hint — compatto, JS controlla opacity/visibility */
  .scroll-hint {
    margin-top: 18px;
  }
  .scroll-hint-label  { font-size: 0.78rem; }
  .scroll-hint-circle { width: clamp(28px, 7.5vw, 36px); height: clamp(28px, 7.5vw, 36px); }
}

@media (max-width: 1800px) { .hs-t-1800 { display: none; } }
@media (max-width: 1600px) { .hs-t-1600 { display: none; } }
@media (max-width: 1440px) { .hs-t-1440 { display: none; } }
@media (max-width: 1300px) { .hs-t-1300 { display: none; } }
@media (max-width: 1100px) { .hs-t-1100 { display: none; } }
@media (max-width: 900px)  { .hs-t-900  { display: none; } }
@media (max-width: 768px)  { .hs-t-768  { display: none; } }
@media (max-width: 640px)  { .hs-t-640  { display: none; } }

/* =====================================================
   NUOVI COMPONENTI — funnel v2 (22 sezioni)
   ===================================================== */

.container-narrow { max-width: 560px; margin: 0 auto; padding: 0 24px; }

/* --- Testimonial cards --- */
.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 32px;
}
.tcard-light {
  background: rgba(26,8,0,0.06);
  border-color: rgba(26,8,0,0.10);
}
.tcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}
.tcard-light .tcard-quote { color: var(--on-light); }
.tcard-author {
  font-size: 0.82rem;
  color: var(--on-dark-m);
  letter-spacing: 0.04em;
}
.tcard-light .tcard-author { color: var(--on-light-m); }
.tcard-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.tcards-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tcards-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

/* ── WHATSAPP SCROLL STRIP ── */
.twscroll { margin-top: 44px; overflow: hidden; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; }
.twscroll-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-light-m);
  margin-bottom: 20px;
  padding-left: max(24px, calc(50vw - 640px));
}
.twscroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 0 20px 24px;
  animation: twscroll-run 200s linear infinite;
  align-items: stretch;
}
.twscroll-track:hover,
.twscroll-track:focus-within,
.twscroll-track.is-vid-playing { animation-play-state: paused; }
@keyframes twscroll-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.twscroll-item { flex-shrink: 0; }
.twscroll-item img { height: 420px; width: auto; border-radius: 10px; display: block; cursor: zoom-in; }
.twscroll-vid { flex-shrink: 0; position: relative; }
.twscroll-vid video { height: 420px; width: auto; aspect-ratio: 9/16; border-radius: 10px; display: block; background: #0d0500; object-fit: cover; }
.vid-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 10px; z-index: 1; display: block; }
.vid-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; cursor: pointer; border-radius: 10px; }
.vid-play-btn { width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.90); display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 16px rgba(0,0,0,0.35); flex-shrink: 0; }
.vid-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 2;
}
.twscroll-vid.is-playing .vid-overlay,
.proof-vid-item.is-playing .vid-overlay { opacity: 0; pointer-events: none; }
.vid-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.15s, background 0.15s;
}
.vid-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.vid-play-btn svg { width: 22px; height: 22px; fill: #1a0800; }
.twscroll-vid-name, .vid-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.52);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 4px 11px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 3;
}
/* ── LIGHTBOX ── */
#twLightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
#twLightbox.is-open { opacity: 1; pointer-events: all; }
#twLightboxImg { max-width: 92vw; max-height: 92vh; border-radius: 12px; display: block; }
#twLightboxClose {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1; padding: 8px;
  opacity: 0.7; transition: opacity 0.2s;
}
#twLightboxClose:hover { opacity: 1; }
.twscroll-qcard {
  width: 280px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.twscroll-qcard blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 14px;
}
.twscroll-qcard cite { font-size: 0.78rem; color: var(--on-dark-m); letter-spacing: 0.04em; font-style: normal; }

/* --- Sezione prove statiche --- */
.proof-masonry {
  column-count: 3;
  column-gap: 12px;
  max-width: 980px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.proof-masonry > * {
  break-inside: avoid;
  margin-bottom: 12px;
  display: inline-block;
  width: 100%;
}
.proof-mix-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  cursor: zoom-in;
}
.proof-vid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0d0500;
  aspect-ratio: 9/16;
}
.proof-vid-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.proof-qcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 22px 20px;
}
.proof-qcard blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0 0 12px 0;
}
.proof-qcard cite {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  font-style: normal;
  display: block;
}
@media (max-width: 768px) {
  .proof-masonry {
    column-count: 2;
  }
}
@media (max-width: 480px) {
  .proof-masonry {
    column-count: 1;
  }
}
@media (min-width: 481px) and (max-width: 1180px) {
  .proof-qcard--optional {
    display: none;
  }
}

/* --- Video testimonianze --- */
.tvideos {
  margin-top: 52px;
  overflow: hidden;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
}
.tvideos-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-light-m);
  margin-bottom: 20px;
  padding-left: max(24px, calc(50vw - 640px));
}
.tvideos-grid {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 20px 12px;
  animation: tvideos-scroll 28s linear infinite;
}
.tvideos-grid:hover {
  animation-play-state: paused;
}
@keyframes tvideos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tvideo-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 220px;
  flex-shrink: 0;
}
.tvideo-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  background: #0d0500;
  display: block;
  object-fit: cover;
}
.tvideo-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--on-light-m);
  text-align: center;
}

/* --- Problem list --- */
.problem-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-list li {
  padding-left: 24px;
  position: relative;
  font-size: 1rem;
  color: var(--on-light);
  line-height: 1.65;
}
.problem-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- Section divider / text-link --- */
.section-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 40px 0;
}
.s-light .section-divider { border-color: rgba(26,8,0,0.15); }

/* ── PER TE GRID ── */
.per-te-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 48px;
  margin-top: 40px;
  align-items: start;
}
.per-te-divider-v {
  background: rgba(255,255,255,0.12);
  width: 1px;
  align-self: stretch;
  min-height: 200px;
}
.per-te-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(255,220,170,0.9);
  margin-bottom: 20px;
}
.per-te-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.per-te-list li {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}
.per-te-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(255,220,170,0.6);
}
.per-te-body {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .per-te-grid {
    grid-template-columns: 1fr;
    gap: 36px 0;
  }
  .per-te-divider-v {
    width: 100%;
    height: 1px;
    min-height: unset;
    background: rgba(255,255,255,0.12);
  }
}
.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Ancestors days --- */
.ancestors-days {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
}
.ancestors-day {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.ancestors-day-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-dark-m);
  min-width: 80px;
}

/* --- Tania letter --- */
.tania-letter {
  margin-top: 40px;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.tania-letter-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.tania-letter-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.95;
  letter-spacing: 0.015em;
  color: var(--on-light);
}
.tania-letter-body p { margin-bottom: 14px; }
.tania-letter-body p:last-child { margin-bottom: 0; }

/* --- Program blocks --- */
/* --- Schedule cards (giornata) --- */
.sched-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.sched-card {
  border-radius: 16px;
  padding: 0 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  position: relative;
  overflow: hidden;
}

/* Sky strip */
.sched-sky {
  height: 130px;
  margin: 0 -28px 26px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 25%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0.2) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 25%, rgba(0,0,0,0.7) 55%, rgba(0,0,0,0.2) 80%, transparent 100%);
}

/* — ALBA — cielo notturno che cede all'oro, sole che emerge basso a destra */
.sched-card--mattina .sched-sky {
  background:
    radial-gradient(ellipse 90% 50% at 70% 110%, rgba(224,110,40,0.65) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 70% 105%, rgba(255,210,100,0.55) 0%, transparent 55%),
    radial-gradient(circle at 70% 112%, rgba(255,245,180,0.9) 0%, rgba(255,190,70,0.4) 18%, transparent 35%),
    linear-gradient(to bottom,
      #08122a 0%,
      #162448 28%,
      #5c2040 52%,
      #b85028 72%,
      #e8904a 88%,
      #f8c878 100%);
}

/* — MEZZOGIORNO — azzurro pieno, sole alto fuori frame, bagliore zenitale */
.sched-card--giornata .sched-sky {
  background:
    radial-gradient(ellipse 100% 35% at 50% 0%, rgba(220,245,255,0.5) 0%, transparent 70%),
    radial-gradient(circle at 50% -5%, rgba(255,255,230,0.95) 0%, rgba(255,235,100,0.55) 22%, transparent 45%),
    radial-gradient(ellipse 70% 25% at 50% 100%, rgba(160,215,250,0.35) 0%, transparent 70%),
    linear-gradient(to bottom,
      #082060 0%,
      #1058b8 25%,
      #2e88d8 55%,
      #72bce8 80%,
      #b8dff5 100%);
}

/* — TRAMONTO — indaco profondo, sole che affonda, bagliore orizzonte caldo */
.sched-card--sera .sched-sky {
  background:
    radial-gradient(ellipse 75% 42% at 30% 108%, rgba(200,60,15,0.72) 0%, transparent 62%),
    radial-gradient(ellipse 36% 26% at 30% 105%, rgba(255,180,60,0.58) 0%, transparent 50%),
    radial-gradient(circle at 30% 112%, rgba(255,225,130,0.88) 0%, rgba(235,90,15,0.42) 18%, transparent 36%),
    linear-gradient(to bottom,
      #02020a 0%,
      #080618 15%,
      #1a0630 32%,
      #4a0c28 50%,
      #922010 65%,
      #c84820 80%,
      #e07840 92%,
      #f0a862 100%);
}
/* stelle nella sera */
.sched-card--sera .sched-sky::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at  8% 12%, rgba(255,255,255,0.82) 0%, transparent 100%),
    radial-gradient(1px   1px   at 18%  6%, rgba(255,255,255,0.65) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 30% 18%, rgba(255,255,255,0.88) 0%, transparent 100%),
    radial-gradient(1px   1px   at 42%  9%, rgba(255,255,255,0.60) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 55% 14%, rgba(255,255,255,0.75) 0%, transparent 100%),
    radial-gradient(1px   1px   at 65%  4%, rgba(255,255,255,0.70) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 76% 20%, rgba(255,255,255,0.85) 0%, transparent 100%),
    radial-gradient(1px   1px   at 88% 10%, rgba(255,255,255,0.68) 0%, transparent 100%),
    radial-gradient(1px   1px   at 95%  6%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1px   1px   at 23% 30%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px   1px   at 50% 26%, rgba(255,255,255,0.50) 0%, transparent 100%),
    radial-gradient(1px   1px   at 82% 33%, rgba(255,255,255,0.42) 0%, transparent 100%),
    radial-gradient(1.2px 1.2px at 12% 38%, rgba(255,255,255,0.38) 0%, transparent 100%),
    radial-gradient(1px   1px   at 70% 35%, rgba(255,255,255,0.44) 0%, transparent 100%);
}

.sched-card-time {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  background: rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.sched-card-icon { display: none; }
.sched-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--on-dark);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.sched-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sched-card-list li {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  color: rgba(237,228,212,0.78);
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.sched-card-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--warm);
  opacity: 0.7;
  font-size: 0.75rem;
  top: 1px;
}
.sched-card-body {
  font-size: 0.91rem;
  color: var(--on-dark-m);
  line-height: 1.74;
}
.sched-giornaliero-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(200, 96, 48, 0.12);
  border: 1px solid rgba(200, 96, 48, 0.35);
  border-radius: 8px;
}
.sched-giornaliero-note-icon {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--warm);
  margin-top: 1px;
}
.sched-giornaliero-note p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
}
.sched-giornaliero-note p strong {
  color: var(--warm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.72rem;
}
@media (max-width: 780px) {
  .sched-cards { grid-template-columns: 1fr; gap: 16px; }
}
.sched-footnote {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  color: rgba(237,228,212,0.62);
  text-align: center;
  max-width: 560px;
  margin: 28px auto 0;
  line-height: 1.65;
}

.program-section-block {
  margin: 56px 0 0;
}
.program-section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(237,228,212,0.12);
}

.program-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}
.program-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px;
}
.program-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--warm);
  margin-bottom: 12px;
}
.program-block-body {
  font-size: 0.93rem;
  color: var(--on-dark-m);
  line-height: 1.65;
}
.program-block-list {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--on-dark-m);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* --- Day cards --- */
.day-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
}
.day-card {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to top, rgba(255,255,255,0.06) 0%, transparent 55%),
    rgba(255,255,255,0.04);
}
.day-card::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.day-card--genitori {
  border-color: rgba(200,120,145,0.2);
  background:
    linear-gradient(to top, rgba(200,110,135,0.18) 0%, transparent 58%),
    rgba(255,255,255,0.04);
}
.day-card--genitori::before {
  background: radial-gradient(circle, rgba(210,130,150,0.1) 0%, transparent 70%);
}
.day-card--nonni {
  border-color: rgba(120,100,210,0.22);
  background:
    linear-gradient(to top, rgba(110,90,200,0.18) 0%, transparent 58%),
    rgba(255,255,255,0.04);
}
.day-card--nonni::before {
  background: radial-gradient(circle, rgba(130,110,220,0.1) 0%, transparent 70%);
}
.day-card--star {
  border-color: rgba(224,144,64,0.45);
  background:
    linear-gradient(to top, rgba(224,144,64,0.22) 0%, transparent 58%),
    rgba(224,144,64,0.05);
}
.day-card--star::before {
  background: radial-gradient(circle, rgba(224,144,64,0.12) 0%, transparent 70%);
}
.day-card-star {
  display: inline-block;
  font-size: 0.72rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: var(--warm);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.day-card-icon {
  width: 46px;
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.35);
}
.day-card--genitori .day-card-icon {
  color: rgba(225,145,165,0.8);
}
.day-card--nonni .day-card-icon {
  color: rgba(160,140,240,0.8);
}
.day-card--star .day-card-icon {
  color: var(--warm);
}
.day-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.day-card-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.day-card-meta-sub {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.day-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1;
}
.day-card-date {
  font-family: 'Nunito', sans-serif;
  font-size: 0.76rem;
  color: var(--on-dark-m);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.day-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  margin-bottom: 0;
  line-height: 1.15;
}
.day-card--star .day-card-title {
  border-top-color: rgba(224,144,64,0.3);
}
.day-card-subtitle {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: var(--warm);
  font-style: italic;
  margin-bottom: 0;
  opacity: 0.9;
}
.day-card-body {
  font-family: 'Nunito', sans-serif;
  font-size: 0.91rem;
  color: var(--on-dark-m);
  line-height: 1.7;
}
.day-card-list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* --- Location details --- */
.location-details {
  margin-top: 56px;
}
.loc-block {
  margin-bottom: 32px;
}
.loc-logo {
  display: block;
  height: 90px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.loc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #f0e6d2;
  margin-bottom: 14px;
}
.loc-body {
  font-size: 0.97rem;
  color: rgba(237,228,212,0.72);
  line-height: 1.72;
  margin-bottom: 14px;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.loc-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loc-item strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 10px;
}
.loc-item p {
  font-size: 0.88rem;
  color: rgba(237,228,212,0.65);
  line-height: 1.6;
}
.loc-item-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(200,160,80,0.75);
  font-style: italic;
}
.loc-veg-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #7ec87e;
  background: rgba(126,200,126,0.12);
  border: 1px solid rgba(126,200,126,0.3);
  border-radius: 20px;
  padding: 4px 12px;
  margin: 8px 0 14px;
}

.loc-note-strip {
  border-top: 1px solid rgba(237,228,212,0.12);
  margin-top: 48px;
  padding: 32px 24px 40px;
  text-align: center;
}
.loc-note {
  font-size: 1rem;
  color: rgba(237,228,212,0.9);
  margin: 0;
}
.loc-link {
  color: var(--warm);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* --- Mini caroselli loc-item --- */
.lc {
  position: relative;
  margin-top: auto;
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -20px;
  border-radius: 0 0 9px 9px;
  overflow: hidden;
  height: 260px;
  background: rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.lc-track {
  display: flex;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.lc-slide {
  flex: 0 0 100%;
  background-size: cover;
  background-position: center;
}
.lc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.42);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  line-height: 1;
  padding: 0;
  transition: background 0.2s;
}
.lc-btn:hover { background: rgba(0,0,0,0.65); }
.lc-prev { left: 7px; }
.lc-next { right: 7px; }
.lc-dots {
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  pointer-events: none;
}
.lc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  pointer-events: auto;
  cursor: pointer;
  transition: background 0.2s;
}
.lc-dot.lc-dot--active { background: rgba(255,255,255,0.9); }
.lc { cursor: zoom-in; }

/* --- Lightbox full-screen --- */
.lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}
.lb.lb--open { display: flex; }
.lb-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }
.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 42px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  line-height: 1;
  padding: 0;
  transition: background 0.2s;
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  letter-spacing: 1px;
  z-index: 10000;
}

.loc-map {
  margin-top: 14px;
  border-radius: 8px;
  overflow: hidden;
  height: 155px;
  border: 1px solid rgba(255,255,255,0.07);
}

/* --- Value stack --- */
.value-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 36px 0;
}
.vs-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(200,96,48,0.18);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
}
.vs-mark {
  width: 28px;
  height: 28px;
  background: rgba(200,96,48,0.15);
  border: 1px solid rgba(200,96,48,0.35);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.vs-content { flex: 1; }
.vs-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}
.vs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  flex: 1;
}
.vs-body {
  font-size: 0.9rem;
  color: var(--on-dark-m);
  line-height: 1.6;
  margin-bottom: 0;
}
.vs-value {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm);
  letter-spacing: 0.03em;
  background: rgba(224,144,64,0.10);
  border: 1px solid rgba(224,144,64,0.28);
  border-radius: 20px;
  padding: 3px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 2px;
}
.vs-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 32px 28px;
  background: rgba(200,96,48,0.06);
  border: 1px solid rgba(200,96,48,0.22);
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 0 36px rgba(200,96,48,0.10), inset 0 0 24px rgba(200,96,48,0.04);
}
.vs-total-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-dark-m);
}
.vs-total-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: rgba(255,255,255,0.60);
  line-height: 1;
  position: relative;
  display: inline-block;
}
.vs-total-amount::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  height: 3px;
  background: rgba(200,96,48,0.82);
  transform: rotate(-10deg);
  transform-origin: center;
  border-radius: 2px;
}
.vs-total-save {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 20px;
  padding: 5px 16px;
  letter-spacing: 0.02em;
}
.vs-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 600;
  color: #4ade80;
  line-height: 1;
}
.vs-total-yours {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-dark-m);
  margin-top: -6px;
}
.vs-total-klarna {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  width: 100%;
}
.vs-total-klarna-or {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-dark-m);
}
.vs-total-klarna-sub {
  font-size: 0.8rem;
  color: var(--on-dark-m);
}
.vs-total-klarna-only {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--on-dark-m);
  margin-top: 2px;
}
.vs-total-klarna-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}
.vs-total-klarna-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--on-dark-m);
  margin-top: 6px;
}
.vs-total-klarna-logo {
  height: 20px;
  width: auto;
  opacity: 0.88;
  filter: brightness(0) invert(1);
}

/* --- Pricing columns layout --- */
.pricing-entry-col { flex: 0 0 auto; }
.pricing-pro-col   { flex: 1; }

/* --- Responsive: nuovi componenti --- */
@media (max-width: 900px) {
  .tcards-double,
  .tcards-quad      { grid-template-columns: 1fr; }
  .tvideo-item      { width: 180px; }
  .program-blocks   { grid-template-columns: 1fr; }
  .day-cards        { grid-template-columns: 1fr; }
  .program-section-block { margin: 40px 0 0; }
  .loc-grid         { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .loc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .tcard { padding: 20px; }
  .tania-letter { padding-left: 0; border-left: none; }
  .vs-total { padding: 20px; }
}

/* ── HERO TAGLINE ── */
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ── SIA BLOCK ── */
.tania-sia-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 40px 36px;
  box-shadow: 0 2px 24px rgba(80,40,10,0.07);
  margin-bottom: 48px;
}
.tania-bio .tania-intro:last-child { margin-bottom: 0; }
.sia-block {
  margin-top: 20px;
  padding-top: 0;
}
.sia-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 20px;
}
.sia-mark {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.88;
}
.sia-wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sia-wordmark-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 300;
  color: #3a2010;
  line-height: 1;
  letter-spacing: 0.1em;
}
.sia-wordmark-full {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(80,50,20,0.58);
  font-weight: 400;
}
.sia-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  color: #3a2010;
  margin-bottom: 14px;
  line-height: 1.55;
}
.sia-body {
  color: #5a3a20;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ── DAL CAMPO DI TANIA — CASI ── */
.campo-casi {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.campo-caso {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(80,50,20,0.08);
  padding: 32px 36px;
  max-width: 720px;
}
.campo-caso-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  color: rgba(60,35,15,0.65);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.campo-caso-body {
  color: #4a3020;
  line-height: 1.78;
  margin-bottom: 10px;
}
.campo-caso-name {
  display: block;
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(80,50,20,0.6);
}

/* ── CTA TALITHA + DIVIDER ── */
.cta-talitha {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.cta-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 28px auto;
  max-width: 200px;
}

/* Wistia video testimonianze */
.wv-item { position: relative; }
.proof-vid-item .wistia_embed,
.proof-vid-item wistia-player {
  width: 100%;
  height: 100%;
  display: block;
}
.wv-overlay {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; z-index: 10; pointer-events: none;
  transition: opacity 0.3s; border-radius: 12px;
}
.wv-overlay.is-playing { opacity: 0; pointer-events: none; }
