/*
 Theme Name:    NaturaViaggi
 Author:        Marco Longobardi
 Author URI:    https://www.marcolongobardi.it/
 Description:   Default GeneratePress child theme
 Template:      generatepress
 Version:       0.1
*/

/* === Font globale === */
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
}

/* === Variabili palette === */
:root {
	--nv-black:  #1a1a18;
	--nv-gray:   #5c5a52;
	--nv-muted:  #b8b4a8;
	--nv-sage:   #ecf2ef;
	--nv-beige:  #ecf2ef;
	--nv-cream:  #f8f5f1;
	--nv-white:  #ffffff;
	--nv-green:  #2d6e4e;
	--nv-green-dark: #245a3f;
}

/* === Navigazione === */
.main-navigation .menu-link,
.main-navigation a {
	font-size: 0.9125rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* === Header trasparente sulla home === */
.nv-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
}

.nv-header-overlay #masthead,
.nv-header-overlay .main-navigation,
.nv-header-overlay .inside-navigation {
	background: transparent !important;
	box-shadow: none !important;
	border: none !important;
}

.nv-header-overlay #masthead .site-title a,
.nv-header-overlay #masthead .site-description,
.nv-header-overlay .main-navigation a {
	color: var(--nv-white) !important;
}

.nv-header-overlay .main-navigation .current-menu-item > a,
.nv-header-overlay .main-navigation a:hover {
	color: rgba(255, 255, 255, 0.75) !important;
}

/* === Header sticky === */

@keyframes nv-sticky-in {
	from { transform: translateY(-100%); }
	to   { transform: translateY(0); }
}

/* Stato sticky: fixed + slide-in dall'alto */
.nv-sticky-header #masthead.is-sticky {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999;
	background-color: var(--nv-white) !important;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08) !important;
	animation: nv-sticky-in 0.28s ease;
}

.nv-sticky-header #masthead.is-sticky .inside-header {
	padding-top: 0;
	padding-bottom: 0;
}

.nv-sticky-header #masthead.is-sticky .main-navigation .main-nav ul li a,
.nv-sticky-header #masthead.is-sticky .main-navigation .menu-bar-item > a {
	line-height: 40px;
}

/* Override colori overlay → scuri quando sticky */
.nv-sticky-header.nv-has-hero-overlay #masthead.is-sticky .site-title a,
.nv-sticky-header.nv-has-hero-overlay #masthead.is-sticky .site-description,
.nv-sticky-header.nv-has-hero-overlay #masthead.is-sticky .main-navigation a {
	color: var(--nv-black) !important;
}

.nv-sticky-header.nv-has-hero-overlay #masthead.is-sticky .main-navigation .current-menu-item > a,
.nv-sticky-header.nv-has-hero-overlay #masthead.is-sticky .main-navigation a:hover {
	color: var(--nv-green) !important;
}

/* Logo: riduzione dimensione quando sticky */
.nv-sticky-header #masthead.is-sticky .site-logo img,
.nv-sticky-header #masthead.is-sticky .custom-logo {
	max-height: 28px;
	width: auto;
}

/* === Page hero (pagine interne con immagine in evidenza) === */
.nv-page-hero {
	position: relative;
	height: 420px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	background-color: var(--nv-black);
	background-size: cover;
	background-position: center;
	padding: 4rem 0 0;
}

.nv-page-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.nv-page-hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.nv-page-hero__title {
	font-size: clamp(2rem, 4vw, 4rem);
	font-weight: 400;
	color: var(--nv-white);
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0;
}

.nv-has-page-hero .page-header {
	display: none;
}


/* === Layout home: full-bleed fuori dal container GP === */
.nv-home {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

/* === Hero === */
.nv-hero {
	position: relative;
	height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: var(--nv-black);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.nv-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 0;
}

.nv-hero__content {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 8rem 2rem 3rem;
	color: var(--nv-white);
	max-width: 860px;
	margin: 0 auto;
	width: 100%;
}

.nv-hero__title {
	font-size: clamp(2.5rem, 6vw, 4.75rem);
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 1.25rem;
	color: var(--nv-white);
}

.nv-hero__desc {
	font-size: 21px;
	font-weight: 400;
	line-height: 1.71;
	opacity: 0.9;
	max-width: 560px;
	margin-bottom: 2rem;
}

/* === Bottone === */
.nv-btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	background: var(--nv-green);
	color: var(--nv-white);
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 0.02em;
	transition: background 0.2s ease;
}

.nv-btn:hover,
.nv-btn:focus {
	background: var(--nv-green-dark);
	color: var(--nv-white);
}

/* === Barra valori: sovrapposta all'immagine hero === */
.nv-hero__values {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	padding: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nv-hero__values-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	counter-reset: nv-value;
}

