@font-face {
  font-family: "LondonOatmeal";
  src: url("../fonts/VVDS London Oatmeal-Sans.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPTBook.otf") format("opentype");
  font-display: swap;
}

:root {
  --brand-blue: #18253c;
  --brand-blue-soft: #21304d;
  --paper: #ffffff;
  --paper-soft: #f7f7f4;
  --ink: #18253c;
  --muted: rgba(24, 37, 60, 0.68);
  --line: rgba(24, 37, 60, 0.12);
  --white-soft: rgba(255, 255, 255, 0.82);
  --font-main: "FuturaPT", Arial, sans-serif;
  --font-title: "LondonOatmeal", Georgia, serif;
  --wa-green: #25d366;
  --shadow: 0 24px 70px rgba(24, 37, 60, 0.14);
  --ease: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

img,
video {
  display: block;
}

a {
  color: inherit;
}

p {
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.75;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(22px, 4vw, 60px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: padding var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

.site-header.is-home {
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent);
  backdrop-filter: none;
}

.site-header.scrolled,
.site-header.is-home.scrolled {
  padding-block: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.logo-nav {
  flex: 0 0 auto;
}

.logo-nav img {
  height: clamp(54px, 5.5vw, 78px);
  width: auto;
}

.logo-color {
  display: block;
}

.logo-white {
  display: none;
}

.site-header.is-home:not(.scrolled) .logo-color {
  display: none;
}

.site-header.is-home:not(.scrolled) .logo-white {
  display: block;
}

.main-nav,
.nav-right {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: clamp(16px, 2.2vw, 30px);
}

.main-nav a,
.btn-esperienze,
.btn-outline,
.btn-wa,
.google-link,
.contact-form button {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.78;
  transition: opacity var(--ease);
  white-space: nowrap;
}

.main-nav a:hover {
  opacity: 1;
}

.btn-esperienze {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 24px;
  color: var(--paper);
  background: var(--brand-blue);
}

.site-header.is-home:not(.scrolled) .btn-esperienze {
  color: var(--brand-blue);
  background: #fff;
}

.hamburger {
  display: none;
  width: 34px;
  height: 24px;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 3100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 32px;
  color: #fff;
  background: var(--brand-blue);
  transform: translateX(100%);
  transition: transform var(--ease);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-title);
  font-size: clamp(2rem, 9vw, 3.2rem);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 0.98;
  text-align: center;
}

.page-main {
  min-height: 70vh;
}

.home-hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #000;
}

.home-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
}

.eyebrow {
  margin: 0 0 18px;
  letter-spacing: 8px;
  text-transform: uppercase;
  font-size: clamp(0.68rem, 1.4vw, 0.84rem);
}

h1,
h2,
h3 {
  font-family: var(--font-title);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 8.4vw, 7.6rem);
  line-height: 0.9;
}

h2 {
  margin: 0 0 28px;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.95;
}

h3 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 0.98;
}

.section {
  padding: clamp(72px, 8vw, 130px) clamp(22px, 7vw, 120px);
}

.section.dark {
  color: #fff;
  background: var(--brand-blue);
}

.section.soft {
  background: var(--paper-soft);
}

.story-flex,
.phrase-container,
.bio-container,
.intro-section,
.itinerary-section,
.contact-grid {
  width: min(1240px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
}

.story-photo img,
.phrase-right img,
.bio-right img,
.intro-img img,
.itinerary-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.story-photo img,
.bio-right img,
.intro-img img {
  aspect-ratio: 4 / 5;
}

.story-photo img {
  object-position: left center;
}

.btn-outline,
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 34px;
  border: 1px solid currentColor;
  transition: transform var(--ease), background var(--ease), color var(--ease);
}

.btn-outline:hover,
.btn-wa:hover,
.contact-form button:hover {
  transform: translateY(-3px);
}

.btn-wa {
  border-color: var(--wa-green);
  color: #fff;
  background: var(--wa-green);
  border-radius: 100px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
}

