/* ═══════════════════════════════════════════════════════════
   STIFONE IN CANOA — Gole del Nera Adventure
   Palette: teal del fiume Nera + turchese del fiume
   Font: Sora (display) + DM Sans (body)
   ═══════════════════════════════════════════════════════════ */

:root {
  --brand: #0a9b85;
  --brand-dark: #067a69;
  --brand-light: #ddf5ef;
  --accent: #14a0b5;
  --accent-dark: #0c7f91;
  --accent-light: #dcf4f8;
  --ink: #0f1f1a;
  --text: #2b4840;
  --muted: #5e7e74;
  --bg: #f5faf7;
  --bg-alt: #e8f2ec;
  --line: #c2d6cc;
  --white: #ffffff;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 4px rgba(10,155,133,.08);
  --shadow-md: 0 6px 20px rgba(10,155,133,.10);
  --shadow-lg: 0 16px 48px rgba(10,155,133,.14);
  --shadow-glow: 0 0 36px rgba(10,155,133,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --nav-h: 76px;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--accent); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.4rem); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  transition: width .4s var(--ease);
}

.section {
  padding: clamp(6rem, 13vw, 10rem) 0;
}
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--ink);
  color: rgba(255,255,255,.85);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark .eyebrow { color: var(--accent); }

/* ── BUTTONS ──────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%);
  transition: transform .45s var(--ease);
}
.btn:hover::after {
  transform: translateX(0);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(20,160,181,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(22,36,32,.2);
}
.btn-wa {
  background: linear-gradient(135deg, var(--accent) 0%, #2cc0d4 100%);
  color: var(--white);
  border-color: transparent;
}
.btn-wa:hover {
  background: var(--accent-dark);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(20,160,181,.35);
}

/* ── HEADER ────────────────────────────────────── */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all .45s var(--ease);
}
.header.is-scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(10,155,133,.08), var(--shadow-sm);
}
.header.is-hidden {
  transform: translateY(-100%);
}
.header.is-scrolled .header__logo-text { color: var(--ink); }
.header.is-scrolled .header__nav a { color: var(--text); }
.header.is-scrolled .header__nav a:hover,
.header.is-scrolled .header__nav a.is-active { color: var(--brand); }
.header.is-scrolled .header__nav a::after { background: var(--brand); }
.header.is-scrolled .header__cta {
  background: linear-gradient(135deg, var(--accent) 0%, #2cc0d4 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(20,160,181,.25);
}
.header.is-scrolled .hamburger span { background: var(--ink); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.4rem);
}
.header__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  z-index: 101;
}
.header__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  padding: 5px;
  transition: all .35s var(--ease-bounce);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.header__brand:hover .header__logo {
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 4px 16px rgba(10,155,133,.2);
}
.header__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.15;
  transition: color .4s var(--ease);
}
.header__logo-text span {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  opacity: .65;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 1px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.header__nav a {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  transition: all .3s var(--ease);
  text-decoration: none;
  position: relative;
  z-index: 0;
  padding: .45rem .85rem;
  border-radius: 60px;
}
.header__nav a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 60px;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.header__nav a:hover::after {
  opacity: 1;
}
.header__nav a.is-active {
  color: var(--white);
  font-weight: 600;
}
.header__nav a.is-active::after {
  opacity: 1;
  background: rgba(255,255,255,.18);
}
.header.is-scrolled .header__nav a::after {
  background: var(--brand-light);
}
.header.is-scrolled .header__nav a.is-active::after {
  background: var(--brand-light);
  opacity: 1;
}
.header__nav a:hover { color: var(--white); }
.header__cta {
  font-size: .8rem;
  padding: .6rem 1.4rem;
  border-radius: 60px;
  background: rgba(255,255,255,.14);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.25);
  font-family: var(--font-display);
  font-weight: 600;
  transition: all .35s var(--ease);
  text-decoration: none;
  letter-spacing: .01em;
  margin-left: .5rem;
}
.header__cta:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #2cc0d4 100%);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20,160,181,.35);
}