.nv-hero__value {
	position: relative;
	overflow: hidden;
	padding: 0 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	counter-increment: nv-value;
}

.nv-hero__value::before {
	content: counter(nv-value, decimal-leading-zero);
	position: absolute;
	bottom: -1.2rem;
	right: 0.25rem;
	font-size: 9rem;
	font-family: 'DM Sans', sans-serif;
	font-weight: 700;
	color: #fff;
	opacity: 0.04;
	line-height: 1;
	pointer-events: none;
	user-select: none;
}

.nv-hero__value:first-child {
	border-left: none;
	padding-left: 0;
}

.nv-hero__value strong {
	display: block;
	color: var(--nv-white);
	font-size: 0.95rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 0.5rem;
}

.nv-hero__value p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	line-height: 1.71;
	margin: 0;
}

/* === Breadcrumb === */
.nv-breadcrumb {
	padding: 0 40px 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	margin-bottom: 0;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--nv-gray);
}

.nv-breadcrumb a {
	color: var(--nv-gray);
	text-decoration: none;
}

.nv-breadcrumb a:hover {
	color: var(--nv-green);
}

.nv-breadcrumb .breadcrumb_last {
	color: var(--nv-black);
	font-weight: 500;
}

/* === Utility === */
.nv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.nv-section {
	padding: 5rem 0;
}

.nv-section__eyebrow {
	text-align: center;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--nv-green);
	margin: 0 0 0.75rem;
}

.nv-section__title {
	font-size: clamp(2rem, 3.75vw, 3.375rem);
	font-weight: 400;
	letter-spacing: -2px;
	line-height: 1.3;
	text-align: center;
	color: var(--nv-black);
	margin: 0 0 1.25rem;
}

.nv-section__divider {
	width: 10%;
	height: 2px;
	background: var(--nv-green);
	margin: 0 auto 3rem;
}

.nv-section__cta {
	text-align: center;
	margin-top: 3rem;
}

.nv-btn--outline {
	background: transparent;
	border: 2px solid var(--nv-green);
	color: var(--nv-green);
	padding: calc(0.875rem - 2px) calc(2rem - 2px);
}

.nv-btn--outline:hover,
.nv-btn--outline:focus {
	background: var(--nv-green);
	color: var(--nv-white);
}

/* === Destinazioni in evidenza === */
.nv-destinazioni {
	background: var(--nv-white);
}

.nv-destinazioni__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.nv-dest-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.nv-dest-card__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 6px;
}

.nv-dest-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.nv-dest-card:hover .nv-dest-card__image img {
	transform: scale(1.04);
}

.nv-dest-card__content {
	padding: 1.25rem 0 0;
}

.nv-dest-card__title {
	font-size: 26px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--nv-black);
	margin: 0 0 0.4rem;
}

.nv-dest-card__count {
	display: block;
	font-size: 0.8rem;
	color: var(--nv-gray);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.75rem;
}

.nv-dest-card__excerpt {
	font-size: 21px;
	font-weight: 400;
	line-height: 1.71;
	color: var(--nv-gray);
	margin: 0 0 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nv-dest-card__link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--nv-green);
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
}

.nv-dest-card:hover .nv-dest-card__link {
	color: var(--nv-green-dark);
}

/* === Prossime partenze === */
.nv-partenze {
	background: var(--nv-sage);
}

.nv-partenze__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.nv-dep-card {
	display: flex;
	text-decoration: none;
	color: inherit;
	background: var(--nv-white);
	border-radius: 6px;
	overflow: hidden;
	transition: box-shadow 0.25s ease;
	height: 260px;
}

.nv-dep-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nv-dep-card__image {
	flex: 0 0 40%;
	position: relative;
	overflow: hidden;
}

.nv-dep-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.nv-dep-card:hover .nv-dep-card__image img {
	transform: scale(1.04);
}


.nv-dep-card__body {
	flex: 1;
	padding: 1.25rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

.nv-dep-card__dest {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--nv-green);
	margin-bottom: 0.6rem;
}

.nv-dep-card__title {
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--nv-black);
	margin: 0 0 1rem;
}

.nv-dep-card__dates {
	font-size: 1.06rem;
	color: var(--nv-gray);
	margin: 0 0 0.4rem;
	line-height: 1.5;
}

.nv-dep-card__price {
	font-size: 1.06rem;
	font-weight: 600;
	color: var(--nv-black);
	margin: 0 0 0.35rem;
}

.nv-dep-card__meta {
	font-size: 1rem;
	color: var(--nv-gray);
	margin: 0 0 0.12rem;
	line-height: 1.4;
}

.nv-dep-card__cta {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--nv-green);
	margin-top: auto;
	transition: color 0.2s ease;
}

.nv-dep-card:hover .nv-dep-card__cta {
	color: var(--nv-green-dark);
}

