/* ══════════════════════════════════════════════
   VENUS PHOTOGRAPHY — Complete Stylesheet
   ══════════════════════════════════════════════ */

:root {
  --sage:     #3D5247;
  --sage2:    #4E6859;
  --bamboo:   #B89A6E;
  --bambl:    #D4B896;
  --cream:    #F5F1EA;
  --offwhite: #FDFBF7;
  --dark:     #18180F;
  --dark2:    #222218;
  --txt:      #2C2C22;
  --txtl:     #7A7A6A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--offwhite);
  color: var(--txt);
  font-weight: 400;
  overflow-x: clip;
}
@media (pointer: fine) { body { cursor: none; } }

/* ── Image skeleton shimmer ── */
@keyframes img-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.img-loading {
  background: linear-gradient(90deg, var(--cream) 25%, rgba(245,241,234,.6) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: img-shimmer 1.5s ease-in-out infinite;
}

/* ── CURSOR ── */
#cur {
  width: 8px; height: 8px;
  background: var(--bamboo);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9999;
  translate: -50% -50%;
  transition: width .25s, height .25s;
}
#curR {
  width: 36px; height: 36px;
  border: 1px solid var(--bamboo);
  border-radius: 50%;
  position: fixed; pointer-events: none;
  z-index: 9998;
  translate: -50% -50%;
  transition: width .25s, height .25s;
  opacity: .45;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 400;
  padding: 0 52px;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s;
}
nav.stuck {
  background: rgba(18,18,12,.94);
  backdrop-filter: blur(14px);
  height: 60px;
}
.nav-logo { height: 42px; filter: brightness(0) invert(1); }
.nav-links { display: flex; gap: 44px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--bamboo);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  border: 1px solid rgba(184,154,110,.5) !important;
  color: var(--bambl) !important;
  padding: 9px 26px;
}
.nav-cta:hover { background: var(--bamboo) !important; border-color: var(--bamboo) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* ── NAV DROPDOWN ── */
.nav-has-drop { position: relative; }
.nav-drop {
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  display: block;
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: rgba(18,18,12,.96); backdrop-filter: blur(14px);
  list-style: none; min-width: 160px;
  border: 1px solid rgba(255,255,255,.08); padding: 8px 0; z-index: 500;
}
.nav-has-drop:hover .nav-drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop li a {
  display: block; padding: 10px 20px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-drop li a:hover { color: var(--bambl); background: rgba(255,255,255,.05); }
.nav-drop li a::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,.7); transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  padding: 14px 42px; transition: all .32s;
}
.btn-fill { background: var(--bamboo); color: #fff; }
.btn-fill:hover { background: var(--bambl); color: var(--dark); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(184,154,110,.35); }
.btn-fill:active { transform: scale(.96); box-shadow: none; }
.btn-out { border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.65); }
.btn-out:hover { border-color: var(--bambl); color: var(--bambl); transform: translateY(-3px); }
.btn-out:active { transform: scale(.96); }
.btn-out-dark { border: 1px solid rgba(44,44,34,.18); color: var(--txtl); }
.btn-out-dark:hover { border-color: var(--bamboo); color: var(--bamboo); transform: translateY(-3px); }
.btn-out-dark:active { transform: scale(.96); }
.btn-stroke {
  position: relative; overflow: hidden;
  border: 1.5px solid var(--bamboo);
  color: var(--bamboo); background: transparent;
  transition: color .42s;
}
.btn-stroke::before {
  content: ''; position: absolute; inset: 0;
  background: var(--bamboo); transform: scaleX(0);
  transform-origin: left; z-index: 0;
  transition: transform .42s cubic-bezier(.77,0,.18,1);
}
.btn-stroke:hover::before { transform: scaleX(1); }
.btn-stroke:hover { color: #fff; }
.btn-stroke span { position: relative; z-index: 1; }

/* ── SHARED LABELS ── */
.sec-label { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--bamboo); margin-bottom: 14px; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(26px,5vw,62px); font-weight: 300; line-height: 1.1; }
.sec-title-light { color: #fff; }

/* ── HERO (home only) ── */
.hero {
  height: 100vh; min-height: 640px;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-blob1 {
  position: absolute;
  width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: radial-gradient(circle at 40% 50%, rgba(61,82,71,.6) 0%, transparent 70%);
  top: -10%; left: -15%;
  animation: morph1 12s ease-in-out infinite;
}
.hero-blob2 {
  position: absolute;
  width: 50vw; height: 50vw; max-width: 600px; max-height: 600px;
  border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%;
  background: radial-gradient(circle at 60% 50%, rgba(184,154,110,.12) 0%, transparent 70%);
  bottom: -20%; right: -10%;
  animation: morph2 15s ease-in-out infinite;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  opacity: .5;
  animation: grainShift 8s steps(2) infinite;
}
.hero { --mx: 50%; --my: 50%; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(500px circle at var(--mx) var(--my), rgba(184,154,110,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.hero-cnt {
  position: relative; text-align: center; padding: 0 32px;
  animation: fadeUp 1.2s cubic-bezier(.16,1,.3,1) both;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--bamboo);
  margin-bottom: 20px;
  animation: fadeUp 1.2s .1s cubic-bezier(.16,1,.3,1) both;
}
.hero-tag::before, .hero-tag::after { content: ''; width: 28px; height: 1px; background: var(--bamboo); opacity: .6; }
.hero-loc {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 28px;
  animation: fadeUp 1.2s .18s cubic-bezier(.16,1,.3,1) both;
}
.hero-proof {
  font-size: 11px; letter-spacing: .08em;
  color: rgba(255,255,255,.45); margin-top: 24px;
  animation: fadeUp 1.2s .55s cubic-bezier(.16,1,.3,1) both;
}
.hero-proof span:first-child { color: var(--bamboo); }
.hero-logo {
  width: 360px; max-width: 72vw;
  filter: brightness(0) invert(1);
  display: block; margin: 0 auto 24px;
  animation: fadeUp 1.2s .2s cubic-bezier(.16,1,.3,1) both;
}
.hero-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3.2vw, 42px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.82);
  line-height: 1.5; margin-bottom: 32px;
  animation: fadeUp 1.2s .3s cubic-bezier(.16,1,.3,1) both;
}
.hero-line em { color: var(--bambl); }
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1.2s .4s cubic-bezier(.16,1,.3,1) both;
}
.hero-scroll {
  position: absolute; bottom: 44px; left: 52px;
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.28); font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 44px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.28));
  animation: slideLine 2.2s ease-in-out infinite;
}