.logo-mark {
  display: flex;
  justify-content: center;
  padding: 48px 22px;
  background: var(--brand-blue);
}

.logo-mark img {
  height: clamp(80px, 9vw, 122px);
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.section-exp {
  color: #fff;
  background: var(--brand-blue);
}

.section-title {
  text-align: center;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.experience-grid {
  width: min(1340px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.exp-card {
  position: relative;
  min-height: clamp(360px, 38vw, 520px);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  background: #000;
}

.exp-card img.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.56));
}

.exp-card:hover img.main-img {
  transform: scale(1.05);
}

.exp-card h3 {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 64px;
  bottom: 24px;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  line-height: 1;
}

.icon-enter-thumb {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 1;
  width: 44px;
  height: 44px;
}

.section-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 58px);
  color: #fff;
  background: var(--brand-blue-soft);
}

.feature-box {
  text-align: center;
}

.feature-icon {
  height: 60px;
  width: auto;
  margin: 0 auto 20px;
}

.feature-box h4 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.88rem;
}

.feature-box p {
  margin: 0;
  color: var(--white-soft);
  font-size: 0.98rem;
}

.phrase-left h2 span {
  color: rgba(255, 255, 255, 0.48);
}

.gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 0;
}

.gallery-controls {
  display: flex;
  gap: 12px;
}

.gallery-control {
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
}

.gallery-strip,
.slider-container,
.stories-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.gallery-strip {
  padding: 24px clamp(22px, 7vw, 120px) clamp(82px, 8vw, 130px);
  background: var(--brand-blue);
}

.video-home-section {
  padding-bottom: 0;
}

.video-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.video-gallery-section .video-section-head {
  padding-inline: clamp(22px, 7vw, 120px);
}

.video-gallery-section .video-section-head h2 {
  padding: 0;
  text-align: left;
}

.video-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 24px clamp(22px, 7vw, 120px) 56px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.video-strip-home {
  padding-bottom: clamp(82px, 8vw, 130px);
  background: var(--brand-blue);
}

.video-card {
  position: relative;
  flex: 0 0 clamp(220px, 24vw, 320px);
  height: clamp(380px, 43vw, 520px);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: #101a2b;
  box-shadow: none;
  cursor: pointer;
  scroll-snap-align: start;
}

.video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.video-card:hover video {
  transform: scale(1.025);
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding-left: 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(18, 31, 52, 0.52);
  backdrop-filter: blur(7px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-size: 1.05rem;
}

.gallery-img,
.slider-item,
.story-item {
  flex: 0 0 clamp(250px, 28vw, 380px);
  height: clamp(310px, 34vw, 430px);
  overflow: hidden;
  border-radius: 3px;
  scroll-snap-align: start;
  background: #e5e5e5;
  cursor: pointer;
}

.gallery-img img,
.slider-item img,
.slider-item video,
.story-item img,
.story-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-img:hover img,
.slider-item:hover img,
.story-item:hover img,
.story-item:hover video {
  transform: scale(1.04);
}

.reviews-section {
  color: #fff;
  background: var(--brand-blue);
}

.reviews-container {
  width: min(1220px, 100%);
  margin-inline: auto;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 4px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.user-avatar {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.user-info h4 {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.user-info span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  opacity: 0.55;
}

.stars {
  color: #fbc02d;
  margin-bottom: 12px;
}

.review-text {
  margin: 0;
  color: var(--white-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  font-style: italic;
}

.google-link {
  display: inline-block;
  margin-top: 48px;
  padding-bottom: 6px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.page-hero {
  min-height: clamp(360px, 55vh, 560px);
  display: grid;
  place-items: center;
  padding: 130px 22px 70px;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(24, 37, 60, 0.32), rgba(24, 37, 60, 0.32)), var(--hero-image, url("../images/hero_1.jpg")) center / cover;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.dicono-hero {
  min-height: clamp(500px, 68vh, 700px);
  background-position: center top;
}

.addio-hero {
  min-height: clamp(430px, 56.3vw, 860px);
  background-color: var(--brand-blue);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.page-header {
  padding: 150px 22px 58px;
  text-align: center;
  color: var(--ink);
  background: var(--paper);
}

.page-header h1 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 5.2vw, 5rem);
  line-height: 0.96;
}

.contact-page-header {
  padding-top: 185px;
}

.page-header p {
  max-width: 740px;
  margin: 22px auto 0;
  color: var(--muted);
}

.itinerary-section {
  padding: clamp(70px, 7vw, 110px) clamp(22px, 7vw, 120px);
  align-items: start;
}

.itinerary-content h4 {
  margin: -12px 0 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--muted);
}

.tappe-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tappa-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: clamp(0.92rem, 1vw, 1.05rem);
}

.tappa-item span {
  font-family: var(--font-title);
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(24, 37, 60, 0.34);
}

.tappa-item p {
  grid-column: 2;
  margin: 4px 0 0;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.itinerary-note {
  margin: 26px 0 12px;
  padding: 16px 18px;
  color: #fff;
  background: var(--brand-blue);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
}

.itinerary-image {
  position: sticky;
  top: 120px;
}

.itinerary-image img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--paper-soft);
}

.itinerary-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: var(--paper-soft);
  display: block;
}