/* === CTA Finale === */
.nv-cta-finale {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	background-color: var(--nv-black);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 6rem 0;
	text-align: center;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.nv-cta-finale__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.nv-cta-finale__inner {
	position: relative;
	z-index: 1;
}

.nv-cta-finale__title {
	font-size: clamp(2rem, 4.5vw, 3.5rem);
	font-weight: 400;
	color: var(--nv-white);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin: 0 0 1.25rem;
}

.nv-cta-finale__subtitle {
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 2.5rem;
	line-height: 1.6;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.nv-cta-finale__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* === Recensioni === */
.nv-recensioni {
	background: var(--nv-white);
}

/* === Chi siamo === */
.nv-chisiamo {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	background-color: var(--nv-black);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 6rem 0;
}

.nv-chisiamo__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.nv-chisiamo__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 800px;
}

.nv-chisiamo .nv-chisiamo__title {
	font-size: clamp(2rem, 3.75vw, 3.375rem);
	font-weight: 400;
	letter-spacing: -2px;
	line-height: 1.3;
	text-align: center;
	color: var(--nv-white);
	margin: 0 0 1.5rem;
}

.nv-chisiamo__text {
	font-size: 1.15rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 2.5rem;
}

.nv-chisiamo__text p {
	margin: 0;
}

.nv-btn--outline-white {
	background: transparent;
	border: 2px solid var(--nv-white);
	color: var(--nv-white);
	padding: calc(0.875rem - 2px) calc(2rem - 2px);
}

.nv-btn--outline-white:hover,
.nv-btn--outline-white:focus {
	background: var(--nv-white);
	color: var(--nv-black);
}

/* === Blog articoli (home page + archivio) === */
.nv-blog {
	background: var(--nv-sage);
}

.nv-blog-archive,
.nv-dest-archive {
	padding: 3rem 0 4rem;
	background: var(--nv-white);
}

.nv-blog-archive__pagination {
	margin-top: 3rem;
	text-align: center;
}

.nv-blog-archive__pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

.nv-blog-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid var(--nv-muted);
	color: var(--nv-gray);
	text-decoration: none;
	font-size: 0.875rem;
	transition: background 0.2s, color 0.2s;
}

.nv-blog-archive__pagination .page-numbers.current,
.nv-blog-archive__pagination .page-numbers:hover {
	background: var(--nv-green);
	border-color: var(--nv-green);
	color: var(--nv-white);
}

.nv-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.nv-blog-card {
	display: block;
	text-decoration: none;
	color: inherit;
}

.nv-blog-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 6px;
}

.nv-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.nv-blog-card:hover .nv-blog-card__image img {
	transform: scale(1.04);
}

.nv-blog-card__content {
	padding: 1.25rem 0 0;
}

.nv-blog-card__meta {
	display: block;
	font-size: 0.8rem;
	color: var(--nv-gray);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.75rem;
}

.nv-blog-card__title {
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1.3;
	color: var(--nv-black);
	margin: 0 0 0.75rem;
}

.nv-blog-card__excerpt {
	font-size: 1rem;
	line-height: 1.71;
	color: var(--nv-gray);
	margin: 0 0 1rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nv-blog-card__link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--nv-green);
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
}

.nv-blog-card:hover .nv-blog-card__link {
	color: var(--nv-green-dark);
}

/* === Guide list shortcode === */
.nv-guide-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-top: 2.5rem;
}

.nv-guide-card {
	display: flex;
	gap: 1.75rem;
	align-items: flex-start;
}

.nv-guide-card__photo {
	flex: 0 0 160px;
	width: 160px;
	height: 220px;
	border-radius: 6px;
	overflow: hidden;
}

.nv-guide-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.nv-guide-card__body {
	flex: 1;
	min-width: 0;
}

.nv-guide-card__name {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--nv-black);
	margin: 0 0 0.25rem;
}

.nv-guide-card__qualification {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--nv-green);
	margin: 0 0 0.25rem;
}

.nv-guide-card__years {
	display: inline-block;
	font-size: 0.8rem;
	color: var(--nv-muted);
	letter-spacing: 0.04em;
	margin-bottom: 0.75rem;
}

.nv-guide-card__bio {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 0.75rem;
}

.nv-guide-card__bio p {
	margin: 0 0 0.5rem;
}

.nv-guide-card__bio p:last-child {
	margin-bottom: 0;
}

.nv-guide-card__meta {
	font-size: 0.875rem;
	margin: 0 0 0.25rem;
	line-height: 1.5;
}

.nv-guide-card__meta strong {
	color: var(--nv-black);
	font-weight: 600;
}

/* === Hero claim === */

.nv-page-hero__claim {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	color: rgba(255, 255, 255, 0.82);
	font-weight: 300;
	letter-spacing: 0.01em;
	margin: 0.75rem 0 0;
}

