/* ═══════════════════════════════════════════
   KAYAK LA MADDALENA — style.css
   ═══════════════════════════════════════════ */

:root {
  --deep: #26262a;
  --ocean: #0c7e83;
  --turquoise: #0e9aa0;
  --aqua: #6fd4d9;
  --sand: #f6f5f2;
  --coral: #ff6b4a;
  --sun: #ffb347;
  --ink: #26262a;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(38, 38, 42, .18);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
em { font-style: normal; }

::selection { background: var(--turquoise); color: #fff; }

/* ─────────── PRELOADER ─────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.paddle-loader { width: 70px; height: 70px; }
.loader-ring {
  fill: none; stroke: var(--aqua); stroke-width: 5;
  stroke-dasharray: 200 80; stroke-linecap: round;
  animation: spin 1.2s linear infinite;
  transform-origin: center;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader-text {
  display: block; margin-top: 18px; color: var(--aqua);
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase; font-size: .8rem;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .4; } }

/* ─────────── CURSOR ─────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9000;
  border-radius: 50%; transform: translate(-50%, -50%);
}
.cursor-dot { width: 8px; height: 8px; background: var(--turquoise); }
.cursor-ring {
  width: 38px; height: 38px; border: 2px solid rgba(14, 154, 160, .5);
  transition: width .25s, height .25s, border-color .25s, background .25s;
}
.cursor-ring.hovering {
  width: 64px; height: 64px;
  background: rgba(14, 154, 160, .12);
  border-color: var(--turquoise);
}
@media (hover: none), (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─────────── SCROLL PROGRESS ─────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  background: linear-gradient(90deg, var(--turquoise), var(--aqua), var(--sun));
  z-index: 8000; border-radius: 0 4px 4px 0;
}

/* ─────────── NAVBAR ─────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 7000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 60px);
  transition: all .45s var(--ease);
  color: #fff;
}
.navbar::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(38, 38, 42, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0; transition: opacity .45s var(--ease);
}
.navbar.scrolled {
  padding: 12px clamp(20px, 5vw, 60px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.navbar.scrolled::before { opacity: 1; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em;
}
.logo em { color: var(--aqua); }
.logo-icon { width: 46px; height: 30px; color: var(--aqua); transition: transform .5s var(--ease); }
.logo:hover .logo-icon { transform: rotate(-15deg) scale(1.1); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.5vw, 32px); }
.nav-link {
  position: relative; font-weight: 600; font-size: .92rem; opacity: .85;
  transition: opacity .3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0%; height: 2px; background: var(--aqua); border-radius: 2px;
  transition: width .35s var(--ease);
}
.nav-link:hover, .nav-link.active { opacity: 1; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  background: var(--coral); color: #fff; padding: 10px 22px;
  border-radius: 999px; font-weight: 700; font-size: .9rem;
  transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 6px 20px rgba(255, 107, 74, .4);
}
.nav-cta:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 28px rgba(255, 107, 74, .55); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; z-index: 7100;
}
.hamburger span {
  width: 26px; height: 3px; background: #fff; border-radius: 3px;
  transition: all .35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─────────── HERO ─────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: #fff; text-align: center;
}
.hero-bg { position: absolute; inset: -12% 0; z-index: -1; will-change: transform; }
.hero-img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 12s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.15); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,38,42,.55) 0%, rgba(38,38,42,.22) 45%, rgba(38,38,42,.6) 100%);
}

.hero-content { padding: 0 24px; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .85rem; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--aqua); margin-bottom: 24px;
}
.line-deco {
  display: inline-block; width: 44px; height: 8px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 8'%3E%3Cpath d='M0 4 Q5.5 0 11 4 T22 4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x left center / 22px 8px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 8'%3E%3Cpath d='M0 4 Q5.5 0 11 4 T22 4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x left center / 22px 8px;
  animation: wave-flow 1.6s linear infinite;
}
@keyframes wave-flow {
  to { -webkit-mask-position: 22px center; mask-position: 22px center; }
}

.hero-title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -.03em;
  margin-bottom: 26px;
}
.hero-title .accent {
  background: linear-gradient(90deg, var(--aqua), var(--sun));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.word-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; }
.word {
  display: inline-block; transform: translateY(110%);
  animation: wordUp 1s var(--ease) forwards;
}
.word-mask:nth-child(1) .word { animation-delay: .55s; }
.word-mask:nth-child(2) .word { animation-delay: .68s; }
.word-mask:nth-child(3) .word { animation-delay: .81s; }
@keyframes wordUp { to { transform: translateY(0); } }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 300;
  max-width: 620px; margin: 0 auto 38px; opacity: .95;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.reveal-hero { opacity: 0; animation: fadeUp 1s var(--ease) forwards; }
.hero-eyebrow.reveal-hero { animation-delay: .4s; }
.hero-sub.reveal-hero { animation-delay: 1s; }
.hero-actions.reveal-hero { animation-delay: 1.2s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll-hint {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; opacity: .8;
}
.scroll-line {
  width: 2px; height: 48px; background: rgba(255,255,255,.3);
  border-radius: 2px; overflow: hidden; position: relative;
}
.scroll-line::after {
  content: ''; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: #fff; border-radius: 2px;
  animation: scrollDrop 1.8s var(--ease) infinite;
}
@keyframes scrollDrop { to { top: 110%; } }

/* onde */
.waves-wrap { position: absolute; bottom: -1px; left: 0; right: 0; }
.waves { display: block; width: 100%; height: clamp(50px, 8vw, 110px); }
.parallax-waves use { animation: waveMove 14s cubic-bezier(.55,.5,.45,.5) infinite; }
.parallax-waves use:nth-child(1) { animation-delay: -2s; animation-duration: 8s; fill: rgba(246,245,242,0.6); }
.parallax-waves use:nth-child(2) { animation-delay: -3s; animation-duration: 11s; fill: rgba(246,245,242,0.4); }
.parallax-waves use:nth-child(3) { animation-delay: -4s; animation-duration: 15s; fill: rgba(246,245,242,0.25); }
.parallax-waves use:nth-child(4) { animation-delay: -5s; animation-duration: 22s; fill: var(--sand); }
@keyframes waveMove {
  0% { transform: translate3d(-90px,0,0); }
  100% { transform: translate3d(85px,0,0); }
}

/* ─────────── MARQUEE ─────────── */
.marquee {
  background: var(--deep); color: var(--aqua);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase; font-size: .85rem;
}
.marquee-track { display: inline-flex; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─────────── SEZIONI GENERICHE ─────────── */
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ocean); font-size: .82rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; margin-bottom: 16px;
}
.section-eyebrow.center { justify-content: center; width: 100%; }
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.12; margin-bottom: 22px;
}
.section-title em {
  background: linear-gradient(90deg, var(--ocean), var(--turquoise));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title.center { text-align: center; margin-bottom: clamp(40px, 6vw, 70px); }
.section-body { font-size: 1.05rem; color: #55555c; max-width: 560px; margin-bottom: 34px; }

/* reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(46px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────── ESPERIENZA ─────────── */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }

.feature-list { list-style: none; display: grid; gap: 20px; margin-bottom: 44px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-ico {
  font-size: 1.5rem; width: 54px; height: 54px; flex-shrink: 0;
  display: grid; place-items: center;
  background: #fff; border-radius: 16px; box-shadow: 0 8px 24px rgba(38,38,42,.08);
}
.feature-list strong { display: block; font-size: 1.02rem; }
.feature-list span:not(.feature-ico) { color: #6b6b72; font-size: .92rem; }

.stats { display: flex; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; }
.stat-num, .stat-suffix {
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 800; color: var(--ocean);
  letter-spacing: -.02em;
}
.stat p { font-size: .85rem; color: #6b6b72; margin-top: 2px; }

.media-stack { position: relative; }
.media-main {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.media-main img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.media-float {
  position: absolute; bottom: -36px; left: -46px; width: 55%;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 6px solid var(--sand);
  animation: floaty 5s ease-in-out infinite;
}
.media-float img { aspect-ratio: 16/11; object-fit: cover; }
@keyframes floaty { 50% { transform: translateY(-14px); } }
.media-badge {
  position: absolute; top: -26px; right: -22px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--sun); color: var(--deep);
  display: grid; place-items: center; text-align: center;
  font-weight: 700; font-size: .82rem; line-height: 1.3;
  box-shadow: 0 12px 30px rgba(255,179,71,.45);
  animation: spin-slow 16s linear infinite;
}
@keyframes spin-slow { 50% { transform: rotate(8deg); } }

/* tilt cards */
.tilt-card { transition: transform .2s ease-out; transform-style: preserve-3d; will-change: transform; }

/* ─────────── TOUR ─────────── */
.tours { background: linear-gradient(180deg, var(--sand), #e3f2f2 60%, var(--sand)); }
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); }
.tour-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 40px rgba(38,38,42,.1);
  display: flex; flex-direction: column;
  transition: box-shadow .4s var(--ease);
}
.tour-card:hover { box-shadow: 0 26px 70px rgba(38,38,42,.2); }
.tour-card.featured { outline: 3px solid var(--turquoise); outline-offset: -3px; }
.tour-media { position: relative; overflow: hidden; }
.tour-media img {
  aspect-ratio: 16/10; object-fit: cover; width: 100%;
  transition: transform .8s var(--ease);
}
.tour-card:hover .tour-media img { transform: scale(1.09) rotate(.5deg); }
.tour-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92); color: var(--deep);
  padding: 6px 14px; border-radius: 999px; font-size: .75rem; font-weight: 700;
  backdrop-filter: blur(6px);
}
.tour-tag.hot { background: var(--coral); color: #fff; }
.tour-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.tour-body h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -.01em; }
.tour-body p { color: #6b6b72; font-size: .94rem; margin-bottom: 18px; flex: 1; }
.tour-meta {
  display: flex; gap: 16px; font-size: .8rem; color: var(--ocean);
  font-weight: 600; margin-bottom: 18px; flex-wrap: wrap;
}
.tour-link {
  font-weight: 800; color: var(--coral); font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.tour-link span { transition: transform .3s var(--ease); }
.tour-link:hover span { transform: translateX(6px); }

/* ─────────── BANNER ─────────── */
.banner {
  position: relative; min-height: 70vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.banner-bg { position: absolute; inset: -15% 0; z-index: 0; will-change: transform; }
.banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,38,42,.45), rgba(38,38,42,.55));
}
.banner-content { position: relative; z-index: 1; padding: 90px 24px; }
.banner-hand {
  font-family: 'Caveat', cursive; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--sun); transform: rotate(-3deg); margin-bottom: 8px;
}
.banner h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 34px; }
.banner h2 span {
  background: linear-gradient(90deg, var(--aqua), var(--sun));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ─────────── GALLERIA ─────────── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 20px); grid-auto-rows: 220px;
}
.gallery-item {
  position: relative; border-radius: 18px; overflow: hidden; cursor: pointer;
}
.gallery-item.g-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.08) saturate(1.15); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 18px 14px; color: #fff; font-weight: 700; font-size: .95rem;
  background: linear-gradient(transparent, rgba(38,38,42,.78));
  transform: translateY(100%); transition: transform .45s var(--ease);
}
.gallery-item:hover figcaption { transform: translateY(0); }