/* Hamburger */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 0;
  z-index: 101;
  transition: all .35s var(--ease);
}
.header.is-scrolled .hamburger {
  background: var(--bg-alt);
  border-color: var(--line);
}
.hamburger:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.3);
}
.header.is-scrolled .hamburger:hover {
  background: var(--brand-light);
  border-color: var(--brand);
}
.hamburger__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: all .4s var(--ease);
  transform-origin: center;
}
.hamburger span:nth-child(2) { width: 70%; margin-left: auto; }
.hamburger[aria-expanded="true"] {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.2);
}
.hamburger[aria-expanded="true"] span { background: var(--white); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); width: 100%; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #0a1c16 0%, var(--ink) 40%, #0d2920 100%);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--nav-h) + 2rem) clamp(2rem, 8vw, 4rem) 2rem;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .45s var(--ease);
  overflow: hidden;
}
.mobile-nav::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,155,133,.12) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-nav::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,160,181,.08) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  position: relative;
}
.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateX(-30px);
  transition: all .4s var(--ease);
}
.mobile-nav__links a::after {
  content: '\2192';
  font-size: .9em;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s var(--ease);
  color: var(--accent);
}
.mobile-nav__links a:hover {
  color: var(--white);
  padding-left: .8rem;
}
.mobile-nav__links a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav.is-open .mobile-nav__links a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.is-open .mobile-nav__links a:nth-child(1) { transition-delay: .06s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(2) { transition-delay: .10s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(3) { transition-delay: .14s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(4) { transition-delay: .18s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(5) { transition-delay: .22s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(6) { transition-delay: .26s; }
.mobile-nav.is-open .mobile-nav__links a:nth-child(7) { transition-delay: .30s; }

.mobile-nav__cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s var(--ease);
}
.mobile-nav.is-open .mobile-nav__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .32s;
}

.mobile-nav__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem clamp(2rem, 8vw, 4rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.06);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.mobile-nav.is-open .mobile-nav__footer {
  opacity: 1;
  transition-delay: .38s;
}
.mobile-nav__social {
  display: flex;
  gap: .6rem;
}
.mobile-nav__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all .3s var(--ease);
  opacity: 1 !important;
  transform: none !important;
  padding: 0;
  font-size: inherit;
}
.mobile-nav__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.mobile-nav__contact {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  text-align: right;
}
.mobile-nav__contact a {
  color: rgba(255,255,255,.5) !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
  display: block;
  padding: 0 !important;
  border: none !important;
  opacity: 1 !important;
  transform: none !important;
}
.mobile-nav__contact a:hover {
  color: var(--accent) !important;
  padding-left: 0 !important;
}

/* ── HERO ──────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  will-change: transform;
  transition: transform .1s linear;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10,22,18,.72) 0%,
      rgba(10,22,18,.35) 12%,
      rgba(10,22,18,0) 26%
    ),
    linear-gradient(
      to top,
      rgba(22,36,32,.88) 0%,
      rgba(22,36,32,.45) 35%,
      rgba(22,36,32,.15) 60%,
      rgba(22,36,32,0) 100%
    ),
    linear-gradient(
      to right,
      rgba(10,22,18,.5) 0%,
      rgba(10,22,18,.25) 45%,
      rgba(10,22,18,0) 75%
    );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 8vw, 5.5rem);
  max-width: 700px;
}
.hero__content h1 {
  color: var(--white);
  margin-bottom: .6rem;
}
.hero__content h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__badge {
  position: absolute;
  bottom: clamp(3rem, 8vw, 5.5rem);
  right: clamp(1.2rem, 4vw, 2.4rem);
  z-index: 2;
  display: flex;
  gap: 1.5rem;
}
.hero__stat {
  text-align: center;
  color: var(--white);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
}
.hero__stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .7;
  margin-top: .3rem;
}

/* ── QUICK STRIP ───────────────────────────────── */

.quick-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.quick-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.quick-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  padding: .8rem;
  border-radius: var(--radius);
  transition: all .35s var(--ease);
  cursor: default;
}
.quick-strip__item:hover {
  background: var(--brand-light);
  transform: translateY(-3px);
}
.quick-strip__icon {
  width: 40px;
  height: 40px;
  color: var(--brand);
  transition: transform .4s var(--ease-bounce);
}
.quick-strip__item:hover .quick-strip__icon {
  transform: scale(1.2) rotate(-5deg);
}
.quick-strip__label {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
}
.quick-strip__sub {
  font-size: .75rem;
  color: var(--muted);
}

/* ── EXPERIENCE ────────────────────────────────── */

.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6.5vw, 5.5rem);
  align-items: center;
}
.experience__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.experience__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.experience__media:hover img {
  transform: scale(1.04);
}
.experience__media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(13,125,108,.2), transparent);
  pointer-events: none;
}
.experience__text p {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  color: var(--text);
}
.experience__text p + p { margin-top: .8rem; }
.experience__text .btn { margin-top: 1.8rem; }