/* ── PAGE BANNER (inner pages) ── */
.page-banner {
  background: var(--dark);
  padding: 110px 80px 56px;
  position: relative; overflow: hidden;
}
.page-banner .hero-blob1 { top: -30%; }
.page-banner-cnt { position: relative; }
.page-banner .sec-title {
  font-size: clamp(28px, 6vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.page-banner-sub {
  font-size: 14px; color: rgba(255,255,255,.4); max-width: 500px; line-height: 1.6;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--sage);
  padding: 18px 0; overflow: hidden;
  white-space: nowrap;
}
.ticker {
  display: inline-flex; gap: 0;
  animation: tick 40s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 0 40px;
  font-size: 15px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.ticker-dot { width: 5px; height: 5px; background: var(--bamboo); border-radius: 50%; flex-shrink: 0; }


/* ── ARCH CARDS (servizi + portfolio hub) ── */
.arch-sec { background: var(--dark2); padding: 64px 52px; }
.arch-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 56px);
  font-weight: 300;
  color: #fff;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 52px;
}
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1200px; margin: 0 auto;
}
.arch-card {
  text-decoration: none; display: block;
  text-align: center;
  transition: transform .4s;
}
.arch-card:hover { transform: translateY(-6px); }
.arch-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 50% 50% 4px 4px / 30% 30% 0 0;
  border: 1.5px solid var(--bamboo);
  overflow: hidden;
  margin-bottom: 18px;
}
.arch-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.arch-card:hover .arch-img { transform: scale(1.05); }
.arch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.6vw, 21px); font-weight: 400; color: #fff;
  letter-spacing: .05em;
}
.arch-card:hover .arch-frame { border-color: var(--bambl); }
.arch-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dark);
  z-index: 2;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(.25,0,.25,1);
}
.arch-card.on .arch-frame::before { transform: translateY(-101%); }

/* ── SERVICE PAGE TEMPLATE (9 sezioni) ── */

/* 1. Service Hero — photo ratio */
.srv-hero {
  height: clamp(360px, 65vh, 600px);
  min-height: 360px;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}
.srv-hero-bg {
  position: absolute; inset: 0;
}
.srv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(24,24,15,.55) 0%, rgba(24,24,15,.82) 100%);
}
.srv-hero-cnt {
  position: relative; z-index: 2;
  padding: 0 32px; max-width: 800px;
}
.srv-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 6vw, 72px);
  font-weight: 300; font-style: italic;
  color: #fff; line-height: 1.15;
  margin-bottom: 36px;
}
.srv-hero .btn { margin-top: 8px; }

/* 2. Mini Portfolio — griglia foto */
.srv-port { background: var(--dark2); padding: 4px 0; }
.srv-port-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.srv-port-6 .srv-port-grid {
  grid-template-columns: repeat(3, 1fr);
}
.srv-port-item {
  aspect-ratio: 1 / 1;
  overflow: hidden; position: relative;
}
.srv-port-item div {
  width: 100%; height: 100%;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.srv-port-item:hover div { transform: scale(1.06); }

/* 3. Transizione — ponte emotivo */
.srv-bridge {
  background: var(--cream);
  padding: 48px 52px 56px;
  text-align: center;
  position: relative;
}
.srv-bridge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 300; color: var(--dark);
  line-height: 1.2; margin: 0 auto 24px;
  max-width: 980px;
}
.srv-bridge p {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.85;
  color: var(--txtl); max-width: 980px;
  margin: 0 auto;
}

/* 4. Come funziona — steps */
.srv-steps-sec {
  background: var(--dark2);
  padding: 100px 52px;
}
.srv-steps-sec .sec-title { color: #fff; margin-bottom: 60px; }
.srv-steps-label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bambl); margin-bottom: 28px;
}
.srv-steps-row { margin-bottom: 48px; }
.srv-steps-row:last-child { margin-bottom: 0; }
.srv-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
  max-width: 1100px;
}
.srv-steps-4 { grid-template-columns: repeat(4, 1fr); }
.srv-step { text-align: center; }
.srv-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 300;
  color: var(--bamboo); line-height: 1;
  margin-bottom: 16px;
}
.srv-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: #fff; margin-bottom: 10px;
}
.srv-step-desc {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,.45);
}


/* 7. Prezzo */
.srv-price-sec {
  background: var(--dark2);
  padding: 80px 52px;
  text-align: center;
}
.srv-price-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 6vw, 80px);
  font-weight: 300; font-style: italic;
  color: var(--bambl);
}

/* ── SERVICE PAGE — SCRIVICI SECTION ── */
.srv-scrivici-icons {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 48px;
}
.srv-scrivici-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid rgba(184,154,110,.3);
  border-radius: 50%;
  color: var(--bamboo);
  text-decoration: none;
  transition: all .3s;
}
.srv-scrivici-icon:hover { border-color: var(--bambl); background: rgba(184,154,110,.1); transform: translateY(-3px); }
.srv-scrivici-icon svg { width: 20px; height: 20px; }

/* ── CTA FINALE (service pages) ── */
.srv-cta-final {
  background: var(--sage);
  padding: 100px 52px;
  text-align: center;
  position: relative; overflow: hidden;
}
.srv-cta-final .sec-title { color: #fff; margin-bottom: 14px; }
.srv-cta-final-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.55); margin-bottom: 36px;
}
.srv-cta-trust {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.42); margin-top: 18px;
}
.srv-avail {
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.38); margin-top: 20px;
}
.srv-avail::before { content: none; }
.srv-cta-final .btn-fill { animation: ctaPulse 2.8s 1.5s ease-in-out infinite; }

/* ── STATS ── */
.stats-sec {
  padding: 72px 40px;
  background: var(--dark2);
  display: flex; justify-content: center;
}
.stats-inner {
  display: flex; align-items: center; gap: 64px;
  max-width: 720px; width: 100%; justify-content: center;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 7vw, 80px); font-weight: 300;
  color: var(--bamboo); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
.stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.stat-zones {
  font-family: 'Jost', sans-serif; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); line-height: 1.9;
}
@media (max-width: 600px) {
  .stats-inner { flex-direction: column; gap: 36px; }
  .stat-divider { width: 40px; height: 1px; }
}

/* ── REVIEWS CAROUSEL ── */
.reviews-sec {
  background: var(--cream);
  padding: 80px 0;
  overflow: hidden;
}
.reviews-sec .sec-label { text-align: center; }
.reviews-sec .sec-title { text-align: center; color: var(--dark); margin-bottom: 48px; }
.reviews-track {
  display: flex; gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 52px 20px 52px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 2px;
  padding: 36px 32px 32px;
  position: relative; text-align: center;
  box-shadow: 0 2px 18px rgba(44,44,34,.06);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(44,44,34,.10); }
.review-card::before { content: none; }
.review-stars {
  display: flex; gap: 4px;
  margin-bottom: 18px;
  position: relative; z-index: 1;
  justify-content: center;
  font-size: 14px; color: var(--bamboo);
  letter-spacing: 2px;
}
.review-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic;
  color: var(--bamboo); letter-spacing: .04em;
}
.review-text {
  font-size: 14px; line-height: 1.85;
  color: var(--txtl); font-style: italic;
  margin-bottom: 22px; position: relative;
}
.review-src {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: 10px; font-style: normal; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(61,82,71,.7); border: 1px solid rgba(61,82,71,.25);
  padding: 2px 8px; border-radius: 3px; margin-left: 8px; vertical-align: middle;
}

/* ── CONTACT SHORTCUTS ── */
.cnt-shortcuts {
  max-width: 640px; margin: 0 auto 12px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.cnt-shortcut-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(184,154,110,.2);
  border-radius: 10px;
  padding: 20px 22px;
  text-decoration: none;
  color: var(--txt);
  transition: background .25s, border-color .25s, transform .2s;
}
.cnt-shortcut-card:hover {
  background: rgba(184,154,110,.08);
  border-color: rgba(184,154,110,.45);
  transform: translateY(-2px);
}
.cnt-shortcut-label {
  font-family: 'Jost', sans-serif; font-size: 13px;
  font-weight: 300; letter-spacing: .06em; flex: 1;
  color: var(--bambl);
}
.cnt-shortcut-arrow {
  font-size: 14px; color: var(--bamboo); opacity: .7;
  transition: transform .2s;
}
.cnt-shortcut-card:hover .cnt-shortcut-arrow { transform: translateX(3px); }
.cnt-divider {
  max-width: 640px; margin: 28px auto 28px;
  display: flex; align-items: center; gap: 16px;
}
.cnt-divider::before, .cnt-divider::after {
  content: ''; flex: 1;
  height: 1px; background: rgba(255,255,255,.1);
}
.cnt-divider span {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.28); white-space: nowrap;
}
@media (max-width: 500px) {
  .cnt-shortcuts { grid-template-columns: 1fr; }
}

/* ── CONTACT FORM ── */
.cnt-form-wrap {
  background: var(--dark2); padding: 140px 52px 80px;
}
.cnt-form {
  max-width: 640px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px;
}
.cnt-form label {
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--bamboo); display: block; margin-bottom: 8px;
}
.cnt-form input,
.cnt-form select,
.cnt-form textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 6px;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 15px; font-weight: 300;
  padding: 14px 18px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.cnt-form input::placeholder,
.cnt-form textarea::placeholder { color: rgba(255,255,255,.25); }
.cnt-form input:hover,
.cnt-form select:hover,
.cnt-form textarea:hover { border-color: rgba(255,255,255,.22); }
.cnt-form input:focus,
.cnt-form select:focus,
.cnt-form textarea:focus {
  outline: none;
  border-color: var(--bamboo);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(184,154,110,.13);
}
.cnt-form select { cursor: pointer; }
.cnt-form select option { background: var(--dark2); color: #fff; }
.cnt-form textarea { resize: vertical; min-height: 130px; }
.cnt-form input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(.4); cursor: pointer; }
.cnt-form input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.4); cursor: pointer; }
.cnt-form-btns {
  display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap;
}
.cnt-form-btns .btn { flex: 1; min-width: 200px; text-align: center; }

/* ── FAQ ── */
.faq-sec {
  background: var(--cream);
  padding: 100px 52px;
  position: relative;
}
.faq-sec .sec-title { color: var(--dark); margin-bottom: 48px; text-align: center; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(44,44,34,.1);
}
.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--dark);
  text-align: left;
}
.faq-q::after {
  content: '+';
  font-family: 'Jost', sans-serif;
  font-size: 24px; font-weight: 200;
  color: var(--bamboo);
  transition: transform .3s;
  flex-shrink: 0; margin-left: 20px;
}
.faq-item.open .faq-q::after { content: '\2212'; transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s ease, padding .4s ease, opacity .35s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; opacity: 1; }
.faq-a p {
  font-size: 14px; line-height: 1.8; color: var(--txtl);
}


/* ── NUMERI ── */
.nums-sec {
  background: var(--sage);
  padding: 72px 52px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 3px;
}
.num-item {
  padding: 44px 36px;
  background: rgba(0,0,0,.08);
  text-align: center; transition: background .3s;
}
.num-item:hover { background: rgba(0,0,0,.18); }
.num-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 58px); font-weight: 300; color: #fff; line-height: 1; margin-bottom: 10px;
}
.num-val sup { font-size: 28px; color: var(--bambl); }
.num-lbl { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.45); }