/* ─────────── LIGHTBOX ─────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(28, 28, 32, .94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .4s var(--ease);
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw; max-height: 84vh; border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  transform: scale(.92); transition: transform .4s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.25); cursor: pointer;
  border-radius: 50%; display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.25); transform: scale(1.1); }
.lightbox-close { top: 26px; right: 26px; width: 48px; height: 48px; font-size: 1.2rem; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; }
.lightbox-nav.prev { left: 22px; }
.lightbox-nav.next { right: 22px; }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.1); }

/* ─────────── PREZZI ─────────── */
.pricing { background: linear-gradient(180deg, var(--sand), #e3f2f2 55%, var(--sand)); }
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px); align-items: stretch;
}
.price-card {
  background: #fff; border-radius: var(--radius); padding: 40px 34px;
  box-shadow: 0 10px 40px rgba(38,38,42,.08);
  position: relative; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.price-card:hover { transform: translateY(-10px); box-shadow: 0 28px 70px rgba(38,38,42,.16); }
.price-card.popular {
  background: linear-gradient(160deg, var(--deep), var(--ocean));
  color: #fff; transform: scale(1.04);
}
.price-card.popular:hover { transform: scale(1.04) translateY(-10px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sun); color: var(--deep);
  padding: 6px 20px; border-radius: 999px; font-size: .78rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(255,179,71,.5);
}
.price-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 14px; }
.price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.amount { font-size: 3rem; font-weight: 800; letter-spacing: -.03em; }
.price-card.popular .amount { color: var(--aqua); }
.per { font-size: .9rem; opacity: .7; }
.price-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; flex: 1; }
.price-card ul li { padding-left: 28px; position: relative; font-size: .93rem; }
.price-card ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--turquoise); font-weight: 800;
}
.price-card.popular ul li::before { color: var(--aqua); }
.pricing-note { text-align: center; margin-top: 44px; color: #6b6b72; font-size: .95rem; }

/* ─────────── BOTTONI ─────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 34px; border-radius: 999px;
  font-weight: 700; font-size: .96rem; font-family: inherit;
  border: 0; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
}
.btn-arrow { transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(5px); }
.btn-primary {
  background: linear-gradient(90deg, var(--coral), #ff8a5c); color: #fff;
  box-shadow: 0 10px 30px rgba(255,107,74,.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,107,74,.55); }
.btn-ghost {
  background: rgba(255,255,255,.14); color: #fff;
  border: 1.5px solid rgba(255,255,255,.55); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.28); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--deep); box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.btn-light:hover { transform: translateY(-3px); }
.btn-outline {
  background: transparent; color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-outline:hover { background: var(--ocean); color: #fff; transform: translateY(-3px); }
.price-card.popular .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.btn-full { width: 100%; }

/* ─────────── CONTATTI ─────────── */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: 18px; padding: 18px 20px;
  box-shadow: 0 8px 26px rgba(38,38,42,.07);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(38,38,42,.14); }