/* ── STEPS ─────────────────────────────────────── */

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  margin-top: 4.5rem;
}
.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: 0;
}
.step-card:hover::before {
  opacity: 1;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.step-card > * { position: relative; z-index: 1; }
.step-card:hover h3,
.step-card:hover p,
.step-card:hover .step-card__number { color: var(--white); }
.step-card:hover .step-card__icon { color: var(--white); }
.step-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-light);
  line-height: 1;
  margin-bottom: .8rem;
  transition: color .45s var(--ease);
}
.step-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--brand);
  transition: all .45s var(--ease);
}
.step-card:hover .step-card__icon {
  transform: scale(1.15);
}
.step-card h3 {
  margin-bottom: .6rem;
  transition: color .45s var(--ease);
}
.step-card p {
  font-size: .92rem;
  color: var(--muted);
  transition: color .45s var(--ease);
}

/* ── GALLERY ───────────────────────────────────── */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 1.4rem;
  margin-top: 4rem;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,125,108,.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.gallery__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%) scale(.6);
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  z-index: 2;
  opacity: 0;
  transition: all .4s var(--ease-bounce);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%230d7d6c' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='9' cy='9' r='7'/%3E%3Cline x1='15' y1='15' x2='19' y2='19'/%3E%3Cline x1='9' y1='6' x2='9' y2='12'/%3E%3Cline x1='6' y1='9' x2='12' y2='9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__item:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ── PRICING ───────────────────────────────────── */

.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6.5vw, 5.5rem);
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .45s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--brand);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transition: height .4s var(--ease);
}
.pricing-card:hover::before {
  height: 6px;
}
.pricing-card__label {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .5rem;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  transition: transform .35s var(--ease-bounce);
}
.pricing-card:hover .pricing-card__price {
  transform: scale(1.08);
}
.pricing-card__price sup {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: super;
}
.pricing-card__note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .3rem;
}
.pricing-card__features {
  list-style: none;
  margin-top: 1.8rem;
  text-align: left;
}
.pricing-card__features li {
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: transform .3s var(--ease);
}
.pricing-card__features li:hover {
  transform: translateX(4px);
}
.pricing-card__features li:last-child { border: none; }
.pricing-card__features svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}
.pricing-card .btn { margin-top: 2rem; width: 100%; justify-content: center; }

.pricing__info h3 { margin-bottom: 1rem; }
.pricing__info-list {
  list-style: none;
}
.pricing__info-list li {
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: .8rem;
  font-size: .92rem;
  transition: all .3s var(--ease);
}
.pricing__info-list li:hover {
  padding-left: .5rem;
  background: var(--brand-light);
  border-radius: var(--radius);
}
.pricing__info-list li:last-child { border: none; }
.pricing__info-label {
  font-weight: 600;
  color: var(--ink);
  min-width: 110px;
  flex-shrink: 0;
}

/* ── PLACES ────────────────────────────────────── */