/* === Destinazione singola === */

.nv-dest-single__intro {
	padding: 3.5rem 0;
	text-align: center;
}

.nv-dest-single__intro-text {
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	color: var(--nv-gray);
	line-height: 1.7;
	margin: 0 0 2rem;
}

.nv-dest-single__editorial {
	background: var(--nv-sage);
	padding: 5rem 0;
	box-shadow: 0 0 0 100vmax var(--nv-sage);
	clip-path: inset(0 -100vmax);
}

/* === Tab system === */

.nv-tabs__nav {
	display: flex;
	justify-content: center;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 2.5rem;
	gap: 0;
}

.nv-tabs__btn {
	background: transparent;
	border: none;
	padding: 0.75rem 1.75rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--nv-black);
	cursor: pointer;
	position: relative;
	transition: color 0.2s ease;
	letter-spacing: 0.01em;
}

.nv-tabs__btn:hover,
.nv-tabs__btn:focus,
.nv-tabs__btn:active {
	background: transparent;
	color: var(--nv-black);
	outline: none;
}

.nv-tabs__btn:hover::after {
	transform: scaleX(1);
	background: var(--nv-muted);
}

.nv-tabs__btn.is-active:hover::after,
.nv-tabs__btn.is-active:focus::after {
	background: var(--nv-green);
}

.nv-tabs__btn::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--nv-green);
	transform: scaleX(0);
	transition: transform 0.2s ease;
}

.nv-tabs__btn.is-active {
	color: var(--nv-black);
}

.nv-tabs__btn.is-active::after {
	transform: scaleX(1);
}

.nv-tabs__panel {
	display: none;
}

.nv-tabs__panel.is-active {
	display: block;
}

.nv-dest-single__section-body {
	font-size: 1.05rem;
	line-height: 1.75;
	color: rgba(0, 0, 0, 0.8);
}

.nv-dest-single__section-body p:last-child {
	margin-bottom: 0;
}

/* === Viaggi disponibili === */

.nv-dest-viaggi {
	background: var(--nv-sage);
	padding: 5rem 0;
	box-shadow: 0 0 0 100vmax var(--nv-sage);
	clip-path: inset(0 -100vmax);
}

/* Expanded — single trip */

.nv-trip-card.nv-trip-card--solo {
	flex-direction: row;
	min-height: 340px;
}

.nv-trip-card--solo .nv-trip-card__image {
	width: 50%;
	aspect-ratio: unset;
	align-self: stretch;
}

.nv-trip-card--solo .nv-trip-card__body {
	padding: 2.5rem;
	justify-content: center;
}

.nv-trip-card--solo .nv-trip-card__title {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
}


@media (max-width: 768px) {
	.nv-trip-card.nv-trip-card--solo {
		flex-direction: column;
		min-height: unset;
	}

	.nv-trip-card--solo .nv-trip-card__image {
		width: 100%;
		aspect-ratio: 3 / 2;
		align-self: auto;
	}

	.nv-trip-card--solo .nv-trip-card__body {
		padding: 1.5rem;
	}
}

/* === Griglia viaggi === */

.nv-trip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.nv-trip-card {
	display: flex;
	flex-direction: column;
	background: var(--nv-white);
	border-radius: 6px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.25s ease;
}

.nv-trip-card:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.nv-trip-card__image {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	flex-shrink: 0;
}

.nv-trip-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.nv-trip-card:hover .nv-trip-card__image img {
	transform: scale(1.04);
}

.nv-trip-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.nv-trip-card__title {
	font-size: clamp(1.1rem, 1.5vw, 1.35rem);
	font-weight: 400;
	color: var(--nv-black);
	letter-spacing: -0.02em;
	margin: 0 0 0.75rem;
}

.nv-trip-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.nv-trip-card__excerpt {
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--nv-gray);
	margin: 0 0 1.25rem;
	flex: 1;
}

.nv-trip-card__link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--nv-green);
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
	margin-top: auto;
}

.nv-trip-card:hover .nv-trip-card__link {
	color: var(--nv-green-dark);
}

/* === Badge === */

.nv-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.3em 0.75em;
	border-radius: 3px;
	background: var(--nv-white);
	color: var(--nv-gray);
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.nv-badge--easy        { color: #2d7a4f; border-color: #2d7a4f; }
.nv-badge--moderate    { color: var(--nv-green); border-color: var(--nv-green); }
.nv-badge--challenging { color: #b05a00; border-color: #b05a00; }
.nv-badge--expert      { color: #b03030; border-color: #b03030; }

/* === Gallery === */

.nv-dest-gallery {
	background: var(--nv-white);
	padding: 5rem 0;
}

.nv-dest-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
}

.nv-dest-gallery__item {
	cursor: pointer;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 4px;
}

.nv-dest-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.nv-dest-gallery__item:hover img {
	transform: scale(1.05);
}


/* === FAQ === */

.nv-dest-faq {
	background: var(--nv-white);
	padding: 5rem 0;
}

.nv-dest-faq__list {
}

.nv-dest-faq__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nv-dest-faq__item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.nv-dest-faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--nv-black);
	cursor: pointer;
	list-style: none;
	gap: 1rem;
}