/* ── CONTATTI ── */
.cnt-sec {
  background: var(--dark2);
  padding: 120px 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.cnt-sec .sec-title { color: #fff; margin-bottom: 20px; }
.cnt-sec .cnt-sub { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.4); margin-bottom: 44px; }
.cnt-list { display: flex; flex-direction: column; gap: 3px; }
.cnt-row {
  display: flex; align-items: center; gap: 22px;
  padding: 22px 28px;
  background: rgba(255,255,255,.04);
  text-decoration: none; color: #fff;
  border-left: 3px solid transparent;
  transition: all .3s;
}
.cnt-row:hover { background: rgba(255,255,255,.08); border-left-color: var(--bamboo); transform: translateX(8px); }
.cnt-ico { font-size: 20px; width: 36px; flex-shrink: 0; }
.cnt-lbl { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--bamboo); margin-bottom: 3px; }
.cnt-val { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; }
.cnt-vis { position: relative; height: 480px; }
.cv-main {
  position: absolute; top: 0; left: 0; right: 44px; bottom: 44px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--dark) 100%);
  border-radius: 4px 80px 4px 4px / 4px 4px 80px 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.12); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.cv-accent {
  position: absolute; bottom: 0; right: 0;
  width: 44%; height: 44%;
  background: var(--bamboo);
  border-radius: 80px 4px 4px 4px / 4px 4px 4px 80px;
  display: flex; align-items: center; justify-content: center;
}
.cv-accent img { width: 65%; filter: brightness(0) invert(1); opacity: .9; }

/* ═══ CHI SIAMO PAGE ═══ */

/* --- Sezione unica storia+foto+perché --- */
.cs-story { background: var(--cream); padding: 80px 0 100px; }

/* Testo: larghezza lettura ottimale, centrato */
.cs-story-inner { max-width: 1200px; margin: 0 auto 72px; padding: 0 52px; }
.cs-why-inner    { max-width: 1200px; margin: 72px auto 0;  padding: 0 52px; }

.cs-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.6vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.cs-p {
  font-family: 'Jost', sans-serif;
  font-size: 25px; font-weight: 300;
  line-height: 1.9; color: var(--txtl);
  margin-bottom: 20px;
}
.cs-quote { border-left: 2px solid var(--bamboo); padding: 16px 24px; margin: 32px 0; }
.cs-quote p { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-style: italic; font-weight: 300; color: var(--dark); line-height: 1.5; }

.cs-story-visual { position: relative; }
.cs-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--bamboo);
  display: flex; align-items: center; justify-content: center;
}
.cs-img-badge span { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #fff; text-align: center; line-height: 1.5; }

/* Sezione valori */
.cs-values-sec { background: var(--dark); padding: 80px 52px; }
.cs-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; }
.cs-val { text-align: center; }
.cs-val-icon { width: 44px; height: 44px; margin: 0 auto 20px; color: var(--bamboo); }
.cs-val-icon svg { width: 100%; height: 100%; }
.cs-val-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: #fff; margin-bottom: 12px; }
.cs-val-desc { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); line-height: 1.8; }

/* Photo strip */
.cs-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 860px;
  margin: 0 auto;
}
.cs-strip-img { overflow: hidden; aspect-ratio: 3/4; }
.cs-strip-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.cs-strip-img:hover img { transform: scale(1.04); }

/* Statistiche perche noi */
.cs-why-nums {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; margin-top: 52px; text-align: center;
}
.cs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300; color: var(--dark);
  display: block; margin-bottom: 8px;
}
.cs-why-nums p {
  font-family: 'Jost', sans-serif; font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--txtl); line-height: 1.5;
}


@media (max-width: 768px) {
  .cs-story { padding: 56px 0 64px; }
  .cs-story-inner { padding: 0 24px; margin-bottom: 40px; }
  .cs-why-inner   { padding: 0 24px; margin-top: 40px; }
  .cs-h2          { font-size: clamp(22px, 5vw, 36px); margin-bottom: 20px; }
  .cs-p           { font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
  .cs-strip-inner { gap: 3px; }
  .cs-strip-img   { aspect-ratio: 3/4; }
  .cs-values-sec  { padding: 64px 20px; }
  .cs-values      { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cs-val-title   { font-size: 18px; }
  .cs-val-desc    { font-size: 12px; }
  .cs-why-nums    { grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 32px; }
  .cs-num         { font-size: clamp(20px, 6vw, 36px); }
  .cs-why-nums p  { font-size: 8.5px; letter-spacing: .08em; }
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--sage);
  padding: 80px 52px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band .sec-title { color: #fff; margin-bottom: 12px; }
.cta-band-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.55); margin-bottom: 36px;
}
.cta-band .btn { margin: 0 8px; }
.cta-band-note {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-top: 16px;
}

/* ── HP STEPS (homepage only) — sfondo cream ── */
.hp-steps {
  background: var(--cream);
}
.hp-steps .sec-title    { color: var(--dark); }
.hp-steps .sec-label    { color: var(--bamboo); }
.hp-steps .srv-step-title { color: var(--txt); }
.hp-steps .srv-step-desc  { color: var(--txtl); }
.hp-steps .srv-step-num   { color: var(--bamboo); }

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-slideshow::after {
  content: ''; position: absolute; inset: 0; z-index: 10;
  background: rgba(18,18,12,.60);
  pointer-events: none;
}
.hs-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  filter: grayscale(.18) contrast(1.04);
  will-change: opacity;
}
.hero-blob1, .hero-blob2 { z-index: 2; }
.hero-grain               { z-index: 3; }
.hero-cnt, .hero-scroll   { position: relative; z-index: 4; }
.hero::after              { z-index: 5; pointer-events: none; }