.places__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4.5rem;
}
.place-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .45s var(--ease);
}
.place-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.place-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.place-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,36,32,.3) 0%, transparent 40%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.place-card:hover .place-card__img::after {
  opacity: 1;
}
.place-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.place-card:hover .place-card__img img { transform: scale(1.08); }
.place-card__body {
  padding: 1.4rem 1.5rem;
}
.place-card__body h3 {
  margin-bottom: .4rem;
  transition: color .3s var(--ease);
}
.place-card:hover .place-card__body h3 {
  color: var(--brand);
}
.place-card__body p { font-size: .88rem; color: var(--muted); }

/* ── ABOUT ─────────────────────────────────────── */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6.5vw, 5.5rem);
  align-items: center;
}
.about__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about__media:hover img {
  transform: scale(1.04);
}
.about__text p {
  margin-top: 1rem;
  font-size: 1.02rem;
}
.about__text p + p { margin-top: .7rem; }

/* ── CTA BANNER ────────────────────────────────── */

.cta-banner {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,58 400,2 600,30 C800,58 1000,2 1200,30 L1200,0 L0,0 Z' fill='%23f5faf7'/%3E%3C/svg%3E") top left / 1200px 55px repeat-x,
    linear-gradient(120deg, rgba(5,58,50,.92) 0%, rgba(6,90,88,.82) 45%, rgba(12,127,145,.78) 100%),
    url('../img/canoa-riflesso-nuvole-fiume-nera-1440.webp') center 40%/cover no-repeat;
  background-attachment: scroll, scroll, fixed;
  padding: clamp(6rem, 13vw, 9rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: float-circle 8s ease-in-out infinite;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  animation: float-circle 10s ease-in-out infinite reverse;
}
@keyframes float-circle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
.cta-banner h2 { color: var(--white); margin-bottom: .8rem; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-banner__buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── FLOATING WHATSAPP ────────────────────────── */

.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, #2cc0d4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(20,160,181,.4);
  transition: all .35s var(--ease-bounce);
  opacity: 0;
  transform: scale(0) translateY(20px);
}
.wa-float.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(20,160,181,.5);
  color: var(--white);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(20,160,181,.3);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── FOOTER ────────────────────────────────────── */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding-top: clamp(4.5rem, 9vw, 7rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
}
.footer__brand-text {
  font-size: .9rem;
  line-height: 1.6;
  margin-top: 1.2rem;
}
.footer__social {
  display: flex;
  gap: .8rem;
  margin-top: 1.2rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all .35s var(--ease-bounce);
}
.footer__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-4px) scale(1.1);
}
.footer h4 {
  color: var(--white);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.2rem;
}
.footer__links {
  list-style: none;
}
.footer__links li { margin-bottom: .6rem; }
.footer__links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: all .25s var(--ease);
  position: relative;
  display: inline-block;
}
.footer__links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}
.footer__contact-item {
  display: flex;
  gap: .6rem;
  margin-bottom: .8rem;
  font-size: .88rem;
  align-items: flex-start;
}
.footer__contact-item svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--brand);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .78rem;
}
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--accent); }
.footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── REVEAL ANIMATIONS ────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: .1s; }
.stagger-children > *:nth-child(3) { transition-delay: .2s; }
.stagger-children > *:nth-child(4) { transition-delay: .25s; }
.stagger-children > *:nth-child(5) { transition-delay: .3s; }
.stagger-children > *:nth-child(6) { transition-delay: .35s; }
.stagger-children > *:nth-child(7) { transition-delay: .4s; }
.stagger-children > *:nth-child(8) { transition-delay: .45s; }

/* ── FORM ──────────────────────────────────────── */

.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .2s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(13,125,108,.1);
  transform: translateY(-1px);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 1rem;
}
.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--brand);
}
.form-result {
  margin-top: 1rem;
  padding: .8rem 1.2rem;
  border-radius: var(--radius);
  font-size: .88rem;
  display: none;
}
.form-result.is-success {
  display: block;
  background: var(--brand-light);
  color: var(--brand-dark);
}
.form-result.is-error {
  display: block;
  background: #fef0e6;
  color: #c0392b;
}