.contact-ico { font-size: 1.5rem; }
.contact-card strong { display: block; font-size: .95rem; }
.contact-card span:not(.contact-ico) { font-size: .84rem; color: #6b6b72; }

.contact-form {
  background: #fff; border-radius: var(--radius); padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { position: relative; margin-bottom: 18px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 16px 18px;
  border: 2px solid #e2e1dd; border-radius: 14px;
  font-family: inherit; font-size: .95rem; color: var(--ink);
  background: #fbfbf9; outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(14,154,160,.14);
}
.form-field label {
  position: absolute; left: 18px; top: 16px;
  font-size: .95rem; color: #8a8a8f; pointer-events: none;
  transition: all .25s var(--ease);
  background: transparent; padding: 0 4px;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -9px; left: 12px; font-size: .74rem; font-weight: 700;
  color: var(--turquoise); background: #fff; border-radius: 4px;
}
.form-success {
  display: none; margin-top: 16px; text-align: center;
  color: var(--turquoise); font-weight: 700; font-size: .95rem;
}
.form-success.show { display: block; animation: fadeUp .6s var(--ease); }

/* ─────────── FOOTER ─────────── */
.footer { background: var(--deep); color: #fff; position: relative; }
.footer-wave { display: block; width: 100%; height: 60px; margin-top: -59px; }
.footer-inner {
  padding: 30px 0 50px; display: flex; flex-direction: column;
  align-items: center; gap: 26px; text-align: center;
}
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer-links a { opacity: .75; font-size: .9rem; font-weight: 600; transition: opacity .3s, color .3s; }
.footer-links a:hover { opacity: 1; color: var(--aqua); }
.footer-copy { font-size: .8rem; opacity: .5; }

/* ─────────── RESPONSIVE ─────────── */
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .media-float { left: -10px; bottom: -26px; }
  .tour-grid, .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-10px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}

@media (max-width: 780px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(38, 38, 42, .97); backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; gap: 30px;
    transform: translateX(100%); transition: transform .5s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item.g-wide { grid-column: span 1; }
  .media-badge { width: 88px; height: 88px; font-size: .7rem; top: -18px; right: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .word { transform: none; }
  .reveal-hero { opacity: 1; }
}