.nv-dest-faq__question::-webkit-details-marker { display: none; }

.nv-dest-faq__question::after {
	content: '+';
	flex-shrink: 0;
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--nv-green);
	transition: transform 0.25s ease;
}

.nv-dest-faq__item[open] .nv-dest-faq__question::after {
	transform: rotate(45deg);
}

.nv-dest-faq__answer {
	padding: 0 0 1.25rem;
	font-size: 0.95rem;
	line-height: 1.75;
	color: var(--nv-gray);
}

.nv-dest-faq__answer p:last-child {
	margin-bottom: 0;
}

/* === Blog correlato === */

.nv-dest-blog {
	background: var(--nv-white);
	padding: 5rem 0;
}

/* === Responsive === */
@media (max-width: 768px) {
	.nv-hero__values-inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.nv-hero__value {
		border-left: none;
		padding-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
		padding-top: 1rem;
	}

	.nv-hero__value:first-child {
		border-top: none;
		padding-top: 0;
	}

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

	.nv-partenze__grid {
		grid-template-columns: 1fr;
	}

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

	.nv-dest-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

@media (max-width: 480px) {
	.nv-hero__values-inner {
		grid-template-columns: 1fr;
	}

	.nv-hero {
		height: auto;
		min-height: 100vh;
	}

	.nv-destinazioni__grid {
		grid-template-columns: 1fr;
	}

	.nv-blog__grid {
		grid-template-columns: 1fr;
	}

	.nv-dest-gallery__grid {
		grid-template-columns: 1fr;
	}

	.nv-guide-card {
		flex-direction: column;
	}

	.nv-guide-card__photo {
		flex: 0 0 auto;
		width: 100%;
		aspect-ratio: 1 / 1;
	}

	.nv-dep-card {
		flex-direction: column;
		height: auto;
	}

	.nv-dep-card__image {
		flex: 0 0 auto;
		height: 200px;
		min-height: unset;
	}
}

/* === [nv_perche] shortcode === */

.nv-perche {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.nv-perche__item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.nv-perche__title {
	color: var(--nv-white);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
}

.nv-perche__desc {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.8rem;
	line-height: 1.5;
}

/* === Footer === */
#colophon,
.site-footer,
.site-info,
.footer-widgets {
	background-color: #0b1614 !important;
	color: var(--nv-white);
}

.footer-widgets .widget-title {
	color: var(--nv-white);
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.85rem;
}

.footer-widgets .widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 36px;
	height: 2px;
	background: var(--nv-green);
}

.footer-widgets a {
	color: rgba(255, 255, 255, 0.75) !important;
	text-decoration: none;
}

.footer-widgets a:hover,
.footer-widgets a:focus {
	color: var(--nv-white) !important;
}

.site-info {
	position: relative;
}

.site-info::before {
	content: '';
	display: block;
	width: 1200px;
	max-width: calc(100% - 4rem);
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	margin: 0 auto 1.25rem;
}

.site-info a,
.site-footer .copyright {
	color: rgba(255, 255, 255, 0.7) !important;
	text-decoration: none;
}

.site-info a:hover,
.site-info a:focus {
	color: var(--nv-white) !important;
}

.nv-footer-info {
	text-align: left;
	font-size: 11px;
}

.map-wrapper {
  width: 100%;
  aspect-ratio: 16 / 7;
}

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

/* === Viaggio singolo === */

.nv-trip-why {
	background: var(--nv-white);
	padding: 5rem 0;
}

/* === Programma itinerario === */

.nv-trip-single .nv-dest-gallery__grid {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
	.nv-trip-single .nv-dest-gallery__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* === Programma itinerario === */

.nv-trip-itinerary__toggle-all {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
	cursor: pointer;
	background: transparent;
	border: 1px solid rgba(0, 0, 0, 0.25);
	color: rgba(0, 0, 0, 0.7);
	border-radius: 999px;
	padding: 0.55rem 0.85rem;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nv-trip-itinerary__toggle-all:hover,
.nv-trip-itinerary__toggle-all:focus {
	background: rgba(255, 255, 255, 0.6);
	border-color: rgba(0, 0, 0, 0.35);
	color: rgba(0, 0, 0, 0.85);
	outline: none;
}

.nv-trip-itinerary__toggle-caret {
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
	transform-origin: center;
	transition: transform 0.2s ease;
}

.nv-trip-itinerary__toggle-all.is-expanded .nv-trip-itinerary__toggle-caret {
	transform: rotate(180deg);
}

.nv-trip-itinerary__list-actions {
	display: flex;
	justify-content: flex-end;
	padding-bottom: 0.75rem;
}

.nv-trip-itinerary__layout--has-map .nv-trip-itinerary__list {
	margin-top: -1.25rem;
}

@media (max-width: 780px) {
	.nv-trip-itinerary__layout--has-map .nv-trip-itinerary__list {
		margin-top: 0;
	}
}

.nv-trip-itinerary {
	background: var(--nv-sage);
	padding: 5rem 0;
	box-shadow: 0 0 0 100vmax var(--nv-sage);
	clip-path: inset(0 -100vmax);
}

.nv-trip-itinerary__layout {
	display: block;
}

.nv-trip-itinerary__layout--has-map {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 3rem;
	align-items: start;
}

.nv-trip-itinerary__map-col {
	position: sticky;
	top: 2rem;
}

.nv-trip-itinerary__map-btn {
	position: relative;
	width: 100%;
	cursor: zoom-in;
	border-radius: 8px;
	overflow: hidden;
	display: block;
	text-decoration: none;
}

.nv-trip-itinerary__map-btn img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	transition: opacity 0.2s ease;
}

.nv-trip-itinerary__map-btn:hover img {
	opacity: 0.88;
}

.nv-trip-itinerary__map-expand {
	position: absolute;
	bottom: 0.75rem;
	right: 0.75rem;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 0.3rem 0.65rem;
	border-radius: 4px;
	pointer-events: none;
}

.nv-trip-itinerary__item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nv-trip-itinerary__item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nv-trip-itinerary__trigger {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.25rem 0;
	cursor: pointer;
	list-style: none;
}

.nv-trip-itinerary__trigger::-webkit-details-marker { display: none; }

.nv-trip-itinerary__trigger::after {
	content: '+';
	flex-shrink: 0;
	margin-left: auto;
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--nv-green);
	transition: transform 0.25s ease;
}

.nv-trip-itinerary__item[open] .nv-trip-itinerary__trigger::after {
	transform: rotate(45deg);
}

.nv-trip-itinerary__num {
	flex-shrink: 0;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--nv-green);
	min-width: 4.5rem;
}