/* ── CONTACT SECTION ───────────────────────────── */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6.5vw, 5.5rem);
}
.contact__info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--line);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.contact__info-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand);
  transform: scaleY(0);
  transition: transform .4s var(--ease);
  transform-origin: bottom;
}
.contact__info-card:hover::before {
  transform: scaleY(1);
}
.contact__info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.contact__info-card svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform .4s var(--ease-bounce);
}
.contact__info-card:hover svg {
  transform: scale(1.15);
}
.contact__info-card h4 { margin-bottom: .2rem; }
.contact__info-card p { font-size: .9rem; color: var(--muted); }
.contact__info-card a { color: var(--brand); font-weight: 500; }

/* ── BREADCRUMB ────────────────────────────────── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--brand); }
.breadcrumb span { color: var(--line); }

/* ── PAGE HERO (internal pages) ────────────────── */

.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* ── BLOG ─────────────────────────────────────── */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 3.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .45s var(--ease);
  border: 1px solid transparent;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--brand-light);
}
.blog-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.blog-card:hover .blog-card__img-wrap img {
  transform: scale(1.08);
}
.blog-card__body {
  padding: 1.5rem;
}
.blog-card__body h2 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: .5rem 0 .6rem;
}
.blog-card__body h2 a {
  color: var(--ink);
  transition: color .3s var(--ease);
}
.blog-card__body h2 a:hover {
  color: var(--brand);
}
.blog-card__body p {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.blog-card__link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all .3s var(--ease);
}
.blog-card:hover .blog-card__link {
  gap: .8rem;
  color: var(--accent);
}

/* ── LIGHTBOX ─────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22,36,32,.94);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox.is-active {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(.92);
  transition: transform .4s var(--ease-bounce);
}
.lightbox.is-active img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}
.lightbox__close:hover {
  background: rgba(255,255,255,.2);
  transform: rotate(90deg);
}

/* ── RESPONSIVE ────────────────────────────────── */

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .experience__grid,
  .about__grid,
  .pricing__layout,
  .contact__grid { grid-template-columns: 1fr; }

  .steps__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .places__grid { grid-template-columns: 1fr; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }

  .quick-strip__inner { grid-template-columns: repeat(2, 1fr); }

  .hero__badge { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .wa-float { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .cta-banner__buttons { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .wa-float { opacity: 1; transform: none; }
  .cta-banner { animation: none; }
}

/* ── ONDE DECORATIVE ──────────────────────────── */

/* onda in fondo all'hero (verso la sezione bianca) */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(40px, 7vw, 80px);
  z-index: 3;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C150,8 350,55 600,28 C850,2 1050,52 1200,32 L1200,60 L0,60 Z' fill='%23ffffff' fill-opacity='.45'/%3E%3C/svg%3E") bottom / 1000px 100% repeat-x,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,58 400,2 600,30 C800,58 1000,2 1200,30 L1200,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") bottom / 1400px 100% repeat-x;
  animation: wave-duo 20s linear infinite;
  pointer-events: none;
}
@keyframes wave-duo {
  from { background-position: 0 100%, 0 100%; }
  to   { background-position: -1000px 100%, 1400px 100%; }
}

/* onda in fondo al page-hero delle pagine interne */
.page-hero {
  position: relative;
  border-bottom: none;
  padding-bottom: clamp(5rem, 9vw, 7rem);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(30px, 5vw, 55px);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C150,8 350,55 600,28 C850,2 1050,52 1200,32 L1200,60 L0,60 Z' fill='%23f5faf7' fill-opacity='.5'/%3E%3C/svg%3E") bottom / 950px 100% repeat-x,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,58 400,2 600,30 C800,58 1000,2 1200,30 L1200,60 L0,60 Z' fill='%23f5faf7'/%3E%3C/svg%3E") bottom / 1350px 100% repeat-x;
  animation: wave-duo 22s linear infinite;
  pointer-events: none;
}

/* onda scura che introduce il footer */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 1px;
  transform: translateY(-100%);
  height: clamp(30px, 5vw, 60px);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C150,8 350,55 600,28 C850,2 1050,52 1200,32 L1200,60 L0,60 Z' fill='%230f1f1a' fill-opacity='.4'/%3E%3C/svg%3E") bottom / 1050px 100% repeat-x,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,58 400,2 600,30 C800,58 1000,2 1200,30 L1200,60 L0,60 Z' fill='%230f1f1a'/%3E%3C/svg%3E") bottom / 1500px 100% repeat-x;
  animation: wave-duo 24s linear infinite reverse;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero::after, .page-hero::after, .footer::before,
  .section-alt::before, .section-alt::after,
  .experience__media::before, .about__media::before { animation: none; }
}