/* ── FOTO PROFILO PIÙ GRANDE (desktop) ── */
@media (min-width: 769px) {
  .about-photo-img { width: 280px; height: 280px; }
}
.about-sec { background: var(--cream); }
.about-inner {
  display: flex; align-items: center; gap: 56px;
  max-width: 900px; margin: 0 auto; padding: 80px 52px;
}
.about-photo-img {
  width: 200px; height: 200px; border-radius: 50%;
  border: 2px solid var(--bamboo);
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.about-text { flex: 1; }
.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 400; color: var(--dark);
  margin-bottom: 12px;
}
.about-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic; font-weight: 300;
  color: var(--txtl); line-height: 1.7; margin-bottom: 24px;
}
.about-stats {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 28px;
}
.about-stat { display: flex; flex-direction: column; gap: 4px; }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 400; color: var(--bamboo);
  line-height: 1;
}
.about-stat-label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--txtl);
}
.about-stat-divider {
  width: 1px; height: 40px; background: rgba(0,0,0,.1);
}
.about-stat-zones {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--txtl); line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,0) 22%),
    var(--dark);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 72px 52px 34px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "social"
    "legal"
    "links";
  align-items: center;
  justify-items: center;
  gap: 26px;
  position: relative;
  text-align: center;
}
footer::before {
  content: '';
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,184,150,.75), transparent);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
footer > img {
  display: none;
}
.ft-social {
  grid-area: social;
  justify-self: center;
  display: flex;
  gap: 24px;
  padding: 0;
}
.ft-social .srv-scrivici-icon {
  width: 68px;
  height: 68px;
  border-color: rgba(184,154,110,.24);
  background: rgba(255,255,255,.02);
}
.ft-social .srv-scrivici-icon svg {
  width: 28px;
  height: 28px;
}
.ft-links {
  grid-area: links;
  display: flex;
  gap: 0;
  list-style: none;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  max-width: 920px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ft-links li + li::before { content: '·'; color: rgba(255,255,255,.15); padding: 0 12px; }
.ft-links a {
  color: rgba(255,255,255,.45); text-decoration: none;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  transition: color .3s;
}
.ft-links a:hover { color: var(--bamboo); }
.ft-legal {
  grid-area: legal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 28px; width: 100%; max-width: 920px;
  justify-self: center;
}
.ft-copy {
  width: 100%;
  font-size: 15px;
  color: rgba(255,255,255,.46);
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.ft-piva {
  font-size: 14px;
  color: rgba(255,255,255,.30);
  letter-spacing: .04em;
  line-height: 1.45;
}

/* ── SCROLL REVEAL ── */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.rv.on { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }
.rv.d4 { transition-delay: .4s; }

/* ── CLIP-PATH TITLE REVEAL ── */
.rv-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.0s cubic-bezier(.77,0,.18,1);
}
.rv-clip.on { clip-path: inset(0 0 0% 0); }
.rv-clip.d1 { transition-delay: .12s; }
.rv-clip.d2 { transition-delay: .24s; }

/* ── STEP NUMBER REVEAL ── */
.rv-num {
  clip-path: inset(100% 0 0 0);
  transition: clip-path .7s cubic-bezier(.77,0,.18,1);
}
.rv-num.on { clip-path: inset(0% 0 0 0); }
.rv-num.d1 { transition-delay: .1s; }
.rv-num.d2 { transition-delay: .2s; }
.rv-num.d3 { transition-delay: .3s; }

/* ── ANIMATIONS ── */
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20%       { transform: translate(-2px, 1px); }
  40%       { transform: translate(1px, -2px); }
  60%       { transform: translate(2px, 1px); }
  80%       { transform: translate(-1px, 2px); }
}
@keyframes morph1 {
  0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  50%       { border-radius: 40% 60% 35% 65% / 60% 40% 65% 35%; }
}
@keyframes morph2 {
  0%, 100% { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
  50%       { border-radius: 60% 40% 65% 35% / 40% 60% 35% 65%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLine {
  0%, 100% { transform: scaleX(1); opacity: .28; }
  50%       { transform: scaleX(1.4); opacity: .6; }
}
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184,154,110,0); }
  50%       { box-shadow: 0 0 0 10px rgba(184,154,110,.18); }
}

/* ── ARCH CARD HOVER OVERLAY ── */
.arch-frame::after {
  content: 'Scopri';
  position: absolute; inset: 0;
  background: rgba(24,24,15,.52);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  opacity: 0; transition: opacity .4s;
}
.arch-card:hover .arch-frame::after { opacity: 1; }


/* ── FORM FEEDBACK MESSAGE ── */
#form-msg {
  padding: 14px 18px;
  font-size: 13px; letter-spacing: .04em;
  display: none;
}
#form-msg.ok {
  background: rgba(61,82,71,.2);
  border-left: 3px solid var(--sage);
  color: rgba(255,255,255,.75);
  display: block;
}
#form-msg.err {
  background: rgba(180,60,60,.15);
  border-left: 3px solid #b44040;
  color: rgba(255,200,200,.8);
  display: block;
}

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 889;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; transform: translateY(10px);
  transition: opacity .3s, transform .3s, background .3s, border-color .3s;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: rgba(184,154,110,.18); border-color: var(--bamboo); }
#back-to-top svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.55); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── PAGE TRANSITION ── */
@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: pageIn .28s ease both; }
body.page-out { opacity: 0 !important; transition: opacity .22s ease; animation: none; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
#preloader img {
  width: 200px; max-width: 60vw;
  filter: brightness(0) invert(1);
  animation: preloaderPulse .9s ease-in-out infinite alternate;
}
@keyframes preloaderPulse {
  from { opacity: .3; }
  to   { opacity: .8; }
}

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 600;
  height: 2px; width: 0%;
  background: var(--bamboo);
  transition: width .1s linear;
  pointer-events: none;
}

/* ── WA STICKY BUTTON ── */
#wa-sticky {
  position: fixed; bottom: 28px; right: 28px; z-index: 890;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  opacity: 0; transform: scale(.8) translateY(10px);
  transition: opacity .35s, transform .35s;
  text-decoration: none;
  cursor: pointer;
}
#wa-sticky.visible { opacity: 1; transform: scale(1) translateY(0); }
#wa-sticky svg { width: 26px; height: 26px; color: #fff; fill: none; stroke: #fff; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
#wa-sticky:hover { background: #1ebe5d; transform: scale(1.08) translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(24,24,15,.97);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.45);
  transform: translateY(100%); transition: transform .45s cubic-bezier(.16,1,.3,1);
  backdrop-filter: blur(10px);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner a { color: var(--bamboo); text-decoration: none; }
#cookie-banner a:hover { color: var(--bambl); }
#cookie-btn {
  background: var(--bamboo); color: #fff;
  border: none; cursor: pointer;
  padding: 10px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0;
  transition: background .3s;
}
#cookie-btn:hover { background: var(--bambl); color: var(--dark); }


/* ── RESPONSIVE ── */
@media (min-width: 769px) {
  .hero-line br { display: none; }
  .hero-line { white-space: nowrap; font-size: clamp(18px, 2vw, 30px); }
}