.nv-trip-itinerary__title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--nv-black);
	margin-bottom: 0;
}

.nv-trip-itinerary__body {
	padding: 0.25rem 2rem 1.75rem 5.75rem;
}

@media (max-width: 780px) {
	.nv-trip-itinerary__layout--has-map {
		grid-template-columns: 1fr;
	}
	.nv-trip-itinerary__map-col {
		position: static;
	}
}

@media (max-width: 480px) {
	.nv-trip-itinerary__body {
		padding-left: 0;
	}
}

/* === Prossima partenza === */

.nv-trip-next-dep {
	background: var(--nv-white);
	padding: 5rem 0;
}

.nv-trip-next-dep__card {
	display: grid;
	grid-template-columns: 1fr;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.10);
	border: 1px solid rgba(0, 0, 0, 0.07);
	background: var(--nv-white);
}

.nv-trip-next-dep__card.has-image {
	grid-template-columns: 42% 1fr;
}

.nv-trip-next-dep__img {
	position: relative;
	min-height: 320px;
	overflow: hidden;
}

.nv-trip-next-dep__img img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.nv-trip-next-dep__card:hover .nv-trip-next-dep__img img {
	transform: scale(1.04);
}

.nv-trip-next-dep__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
	padding: 2.75rem 3rem;
}

.nv-trip-next-dep__label {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nv-green);
	margin-bottom: 0.4rem;
}

.nv-trip-next-dep__dates-col {
	display: flex;
	flex-direction: column;
}

.nv-trip-next-dep__dates {
	font-size: clamp(1.1rem, 2vw, 1.4rem);
	font-weight: 300;
	color: var(--nv-black);
	margin: 0;
	letter-spacing: -0.01em;
	line-height: 1.3;
}

.nv-trip-next-dep__arrow {
	color: var(--nv-green);
	margin: 0 0.4rem;
}

.nv-trip-next-dep__price-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.nv-trip-next-dep__price {
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--nv-black);
	margin: 0;
	line-height: 1;
}

.nv-trip-next-dep__price small {
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--nv-gray);
	margin-left: 0.3rem;
}

.nv-trip-next-dep__seats-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.nv-trip-next-dep__seats-bar {
	height: 5px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 99px;
	overflow: hidden;
}

.nv-trip-next-dep__seats-fill {
	height: 100%;
	background: var(--nv-green);
	border-radius: 99px;
	transition: width 0.4s ease;
}