/* ── STILE LIQUIDO ────────────────────────────── */

/* onde su entrambi i bordi delle sezioni alternate */
.section-alt {
  position: relative;
  background:
    radial-gradient(600px 400px at 88% 15%, rgba(20,160,181,.07), transparent 70%),
    radial-gradient(520px 380px at 8% 85%, rgba(10,155,133,.08), transparent 70%),
    var(--bg-alt);
}
.section-alt::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -1px;
  height: clamp(28px, 4.5vw, 50px);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C150,8 350,55 600,28 C850,2 1050,52 1200,32 L1200,0 L0,0 Z' fill='%23f5faf7' fill-opacity='.5'/%3E%3C/svg%3E") top / 950px 100% repeat-x,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,58 400,2 600,30 C800,58 1000,2 1200,30 L1200,0 L0,0 Z' fill='%23f5faf7'/%3E%3C/svg%3E") top / 1350px 100% repeat-x;
  animation: wave-duo-top 26s linear infinite;
  pointer-events: none;
}
.section-alt::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(28px, 4.5vw, 50px);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,35 C150,8 350,55 600,28 C850,2 1050,52 1200,32 L1200,60 L0,60 Z' fill='%23f5faf7' fill-opacity='.5'/%3E%3C/svg%3E") bottom / 1000px 100% repeat-x,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,58 400,2 600,30 C800,58 1000,2 1200,30 L1200,60 L0,60 Z' fill='%23f5faf7'/%3E%3C/svg%3E") bottom / 1450px 100% repeat-x;
  animation: wave-duo 28s linear infinite reverse;
  pointer-events: none;
}
@keyframes wave-duo-top {
  from { background-position: 0 0, 0 0; }
  to   { background-position: -950px 0, 1350px 0; }
}

/* riflesso d'acqua che scorre sopra le foto (forma invariata) */
.experience__media::before,
.about__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.25) 46%, rgba(170,235,245,.18) 54%, transparent 68%);
  background-size: 300% 300%;
  animation: water-shine 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes water-shine {
  0%, 100% { background-position: 120% 120%; }
  50%      { background-position: -20% -20%; }
}

/* hover liquido su galleria e bottoni */
.gallery__item {
  transition: border-radius .6s var(--ease);
}
.gallery__item:hover {
  border-radius: 38px 14px 42px 14px;
}
.btn:hover {
  border-radius: 42px 18px 42px 18px;
}
.header__cta:hover {
  border-radius: 34px 14px 34px 14px;
}

/* ── MENU A TENDINA "LE GOLE" ─────────────────── */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: .35rem; }
.nav-drop > a svg { transition: transform .3s var(--ease); }
.nav-drop:hover > a svg,
.nav-drop:focus-within > a svg { transform: rotate(180deg); }
.nav-drop::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-drop__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 235px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 44px rgba(15,31,26,.16);
  padding: .5rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .3s var(--ease);
  z-index: 110;
}
.nav-drop__menu::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.nav-drop:hover .nav-drop__menu,
.nav-drop:focus-within .nav-drop__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.header .nav-drop__menu a,
.header.is-scrolled .header__nav .nav-drop__menu a {
  color: var(--text);
  padding: .55rem .8rem;
  border-radius: 10px;
  font-size: .8rem;
  white-space: nowrap;
}
.nav-drop__menu a::after { display: none; }
.header .nav-drop__menu a:hover,
.header.is-scrolled .header__nav .nav-drop__menu a:hover {
  background: var(--brand-light);
  color: var(--brand-dark);
}