.itinerary-video-contain {
  object-fit: contain;
}

.itinerary-media-flat .itinerary-image img,
.itinerary-media-flat .itinerary-video {
  box-shadow: none;
  background: transparent;
}

.cta-info {
  padding: clamp(70px, 7vw, 110px) 22px;
  color: #fff;
  background: var(--brand-blue);
  text-align: center;
}

.cta-info-box {
  width: min(920px, 100%);
  margin-inline: auto;
}

.cta-info-box p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--white-soft);
}

.details-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 34px;
}

.details-inline div {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
}

.bio-section,
.intro-wrapper {
  padding: clamp(70px, 8vw, 130px) clamp(22px, 7vw, 120px);
}

.bio-left p,
.intro-text p,
.secondary-text p {
  color: var(--muted);
}

.gallery-title,
.stories-title {
  padding: 42px clamp(22px, 7vw, 120px) 18px;
  text-align: center;
}

.gallery-section {
  padding: clamp(54px, 6vw, 90px) 0;
}

.gallery-section h2 {
  padding-inline: clamp(22px, 7vw, 120px);
  text-align: center;
}

.gallery-section .slider-container,
.slider-container,
.stories-container {
  padding: 24px clamp(22px, 7vw, 120px) 56px;
}

.cs-hero {
  min-height: clamp(340px, 48vh, 520px);
  margin-top: 96px;
  background: url("../images/chi_siamo_slide.jpg") center / cover;
}

.secondary-text {
  padding: 64px clamp(22px, 12vw, 180px);
  text-align: center;
  background: var(--paper-soft);
}

.secondary-text p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.casa-section {
  padding: clamp(62px, 7vw, 100px) 0;
  text-align: center;
}

.casa-section.soft {
  background: var(--paper-soft);
}

.casa-section .desc {
  width: min(860px, calc(100% - 44px));
  margin: 0 auto 28px;
  color: var(--muted);
}

.wa-buttons-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  width: min(680px, calc(100% - 44px));
  margin: 0 auto;
}

.wa-contact-block {
  margin-top: 34px;
}