.nv-trip-next-dep__seats {
	font-size: 0.8rem;
	color: var(--nv-gray);
}

.nv-trip-next-dep__ctas {
	display: flex;
	flex-direction: row;
	gap: 0.75rem;
	flex-wrap: wrap;
}

/* === Altre partenze === */

.nv-trip-other-deps__title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--nv-black);
	margin: 2rem 0 0.75rem;
}

.nv-trip-other-deps__list {
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.nv-trip-other-deps__row {
	display: grid;
	grid-template-columns: 1fr auto auto auto;
	align-items: center;
	gap: 2rem;
	padding: 1rem 0;
	text-decoration: none;
	color: inherit;
	border-bottom: none;
	transition: opacity 0.15s ease;
}

.nv-trip-other-deps__row:hover {
	opacity: 0.7;
}

.nv-trip-other-deps__date {
	font-size: 1.25rem;
	color: var(--nv-black);
}

.nv-trip-other-deps__price {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--nv-black);
}

.nv-trip-other-deps__seats {
	font-size: 1.1rem;
	color: var(--nv-gray);
	white-space: nowrap;
}

.nv-trip-other-deps__seats.is-full {
	color: var(--nv-muted);
}

.nv-trip-other-deps__link {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--nv-green);
	letter-spacing: 0.02em;
	white-space: nowrap;
}

@media (max-width: 780px) {
	.nv-trip-next-dep__card.has-image {
		grid-template-columns: 1fr;
	}

	.nv-trip-next-dep__img {
		min-height: 220px;
	}

	.nv-trip-next-dep__body {
		padding: 1.75rem;
		gap: 1.5rem;
	}
}

@media (max-width: 600px) {
	.nv-trip-other-deps__row {
		grid-template-columns: 1fr auto auto;
		grid-template-rows: auto auto;
	}

	.nv-trip-other-deps__date {
		grid-column: 1 / -1;
	}

	.nv-trip-other-deps__price {
		display: none;
	}
}

/* ================================================
   TRIP HERO STATS BAR (shared by single-trip and single-departure)
   ================================================ */

.nv-trip-hero {
	height: 420px;
	padding: 0;
	align-items: stretch;
	flex-direction: column;
}

.nv-trip-hero .nv-page-hero__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 4rem;
	padding-bottom: 0;
}

.nv-trip-hero__stats-bar {
	position: relative;
	z-index: 1;
	height: 50px;
	display: flex;
	align-items: center;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nv-trip-hero__stats-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.nv-trip-hero__stat {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.4rem;
	padding: 0 2.5rem;
	border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.nv-trip-hero__stat:last-child {
	border-right: none;
}

.nv-trip-hero__stat-value {
	font-size: 14px;
	font-weight: 500;
	color: var(--nv-white);
	line-height: 1;
}

.nv-trip-hero__stat-label {
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
	.nv-trip-hero__stat {
		padding: 0 1.75rem;
	}
}

@media (max-width: 480px) {
	.nv-trip-hero__stats-inner {
		flex-wrap: wrap;
	}
	.nv-trip-hero__stat {
		width: 50%;
		padding: 0.75rem 1rem;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	.nv-trip-hero__stat:nth-child(odd) {
		border-right: 1px solid rgba(255, 255, 255, 0.1);
	}
	.nv-trip-hero__stat:last-child,
	.nv-trip-hero__stat:nth-last-child(-n+2):nth-child(odd) ~ .nv-trip-hero__stat {
		border-bottom: none;
	}
}

/* ================================================
   SINGLE DEPARTURE
   ================================================ */

.nv-departure-wrap {
    padding: 4rem 0 6rem;
}

/* Layout grid */
.nv-departure-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3.5rem;
    align-items: start;
    max-width: var(--nv-container-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--nv-container-padding, 1.5rem);
}

/* Main content */
.nv-departure-main {
    min-width: 0;
}

.nv-departure-section {
    padding-bottom: 3.5rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nv-departure-wrap .nv-section__title {
	text-align: left;
}

.nv-departure-wrap .nv-section__divider {
	margin-left: 0;
	margin-right: auto;
}

.nv-departure-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Sidebar */
.nv-departure-sidebar {
    min-width: 0;
    align-self: start;
    position: sticky;
    top: calc(var(--nv-sticky-header-h, 0px) - 60px);
}

.nv-departure-sidebar__card {
    background: var(--nv-white);
    border: 1px solid rgba(45, 110, 78, 0.2);
    border-radius: 10px;
    padding: 2rem 1.25rem 1.25rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.nv-departure-other-deps {
    margin-top: 1.5rem;
}

.nv-departure-other-deps__title {
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nv-gray);
    margin: 0 0 0.75rem;
}

.nv-departure-other-deps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nv-departure-other-deps__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    background: var(--nv-cream);
    transition: background 0.15s ease;
}

.nv-departure-other-deps__item a:hover {
    background: rgba(45, 110, 78, 0.08);
}

.nv-departure-other-deps__dates {
    font-size: 1rem;
    color: var(--nv-black);
}

.nv-departure-other-deps__price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--nv-green);
    white-space: nowrap;
    margin-left: 0.5rem;
}