/* ═══ HERO TEXT ANIMATION ═══ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag   { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .1s both; }
.hero-logo  { animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .28s both; }
.hero-line  { animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .48s both; }
.hero-btns  { animation: heroFadeUp .9s cubic-bezier(.16,1,.3,1) .68s both; }
.srv-hero-cnt .sec-label { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .3s both; }
.srv-hero-title           { animation: heroFadeUp 1s  cubic-bezier(.16,1,.3,1) .5s both; }
.srv-hero-cnt .btn        { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .75s both; }
.page-banner-cnt .sec-label    { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .3s both; }
.page-banner-cnt .sec-title    { animation: heroFadeUp 1s  cubic-bezier(.16,1,.3,1) .5s both; }
.page-banner-cnt .page-banner-sub { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .7s both; }

/* ═══ FAQ SMOOTH ═══ */
.faq-a { opacity: 0; transition: max-height .4s ease, padding .4s ease, opacity .3s ease; }
.faq-item.open .faq-a { opacity: 1; }
.faq-q::after { transition: transform .3s ease; }

/* ═══ STICKY MOBILE CTA (service pages) ═══ */
#srv-cta-mobile {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: #25D366;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.16,1,.3,1);
}
#srv-cta-mobile a {
  display: block; padding: 15px 24px;
  color: #fff; text-decoration: none;
  font-family: var(--jost); font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
  text-align: center;
}
#srv-cta-mobile.visible { transform: translateY(0); }
@media (max-width: 768px) {
  #srv-cta-mobile { display: block; }
  #wa-sticky.wa-srv { display: none; }
}

/* ═══ LIGHTBOX ═══ */
#lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(12,12,8,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .32s ease, visibility .32s ease;
  cursor: zoom-out;
}
#lightbox.lb-open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(.94);
  transition: transform .32s cubic-bezier(.16,1,.3,1);
  cursor: default;
  user-select: none;
}
#lightbox.lb-open img { transform: scale(1); }
#lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 28px; line-height: 1; cursor: pointer; padding: 8px;
  transition: color .2s;
}
#lb-close:hover { color: #fff; }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.5);
  font-size: 48px; line-height: 1; cursor: pointer; padding: 16px;
  transition: color .2s; user-select: none;
}
.lb-arrow:hover { color: #fff; }
#lb-prev { left: 8px; }
#lb-next { right: 8px; }
#lb-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-family: var(--jost); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
}
.fam-col img, .fam-bento img { cursor: zoom-in; }
@media (max-width: 768px) {
  .lb-arrow { font-size: 36px; padding: 10px; }
}

/* ═══ FAMIGLIA GALLERY ═══ */
.fam-gallery-sec {
  padding: 0;
  background: var(--dark2);
}
.fam-masonry {
  display: flex;
  gap: 5px;
  padding: 5px;
  align-items: flex-start;
}
.fam-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  overflow: hidden;
}
.fam-col img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.fam-col img:hover { transform: scale(1.05); filter: brightness(1.03); }

.fam-bento {
  display: grid;
  gap: 5px;
  padding: 5px;
  overflow: hidden;
}
.fam-bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.fam-bento img:hover { transform: scale(1.05); filter: brightness(1.03); }

/* Mid bento: portrait anchors left, landscapes fill right */
.fam-bento-mid {
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 285px 285px;
}
.fam-bento-mid .fam-anchor-l { grid-column: 1; grid-row: 1 / 3; }
.fam-bento-mid .fam-wide-r  { grid-column: 2 / 4; }

/* Bot bento: wide landscape top-left, portrait anchors right */
.fam-bento-bot {
  grid-template-columns: 1fr 1fr 1.15fr;
  grid-template-rows: 285px 285px;
}
.fam-bento-bot .fam-anchor-r { grid-column: 3; grid-row: 1 / 3; }
.fam-bento-bot .fam-wide-l   { grid-column: 1 / 3; }

/* Bot bento 5 photos: 4 left + anchor right */
.fam-bento-bot-5 {
  grid-template-columns: 1fr 1fr 1.15fr;
  grid-template-rows: 285px 285px;
}
.fam-bento-bot-5 .fam-anchor-r { grid-column: 3; grid-row: 1 / 3; }

/* Justified rows: stessa altezza per riga, larghezze proporzionali, zero spazi vuoti */
.fam-justified {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.fam-row {
  display: flex;
  gap: 5px;
  height: 280px;
  overflow: hidden;
}
.fam-row-tall { height: 320px; }
.fam-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  overflow: hidden;
}
.fam-equal img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.fam-equal img:hover { transform: scale(1.05); filter: brightness(1.03); }
.fam-row img {
  flex: 1;
  object-fit: cover;
  height: 100%;
  min-width: 0;
  display: block;
  cursor: zoom-in;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.fam-row img:hover { transform: scale(1.05); filter: brightness(1.03); }

/* Homepage Come funziona — cream override */
.hp-steps { background: var(--cream); }
.hp-steps .sec-label { color: var(--bamboo); }
.hp-steps .sec-title { color: var(--dark); }
.hp-steps .srv-step { border-color: rgba(0,0,0,.08); }
.hp-steps .srv-step-num { color: var(--bamboo); }
.hp-steps .srv-step-title { color: var(--dark); }
.hp-steps .srv-step-desc { color: var(--txtl); }

/* Storytelling section (replaces Come funziona on service pages) */
.srv-story {
  background: var(--offwhite);
  padding: 48px 0 56px;
  text-align: center;
}
.srv-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}
.srv-story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.srv-story-text {
  max-width: 980px;
  margin: 0 auto;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--txtl);
}