.wa-heading {
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-grid {
  align-items: start;
  padding: clamp(56px, 7vw, 100px) clamp(22px, 7vw, 120px);
}

.contact-info h2 {
  margin-bottom: 24px;
}

.phone-line {
  margin: 18px 0;
  color: var(--wa-green);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px 18px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form button {
  min-height: 52px;
  border: 0;
  color: #fff;
  background: var(--brand-blue);
  cursor: pointer;
  transition: transform var(--ease);
}

.map-wrapper {
  min-height: 520px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(24, 37, 60, 0.96);
}

.lightbox.active {
  display: flex;
}

.lightbox img,
.lightbox-video {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-video {
  width: auto;
  height: auto;
  background: #000;
}

.lightbox-video[hidden] {
  display: none;
}

.lightbox img[hidden] {
  display: none !important;
}

.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(44px, 5vw, 62px);
  height: clamp(44px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background var(--ease), transform var(--ease);
}

.lb-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lb-prev {
  left: clamp(16px, 4vw, 46px);
}

.lb-next {
  right: clamp(16px, 4vw, 46px);
}

.lb-nav[hidden] {
  display: none;
}

.wa-wrapper {
  position: fixed;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 38px);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-popup {
  display: none;
  width: 250px;
  margin-bottom: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.wa-popup.show {
  display: grid;
  gap: 10px;
}

.wa-popup p {
  margin: 0 0 4px;
  font-size: 0.72rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 8px;
}

.wa-option:hover {
  background: var(--paper-soft);
}

.wa-dot,
.wa-float {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--wa-green);
  border-radius: 50%;
}

.wa-dot {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.wa-float {
  width: 60px;
  height: 60px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.34);
}

.wa-dot img,
.wa-float img {
  width: 25px;
  height: 25px;
}

.site-footer {
  padding: clamp(60px, 7vw, 96px) clamp(22px, 6vw, 80px);
  color: var(--ink);
  background: var(--paper-soft);
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr;
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.footer-logo img {
  height: 92px;
  width: auto;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links img {
  height: 23px;
  width: auto;
  opacity: 0.78;
  transition: opacity var(--ease), transform var(--ease);
}

.social-links a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-col h4 {
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.72rem;
  color: rgba(24, 37, 60, 0.55);
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1.55;
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 38px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(24, 37, 60, 0.5);
  font-size: 0.82rem;
}

.home-dark {
  color: #fff;
  background: var(--brand-blue);
}

@media (max-width: 1120px) {
  .experience-grid,
  .section-features,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.scrolled,
  .site-header.is-home.scrolled {
    padding: 18px 22px;
    color: #fff;
    background: var(--brand-blue);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .logo-color {
    display: none;
  }

  .logo-white,
  .site-header.is-home:not(.scrolled) .logo-white {
    display: block;
  }

  .main-nav,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger span {
    background: #fff;
  }

  .story-flex,
  .phrase-container,
  .bio-container,
  .intro-section,
  .itinerary-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .itinerary-image {
    position: static;
  }

  .experience-grid,
  .section-features,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .exp-card {
    min-height: 380px;
  }

  .section-features,
  .footer-grid {
    text-align: center;
  }

  .social-links,
  .wa-buttons-wrapper {
    justify-content: center;
  }

  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-section-head {
    align-items: flex-start;
  }

  .gallery-img,
  .slider-item,
  .story-item {
    flex-basis: min(84vw, 360px);
    height: 430px;
  }

  .video-card {
    flex-basis: min(72vw, 300px);
    height: min(118vw, 500px);
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .eyebrow {
    letter-spacing: 4px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
  }

  .section,
  .bio-section,
  .intro-wrapper,
  .itinerary-section,
  .contact-grid {
    padding-inline: 20px;
  }

  .page-header {
    padding-top: 142px;
  }

  .page-header h1 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .contact-page-header {
    padding-top: 170px;
  }

  .video-section-head h2 {
    max-width: 70%;
  }

  .lightbox {
    padding: 70px 10px;
  }

  .lightbox-video {
    max-width: calc(100vw - 124px);
    max-height: 76vh;
  }

  .lb-nav {
    top: 50%;
    bottom: auto;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
  }

  .lb-prev {
    left: 10px;
  }

  .lb-next {
    right: 10px;
  }

  .details-inline {
    display: grid;
  }

  .btn-wa,
  .btn-outline,
  .contact-form button {
    width: 100%;
  }

  .wa-wrapper {
    right: 16px;
    bottom: 16px;
  }

  .wa-popup {
    width: min(250px, calc(100vw - 32px));
  }
}