/* ── CESTINI E CHIP OSPITALITÀ ────────────────── */
.cestini-list { list-style: none; margin-top: 1.5rem; }
.cestini-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cestini-list li:last-child { border-bottom: none; }
.cestini-list strong { font-family: var(--font-display); color: var(--ink); display: block; }
.cestini-list li span { font-size: .88rem; color: var(--muted); display: block; margin-top: 2px; }
.cestini-list em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
  white-space: nowrap;
}
.tag-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.tag-chips span {
  font-size: .78rem;
  font-family: var(--font-display);
  font-weight: 500;
  padding: .35rem .8rem;
  border-radius: 60px;
  background: var(--brand-light);
  color: var(--brand-dark);
  border: 1px solid rgba(10,155,133,.15);
}
.places__grid--two { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 768px) {
  .places__grid--two { grid-template-columns: 1fr !important; }
  .nav-drop__menu { display: none; }
}

/* ── CARD OSPITALITÀ ──────────────────────────── */
.host-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.host-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.host-card__head {
  position: relative;
  padding: 1.7rem 1.8rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  overflow: hidden;
}
.host-card__head--food { background: linear-gradient(120deg, #0c7f91 0%, #14a0b5 55%, #2cc0d4 100%); }
.host-card__head--sleep { background: linear-gradient(120deg, #06584d 0%, #0a9b85 55%, #0fb89e 100%); }
.host-card__head::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.host-card__head::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,58 400,2 600,30 C800,58 1000,2 1200,30 L1200,60 L0,60 Z' fill='%23ffffff'/%3E%3C/svg%3E") bottom / 420px 100% repeat-x;
}
.host-card__icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  background: rgba(255,255,255,.16);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.host-card__kicker {
  display: block;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.8);
}
.host-card__head h3 { color: var(--white); margin-top: 2px; }
.host-card__body {
  padding: 1.5rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  flex: 1;
}
.host-card__addr {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
}
.host-card__addr svg { flex-shrink: 0; color: var(--accent); }
.host-card__link {
  margin-top: auto;
  padding-top: .6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* pannello punti di ritiro cestini */
.pickup-panel {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pickup-panel h3 { display: flex; align-items: center; gap: .6rem; }
.pickup-panel h3 svg { color: var(--accent); flex-shrink: 0; }

/* ── ICONE A BOLLA + DOG FRIENDLY ─────────────── */
.quick-strip { padding: 2.2rem 0; }
.quick-strip__icon {
  width: 64px;
  height: 64px;
  padding: 16px;
  background: var(--brand-light);
  border-radius: 50%;
  margin-bottom: .5rem;
}
.quick-strip__item { gap: .35rem; padding: 1.1rem 1rem 1.2rem; }
.quick-strip__item--dog {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--brand-light) 100%);
  border: 1.5px solid rgba(20,160,181,.28);
  position: relative;
  overflow: visible;
}
.quick-strip__item--dog .quick-strip__icon {
  background: linear-gradient(135deg, var(--accent) 0%, #2cc0d4 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(20,160,181,.35);
}
.quick-strip__item--dog::after {
  content: '🐾 Sempre benvenuto';
  position: absolute;
  top: -12px;
  right: 12px;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 60px;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(20,160,181,.35);
  white-space: nowrap;
}
.quick-strip__item--dog:hover { background: linear-gradient(135deg, var(--accent-light) 0%, var(--brand-light) 100%); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.4rem;
  padding: .55rem 1.1rem;
  border-radius: 60px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.28);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
}
.hero__badge svg { color: #7ee8d8; flex-shrink: 0; }

.icon-bubble {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: all .35s var(--ease-bounce);
}
.place-card:hover .icon-bubble {
  transform: scale(1.12) rotate(-6deg);
  background: linear-gradient(135deg, var(--accent) 0%, #2cc0d4 100%);
  color: var(--white);
}
@media (max-width: 640px) {
  .quick-strip__item--dog::after { top: -10px; right: 8px; font-size: .62rem; }
}