.nv-departure-piano-aereo {
    background: var(--nv-cream);
    border-radius: 6px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.nv-departure-piano-aereo__title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--nv-green);
    margin: 0 0 0.875rem;
}

.nv-departure-piano-aereo__img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 0.875rem;
}

.nv-departure-piano-aereo__body {
    font-size: 0.78rem;
    color: var(--nv-gray);
    line-height: 1.6;
}

.nv-departure-piano-aereo__body p {
    margin: 0 0 0.5rem;
}

.nv-departure-piano-aereo__body p:last-child {
    margin-bottom: 0;
}

.nv-departure-price {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--nv-black);
    margin: 0 0 0.5rem;
    line-height: 1;
}

.nv-departure-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--nv-gray);
    margin-left: 0.25rem;
}

/* Meta rows */
.nv-departure-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
	margin-bottom: 10px
}

.nv-departure-meta__row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--nv-black);
    line-height: 1.4;
    white-space: nowrap;
}

.nv-departure-meta__icon {
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Seats bar */
.nv-departure-seats-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.nv-departure-seats-bar {
    height: 5px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 99px;
    overflow: hidden;
}

.nv-departure-seats-fill {
    height: 100%;
    background: var(--nv-green);
    border-radius: 99px;
}

.nv-departure-seats-label {
    font-size: 0.78rem;
    color: var(--nv-gray);
}

/* CTA buttons */
.nv-departure-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.nv-departure-ctas .nv-btn {
    width: 100%;
    text-align: center;
    padding: 0.83rem 1.9rem;
}

.nv-departure-extra-info {
    font-size: 0.78rem;
    color: var(--nv-gray);
    text-align: center;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* Incluso / Non incluso */
.nv-departure-included {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nv-departure-included__col {
    padding: 0;
}

.nv-departure-included__heading {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.75rem;
    color: var(--nv-black);
}

/* Callout note specifiche */
.nv-departure-callout {
    /* border-left: 4px solid #e6a817;
    background: #fffbea; 
    padding: 1.25rem 1.5rem;*/
    border-radius: 0 6px 6px 0;
}
.nv-departure-callout h3{
	font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 0.75rem;
    color: var(--nv-black);
}

/* Card guida */
.nv-departure-guide {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--nv-cream, #f8f5f1);
    padding: 1.5rem;
    border-radius: 8px;
}

.nv-departure-guide__photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.nv-departure-guide__name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}

.nv-departure-guide__meta {
    font-size: 0.8rem;
    color: var(--nv-green);
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.nv-departure-guide__bio {
    font-size: 0.9rem;
    color: var(--nv-gray);
    margin: 0;
    line-height: 1.6;
}

.nv-departure-guide__bio.is-clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nv-departure-guide__bio p {
    margin: 0 0 0.75em;
}

.nv-departure-guide__bio p:last-child {
    margin-bottom: 0;
}

.nv-departure-guide__toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nv-green);
    cursor: pointer;
    display: block;
}

.nv-departure-guide__toggle:hover {
    color: var(--nv-green-dark);
}

/* Hero departure */
.nv-departure-hero {
    flex-direction: column;
    align-items: stretch;
    height: 360px;
    padding: 0;
}

.nv-departure-hero .nv-page-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    padding-bottom: 0;
}

.nv-departure-hero .nv-trip-hero__stats-bar {
    margin-top: auto;
}

/* Sticky bottom bar mobile */
.nv-departure-sticky-bar {
    display: none;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .nv-departure-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .nv-departure-sidebar {
        order: -1;
        padding: 1.5rem var(--nv-container-padding, 1.5rem);
        background: var(--nv-sage);
    }

    .nv-departure-sidebar__card {
        position: static;
        box-shadow: none;
        border-radius: 8px;
    }

    .nv-departure-main {
        padding: 2rem var(--nv-container-padding, 1.5rem);
    }

    .nv-departure-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--nv-white);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
        z-index: 100;
        transform: translateY(100%);
        transition: transform 0.25s ease;
    }

    .nv-departure-sticky-bar.is-visible {
        transform: translateY(0);
    }

    .nv-departure-sticky-bar__inner {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.85rem 1.25rem;
        max-width: 100%;
    }

    .nv-departure-sticky-bar__price {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--nv-black);
        white-space: nowrap;
    }

    .nv-departure-sticky-bar__cta {
        margin-left: auto;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 600px) {
    .nv-departure-guide {
        flex-direction: column;
    }
}