/* Chi-siamo hero layout: foto sinistra + testo destra */
.cs-hero-cnt {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.cs-hero-photo { flex-shrink: 0; width: clamp(200px, 26vw, 360px); }
.cs-hero-text  { flex: 1; }

/* Chi-siamo circular photo */
.cs-img-main {
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1.5px solid var(--bamboo);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background-size: cover;
  background-position: center top;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}

/* Section separators */
.about-sec { border-top: 1px solid rgba(0,0,0,.06); }
.reviews-sec { border-top: 1px solid rgba(0,0,0,.06); }

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(18,18,12,.96);
    backdrop-filter: blur(14px);
    padding: 24px; gap: 20px;
    animation: navSlideDown .28s cubic-bezier(.16,1,.3,1) both;
  }
  .hero { align-items: flex-start; height: auto; min-height: 0; padding-top: 100px; padding-bottom: 56px; }
  .hero-cnt { margin-top: 0; }
  .hero-tag  { margin-bottom: 12px; }
  .hero-logo { margin-bottom: 14px; }
  .hero-line { margin-bottom: 20px; font-size: clamp(18px, 4.5vw, 28px); }
  .hero-btns { gap: 10px; }
  .nav-drop { display: none !important; }
  .nav-has-drop.drop-open .nav-drop {
    display: block !important;
    position: static; opacity: 1; visibility: visible; transform: none;
    background: rgba(255,255,255,.04);
    border: none; border-left: 2px solid rgba(184,154,110,.4);
    backdrop-filter: none; min-width: auto;
    padding: 4px 0 8px 16px; margin-top: 4px;
  }
  .nav-has-drop.drop-open .nav-drop li a { padding: 8px 12px; font-size: 10px; }
  .arch-sec { padding: 28px 24px; }
  .hero-blob1 { width: 180vw; height: 180vw; top: -30%; left: -45%; max-width: none; max-height: none; }
  .arch-grid { grid-template-columns: 1fr; gap: 20px; max-width: 320px; margin: 0 auto; }
  .arch-card { width: 100%; }
  .nums-sec { grid-template-columns: 1fr 1fr; padding: 48px 24px; }
  .cnt-sec { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .cnt-vis { display: none; }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 46px 24px 26px;
    gap: 20px;
    text-align: center;
  }
  footer::before { width: 72px; }
  .ft-social {
    gap: 14px;
    padding: 2px 0 0;
  }
  .ft-social .srv-scrivici-icon {
    width: 48px;
    height: 48px;
  }
  .ft-social .srv-scrivici-icon svg {
    width: 22px;
    height: 22px;
  }
  .ft-legal {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: none;
    gap: 5px;
    padding-top: 18px;
  }
  .ft-copy {
    width: auto;
    font-size: 12px;
    line-height: 1.5;
  }
  .ft-piva {
    font-size: 11px;
    line-height: 1.45;
  }
  .ft-links {
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding-top: 16px;
  }
  .ft-links li + li::before { content: '·'; color: rgba(255,255,255,.15); padding: 0 8px; }
  .ft-links a { font-size: 10px; letter-spacing: .16em; }
  .cnt-form-wrap { padding: 110px 24px 60px; }
  .cnt-form-btns { flex-direction: column; }
  .cnt-form-btns .btn { min-width: 100%; }
  .hero-scroll { display: none; }
  .page-banner { padding: 76px 24px 20px; }
  .cs-hero-cnt { flex-direction: column; gap: 24px; text-align: center; }
  .cs-hero-photo { width: 200px; align-self: center; }
  .page-banner-sub { margin: 0 auto; }
  .faq-sec { padding: 56px 24px; }
  .cta-band { padding: 48px 24px; }
  /* Service page template mobile */
  .srv-hero { height: auto; min-height: 0; padding-top: 100px; padding-bottom: 56px; }
  .srv-hero-title { font-size: clamp(26px, 7vw, 48px); }
  .page-banner .sec-title { font-size: clamp(26px, 7vw, 48px); }
  .srv-port-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-port-6 .srv-port-grid { grid-template-columns: repeat(2, 1fr); }
  .srv-bridge { padding: 32px 24px 40px; }
  .srv-bridge-title { font-size: clamp(22px, 6vw, 34px); margin-bottom: 18px; }
  .srv-bridge p { font-size: 18px; line-height: 1.85; }
  .srv-steps-sec { padding: 52px 24px; }
  .srv-steps { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .srv-price-sec { padding: 44px 24px; }
  .srv-cta-final { padding: 56px 24px; }
  .reviews-track { padding: 0 24px 16px; }
  .review-card { flex: 0 0 280px; }
  body { cursor: auto; }
  #cur, #curR { display: none; }
  #wa-sticky { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  #wa-sticky svg { width: 22px; height: 22px; }
  #cookie-banner { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
  #cookie-btn { width: 100%; text-align: center; padding: 12px; }
  #back-to-top { display: none; }
  /* About section mobile */
  .about-inner { flex-direction: column; text-align: center; padding: 56px 24px; gap: 32px; }
  .about-photo-img { width: 160px; height: 160px; margin: 0 auto; }
  .about-stats { justify-content: center; flex-wrap: wrap; }
  .about-stat { align-items: center; }
  .about-name { font-size: 26px; }
  .hero-loc { font-size: 11px; margin-bottom: 20px; }
  .hero-proof { font-size: 10px; margin-top: 18px; }
  /* Famiglia gallery mobile */
  .fam-masonry { gap: 3px; padding: 3px; }
  .fam-col { gap: 3px; }
  .fam-bento { gap: 3px; padding: 3px; }
  .fam-bento-mid,
  .fam-bento-bot,
  .fam-bento-bot-5 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .fam-bento-mid .fam-anchor-l,
  .fam-bento-bot .fam-anchor-r,
  .fam-bento-bot-5 .fam-anchor-r,
  .fam-bento-mid .fam-wide-r,
  .fam-bento-bot .fam-wide-l   { grid-column: auto; grid-row: auto; }
  .fam-justified { gap: 3px; padding: 3px; }
  .fam-row { height: 160px; gap: 3px; }
  .fam-row-tall { height: 200px; }
  .fam-equal { gap: 3px; padding: 3px; }
  .srv-story { padding: 32px 0 40px; }
  .srv-story-inner { padding: 0 24px; }
  .srv-story-text { font-size: 18px; line-height: 1.85; }
  .fam-bento img { height: auto; aspect-ratio: 3/2; object-position: center center; }
  .cnt-intro { margin-bottom: 28px; }
  .brevo-popup-wrap { max-width: 94vw; }
}

/* ── CROSS-SELL tra servizi correlati ── */
.srv-crossell {
  font-size: 13px;
  color: var(--txtl);
  margin-top: 20px;
  line-height: 1.7;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.srv-crossell a { color: var(--bamboo); text-decoration: underline; }

/* ── PREVENTIVO CTA text ── */
.srv-preventivo-txt {
  font-size: 15px;
  font-weight: 300;
  color: var(--txtl);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.75;
}

/* ── CONTATTI intro header ── */
.cnt-intro { text-align: center; margin-bottom: 44px; }
.cnt-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--bamboo);
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.cnt-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--txtl);
  line-height: 1.85;
}

/* ── PREVENTIVO FORM checkboxes ── */
.cnt-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 10px;
}
.cnt-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--txtl);
  cursor: pointer;
  line-height: 1.4;
}
.cnt-check-label input[type="checkbox"] {
  accent-color: var(--bamboo);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── BREVO POPUP overlay ── */
.brevo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.40);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.brevo-overlay.open { opacity: 1; pointer-events: auto; }
.brevo-popup-wrap {
  position: relative;
  max-width: 560px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transform: scale(.92);
  transition: transform .35s cubic-bezier(.34,1.4,.64,1);
}
.brevo-overlay.open .brevo-popup-wrap { transform: scale(1); }
.brevo-popup-wrap::-webkit-scrollbar { display: none; }
.brevo-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 1;
  line-height: 1;
  transition: background .2s;
}
.brevo-close:hover { background: rgba(255,255,255,.3); }

/* ═══ MULTI-STEP FORM ═══ */
.cnt-progress-wrap { margin-bottom: 32px; }
.cnt-progress-bar { height: 2px; background: rgba(255,255,255,.10); border-radius: 2px; overflow: hidden; }
.cnt-progress-fill { height: 100%; background: var(--bamboo); border-radius: 2px; transition: width .4s ease; }
.cnt-progress-label { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--txtl); margin-top: 10px; opacity: .65; }

.cnt-step-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px,2.8vw,30px); font-weight: 300; color: var(--bambl); margin-bottom: 24px; letter-spacing: .01em; }

/* Field group spacing inside each step */
.cnt-step > div { margin-bottom: 18px; }
.cnt-step > div:last-child { margin-bottom: 0; }

/* Card options */
.cnt-card-opts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.cnt-card-opt {
  padding: 10px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  cursor: pointer; font-size: 12px; color: var(--txtl);
  transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  user-select: none; letter-spacing: .03em;
}
.cnt-card-opt:hover { border-color: rgba(184,154,110,.5); color: var(--bambl); }
.cnt-card-opt.sel {
  border-color: var(--bamboo);
  background: rgba(184,154,110,.13);
  color: var(--bambl);
  box-shadow: inset 0 0 0 1px rgba(184,154,110,.25);
}

/* Recap rows */
.cnt-recap { margin-top: 20px; margin-bottom: 4px; }
.cnt-recap-row { display: flex; justify-content: space-between; gap: 16px; font-size: 12px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.cnt-recap-row span { color: var(--txtl); opacity: .6; }
.cnt-recap-row strong { color: var(--bambl); font-weight: 400; text-align: right; flex-shrink: 0; max-width: 60%; }

/* Confirmation screen */
.cnt-confirm { text-align: center; padding: 40px 0; max-width: 640px; margin: 0 auto; }
.cnt-confirm-check { font-size: 40px; margin-bottom: 16px; color: var(--bamboo); }
.cnt-confirm-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px,3.5vw,38px); font-weight: 300; color: var(--bambl); margin-bottom: 12px; }
.cnt-confirm-sub { font-size: 13px; color: var(--txtl); line-height: 1.8; margin-bottom: 24px; }
.cnt-confirm-recap { background: rgba(255,255,255,.04); border-radius: 12px; padding: 18px 22px; text-align: left; margin: 0 auto 28px; }
.cnt-confirm-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* Step nav */
.cnt-step-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 28px; }
.btn-back {
  background: transparent; border: 1px solid rgba(255,255,255,.15); color: var(--txtl);
  font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  padding: 12px 20px; cursor: pointer; border-radius: 2px; transition: all .2s ease;
}
.btn-back:hover { border-color: var(--bamboo); color: var(--bamboo); }

/* Hint text */
.cnt-hint { font-size: 11px; color: var(--txtl); opacity: .6; display: block; margin-top: 5px; line-height: 1.5; }

/* Field error */
.cnt-field-error { font-size: 11px; color: #e07070; display: block; margin-top: 4px; line-height: 1.4; }

/* Focus box-shadow enhancement */
.cnt-form input:focus,
.cnt-form select:focus,
.cnt-form textarea:focus { box-shadow: 0 0 0 3px rgba(184,154,110,.10); }

/* Mobile sticky submit */
@media (max-width: 768px) {
  .cnt-form-btns {
    position: sticky; bottom: 0; background: var(--dark2);
    padding: 14px 24px; border-top: 1px solid rgba(255,255,255,.06); z-index: 5;
    margin-left: -24px; margin-right: -24px;
  }
}

/* Hide wa-sticky on service pages (all screen sizes) */
#wa-sticky.wa-srv { display: none !important; }

/* ── Editorial portfolio grid ── */
.port-edit {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 2px;
}
.port-row {
  display: flex;
  gap: 2px;
}

.port-img-wrap {
  overflow: hidden;
  min-width: 0;
  position: relative;
}
/* aspect-ratio enforces 3:2 / 4:5 — flex value (set inline) controls width proportion */
.port-img-wrap.landscape { aspect-ratio: 3 / 2; }
.port-img-wrap.portrait  { aspect-ratio: 4 / 5; }
.port-img-wrap {
  background: linear-gradient(90deg, #1c1c14 25%, #282820 50%, #1c1c14 75%);
  background-size: 200% 100%;
  animation: img-shimmer 1.4s ease-in-out infinite;
}
@keyframes img-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.port-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.35s ease;
}
.port-img-wrap img.img-loaded {
  opacity: 1;
  transform: translateY(0);
}
.port-img-wrap.img-done {
  animation: none;
  background: none;
}
/* Overlay trasparente: intercetta i click (lightbox) e blocca right-click su <img> */
.port-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  z-index: 1;
}
.port-img-wrap:hover img { filter: brightness(1.07); }
/* Lightbox image: no download */
#lightbox img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* ── Accessibilità: rispetta "riduci movimento" del sistema ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Mostra subito gli elementi con reveal-on-scroll (niente fade/clip) */
  .rv, .rv-clip, .rv-num { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  /* Nasconde il cursore custom */
  #cur, #curR { display: none !important; }
}
