/*
Theme Name: Zodrid
Description: Tema custom per Zodrid Jet Skis — noleggio moto d'acqua Ibiza. Fork strutturale di ananoe (Ananoè Noleggio Barche), stack collaudato: WordPress + Carbon Fields + REST API custom, no page builder.
Author: Digital On
Version: 0.2.0
Text Domain: zodrid
*/

/* ==========================================================================
   Design tokens — da design-tokens.md (estratti Figma, non stimati)
   ========================================================================== */
:root {
	/* Colori */
	--navy: #062A4F;
	--navy-dark-1: #031B35;
	--navy-dark-2: #021224;
	--navy-mid: #0A4575;
	--navy-card: #0B3A66;
	--navy-placeholder: #14598C;
	--cyan: #46EDFD;
	--white: #FFFFFF;
	--white-85: rgba(255, 255, 255, 0.85);
	--white-80: rgba(255, 255, 255, 0.80);
	--white-75: rgba(255, 255, 255, 0.75);
	--white-70: rgba(255, 255, 255, 0.70);
	--white-60: rgba(255, 255, 255, 0.60);
	--white-40: rgba(255, 255, 255, 0.40);

	/* Font */
	--font-display: 'Barlow Condensed', sans-serif;
	--font-body: 'Manrope', sans-serif;
	--fw-regular: 400;
	--fw-semibold: 600;
	--fw-bold: 700;
	--fw-extrabold: 800;

	/* Radius */
	--radius-pill: 999px;
	--radius-card-lg: 24px;
	--radius-card-md: 20px;
	--radius-item: 14px;

	/* Spaziatura sezione (desktop) */
	--section-px: 80px;
	--container-max: 1440px;

	/* Transizioni */
	--transition-fast: 150ms ease;
	--transition-normal: 300ms ease;
}

/* ==========================================================================
   Reset minimo + base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-weight: var(--fw-regular);
	background: var(--navy);
	color: var(--white);
}
h1, h2, h3, h4, p { margin: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.heading-display {
	font-family: var(--font-display);
	font-weight: var(--fw-extrabold);
	font-style: normal;
	line-height: 0.92;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: var(--fw-bold);
	border: none;
	border-radius: var(--radius-pill);
	cursor: pointer;
	white-space: nowrap;
	transition: transform var(--transition-fast), background var(--transition-fast);
}
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--white-40); }
.btn-outline:hover { border-color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 12px 28px; font-size: 15px; }
.btn-xs { padding: 10px 20px; font-size: 14px; }

/* ==========================================================================
   Header
   ========================================================================== */
/* Header fluttuante: barra staccata dai bordi, vetro (navy translucido +
   blur, fallback solido dove backdrop-filter non è supportato), il
   contenuto scorre sotto. Fuori flusso → le pagine senza hero full-bleed
   compensano con padding-top su main (vedi sotto). */
.site-header {
	position: fixed;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 48px);
	max-width: 1280px;
	z-index: 1000;
	background: rgba(6, 42, 79, 0.55);
	-webkit-backdrop-filter: blur(16px) saturate(1.4);
	backdrop-filter: blur(16px) saturate(1.4);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: var(--radius-card-lg);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 28px;
}
.site-logo img { height: 72px; width: auto; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions__lang { display: block; }
.main-nav__lang { display: none; }

/* Burger — visibile solo mobile */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--white); border-radius: 2px; transition: transform var(--transition-normal), opacity var(--transition-fast); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Compenso header fuori flusso: default per le pagine interne; la home
   non lo vuole (l'hero passa sotto la barra, effetto voluto). */
.site-main, .catalogo-page, .scheda-page { padding-top: 120px; }
.home .site-main { padding-top: 0; }
/* Pagine con hero full-bleed propria (catalogo-hero già riserva lo spazio
   sotto l'header fluttuante) — stesso motivo dell'eccezione .home sopra,
   altrimenti doppio spazio = striscia vuota sopra l'hero. */
.site-main--hero { padding-top: 0; }
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav .nav-list { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.main-nav .nav-list a {
	font-family: var(--font-body);
	font-weight: var(--fw-semibold);
	font-size: 15px;
	color: var(--white);
}
.main-nav .nav-list a:hover { color: var(--cyan); }
.zodrid-lang-switcher { display: flex; gap: 4px; font-size: 12px; color: var(--white-60); }
.zodrid-lang-switcher a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	padding: 6px 10px;
	border-radius: var(--radius-pill);
	font-weight: var(--fw-semibold);
	letter-spacing: 0.5px;
	transition: background var(--transition-fast), color var(--transition-fast);
}
.zodrid-lang-switcher a:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }
.zodrid-lang-switcher a.is-active { color: var(--white); background: rgba(255, 255, 255, 0.12); }
.zodrid-lang-switcher .lang-flag { width: 16px; height: 12px; border-radius: 2px; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
	background: var(--navy-dark-2);
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 60px var(--section-px);
	gap: 48px;
	flex-wrap: wrap;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand img { height: 50px; width: auto; object-fit: contain; }
.footer__address { font-size: 13px; line-height: 1.6; color: var(--white-60); }
.footer__legal-id { font-size: 11px; color: var(--white-40); }
.footer__col { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--white-70); }
.footer__col a:hover { color: var(--cyan); }

/* ==========================================================================
   Filter bar (data / persone / durata)
   ========================================================================== */
.filter-bar {
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--radius-pill);
	padding: 8px;
	display: flex;
	align-items: stretch;
	width: fit-content;
	max-width: 100%;
	height: 64px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.filter-bar__field { display: flex; align-items: center; gap: 8px; padding: 0 20px; cursor: pointer; white-space: nowrap; position: relative; }
.filter-bar__field svg:first-child { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; }
.filter-bar__divider { width: 1px; height: 32px; background: #e0e0e0; flex-shrink: 0; align-self: center; }
.filter-bar__date { border: none; background: transparent; font-family: var(--font-body); font-size: 14px; color: #333; cursor: pointer; outline: none; width: 130px; align-self: stretch; padding: 14px 0; }
.filter-bar__date::placeholder { color: #666; }
.filter-bar__reset { display: flex; align-items: center; gap: 4px; background: none; border: none; font-family: var(--font-body); font-size: 13px; color: var(--navy-mid); cursor: pointer; padding: 8px 16px; font-weight: var(--fw-semibold); }
.filter-bar__search { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--cyan); color: var(--navy); border: none; cursor: pointer; align-self: center; margin-left: 4px; }
.filter-bar__search svg { width: 18px; height: 18px; }

.custom-dropdown { position: relative; }
.custom-dropdown__label { font-family: var(--font-body); font-size: 14px; color: #666; cursor: pointer; user-select: none; }
.custom-dropdown__label--active { color: #1a1a1a; font-weight: var(--fw-semibold); }
.custom-dropdown__chevron { width: 14px !important; height: 14px !important; color: #999 !important; flex-shrink: 0; transition: transform 0.2s ease; }
.custom-dropdown.open .custom-dropdown__chevron { transform: rotate(180deg); }
.custom-dropdown__menu { display: none; position: fixed; min-width: 180px; padding: 6px; margin: 0; list-style: none; background: rgba(255, 255, 255, 0.98); border-radius: var(--radius-item); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); z-index: 9999; }
.custom-dropdown__menu--visible { display: block; }
.custom-dropdown__menu li { font-family: var(--font-body); font-size: 14px; color: #333; padding: 10px 14px; border-radius: 8px; cursor: pointer; }
.custom-dropdown__menu li:hover { background: rgba(6, 42, 79, 0.08); }
.custom-dropdown__menu li.selected { color: var(--navy-mid); font-weight: var(--fw-semibold); }

/* ==========================================================================
   Catalogo motos — /alquiler/motos/
   ========================================================================== */
.catalogo-page { background: var(--navy-dark-1); }
.catalogo-hero {
	/* Torna a navy-dark-1 in fondo come .catalogo-page sotto (prima finiva
	   su navy-mid, stacco netto con la griglia modelli) — il navy-mid resta
	   a metà per la stessa profondità visiva di prima. page-id-60 (Contacto)
	   sovrascrive con la propria variante più chiara, vedi sotto. */
	background: linear-gradient(180deg, var(--navy-dark-1) 0%, var(--navy-mid) 55%, var(--navy-dark-1) 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	padding: 90px var(--section-px) 72px;
}
.catalogo-hero__content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.catalogo-hero__title { font-size: 72px; color: var(--white); text-align: center; }
/* Modifier: titoli lunghi (articoli blog) — 72px su un titolo-frase intera
   occupa tutta la larghezza. Stesso font-size, solo max-width per wrappare
   su 2-3 righe (come .catalogo-hero__sub 640px) invece di stirarsi. */
.catalogo-hero__title--article { max-width: 760px; }
.catalogo-hero__sub { font-family: var(--font-body); font-size: 17px; color: var(--white-80); text-align: center; max-width: 640px; }

/* Pagine legali (Privacidad/Términos) — testo lungo, tipografia leggibile,
   nessun componente nuovo oltre a heading/paragraph/list/link di base. */
.legal-page { display: flex; justify-content: center; padding: 64px 24px 96px; }
.legal-page__inner { width: 100%; max-width: 760px; font-family: var(--font-body); color: var(--white-85); line-height: 1.65; }
.legal-page__update { color: var(--white-60); font-size: 14px; margin-bottom: 32px; }
.legal-page__notice { background: var(--navy-card); border: 1px solid var(--white-40); border-radius: 8px; padding: 16px 20px; margin-bottom: 32px; color: var(--white-80); font-size: 15px; }
.legal-page__inner h2 { font-family: var(--font-display); color: var(--white); font-size: 26px; margin: 40px 0 12px; }
.legal-page__inner h2:first-of-type { margin-top: 0; }
.legal-page__inner h3 { font-family: var(--font-display); color: var(--white); font-size: 19px; margin: 24px 0 8px; }
.legal-page__inner p { margin-bottom: 14px; }
.legal-page__inner ul { margin: 0 0 14px; padding-left: 22px; }
.legal-page__inner li { margin-bottom: 8px; }
.legal-page__inner a { color: var(--cyan); }
.legal-page__table { width: 100%; border-collapse: collapse; margin: 0 0 14px; font-size: 14px; }
.legal-page__table th, .legal-page__table td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--white-20, rgba(255,255,255,.12)); }
.legal-page__table th { color: var(--white); font-family: var(--font-display); font-weight: 600; }
.legal-page__table code { font-family: monospace; color: var(--cyan); }

/* Modifier: hero con foto di sfondo (es. como-funciona) — stesso schema
   scrim di .home-hero, solo senza video. Non tocca .catalogo-hero base
   (alquiler hub resta invariato, nessun bg-image inline lì). */
.catalogo-hero--photo {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	padding-top: 180px;
	padding-bottom: 130px;
}
.catalogo-hero--photo::before {
	content: '';
	position: absolute;
	inset: 0;
	/* Sfuma fino a var(--navy) piena in fondo — stesso colore della sezione
	   sotto (home-pasos), niente più taglio netto foto→blu al bordo. */
	background: linear-gradient(180deg, rgba(3, 27, 53, 0.55) 0%, rgba(10, 69, 117, 0.45) 55%, rgba(6, 42, 79, 1) 100%);
	z-index: 1;
	pointer-events: none;
}
.catalogo-hero--photo > :not(.catalogo-hero__video) { position: relative; z-index: 2; }

/* Hero Contacto (plain, page-id-60) leggermente più alta — non tocca
   .catalogo-hero base (Alquiler hub resta invariato). */
.page-id-60 .catalogo-hero {
	padding-top: 130px;
	padding-bottom: 100px;
	/* Finisce su var(--navy) invece di --navy-mid: stesso colore esatto
	   della sezione .home-intent sotto, niente più stacco netto. */
	background: linear-gradient(180deg, var(--navy-dark-1) 0%, var(--navy) 100%);
}

/* Video hero opzionale (es. como-funciona) — stesso schema di .home-hero__video
   (object-fit:cover, pieno width/height), ma resta visibile anche su mobile
   (a differenza di .home-hero__video che lì si nasconde). */
.catalogo-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* Mobile: stesse proporzioni della home-hero (130px sotto l'header
   fluttuante) — i 180px desktop su schermo piccolo diventano una fascia
   vuota sproporzionata sopra il titolo. */
@media (max-width: 768px) {
	.catalogo-hero { padding: 110px 24px 56px; }
	.catalogo-hero--photo { padding-top: 130px; padding-bottom: 90px; }
	.page-id-60 .catalogo-hero { padding-top: 110px; padding-bottom: 72px; }
}

/* Filter bar mobile: da pillola orizzontale a card verticale full-width
   (sforava il viewport). Vale anche sull'hero di como-funciona. */
@media (max-width: 768px) {
	.filter-bar {
		flex-direction: column;
		align-items: stretch;
		height: auto;
		width: 100%;
		max-width: 420px;
		border-radius: 20px;
		padding: 12px;
		gap: 2px;
	}
	.filter-bar__field { padding: 12px 8px; }
	.filter-bar__divider { width: auto; height: 1px; align-self: stretch; margin: 2px 8px; }
	.filter-bar__date { width: 100%; padding: 0; }
	.filter-bar__reset { justify-content: center; padding: 10px; }
	.filter-bar__search { width: 100%; border-radius: var(--radius-pill); margin: 6px 0 0; }
}

.catalogo-grid-section { padding: 48px var(--section-px) 90px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.catalogo-toolbar { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--container-max); }
.catalogo-count { font-family: var(--font-body); font-size: 14px; color: var(--white-70); }
.catalogo-sort { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; color: var(--white-70); font-weight: var(--fw-semibold); }
.catalogo-sort svg { width: 16px; height: 16px; color: var(--cyan); }
.catalogo-no-results { text-align: center; padding: 48px 0; color: var(--white-60); font-size: 15px; width: 100%; }

.catalogo-grid {
	padding-top: 36px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	width: 100%;
	max-width: var(--container-max);
}
/* Mobile: era inchiodata a 4 colonne → overflow orizzontale dell'intera
   pagina su viewport piccoli. Stessi breakpoint di .home-flota__grid.
   DOPO la regola base: a pari specificità vince l'ultima. */
@media (max-width: 1024px) {
	.catalogo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.catalogo-grid-section { padding: 40px 24px 64px; }
	.catalogo-grid { gap: 16px; }
}
@media (max-width: 560px) {
	.catalogo-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

/* Card "pop-out": moto scontornata (PNG trasparente) che sborda dal bordo
   superiore della card vetro, glow radiale cyan dietro. Le griglie che le
   ospitano hanno padding-top extra per lo sbordo (vedi .catalogo-grid /
   .home-flota__grid / .scheda-similar__grid). Con una featured NON
   scontornata (foto reali future) l'immagine resta in contain: layout
   regge, si perde solo l'effetto. */
.moto-card {
	background: rgba(11, 58, 102, 0.45);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: var(--radius-card-md);
	overflow: visible;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.moto-card:hover { transform: translateY(-6px); border-color: rgba(70, 237, 253, 0.35); }
.moto-card__image { display: block; height: 150px; margin-top: -36px; position: relative; }
.moto-card__image::before {
	content: '';
	position: absolute;
	inset: 10% 8% 0;
	background: radial-gradient(ellipse at center, rgba(70, 237, 253, 0.22) 0%, rgba(70, 237, 253, 0) 65%);
	pointer-events: none;
}
.moto-card__image img {
	position: relative;
	width: 92%;
	height: 100%;
	margin: 0 auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.45));
	transition: transform var(--transition-normal);
}
.moto-card:hover .moto-card__image img { transform: translateY(-6px) scale(1.04); }
.moto-card__body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.moto-card__title { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 28px; color: var(--white); text-transform: uppercase; }
.moto-card__specs { font-family: var(--font-body); font-size: 14px; color: var(--white-70); line-height: 1.5; }
.moto-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.moto-card__price { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 16px; color: var(--cyan); }
.moto-card__price-label { font-size: 11px; font-weight: var(--fw-regular); color: var(--white-60); display: block; }

/* ==========================================================================
   Blog — /blog/
   ========================================================================== */
.blog-grid {
	padding-top: 36px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	max-width: var(--container-max);
}
@media (max-width: 1024px) {
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.blog-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

.blog-card {
	background: rgba(11, 58, 102, 0.45);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: var(--radius-card-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--transition-normal), border-color var(--transition-normal);
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(70, 237, 253, 0.35); }
.blog-card__image { display: block; height: 180px; background: var(--navy-mid); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.blog-card__date { font-family: var(--font-body); font-size: 12px; color: var(--white-60); }
.blog-card__title { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 22px; color: var(--white); }
.blog-card__title a { color: inherit; }
.blog-card__excerpt { font-family: var(--font-body); font-size: 14px; color: var(--white-70); line-height: 1.5; }
.blog-card__link { font-family: var(--font-body); font-weight: var(--fw-semibold); font-size: 14px; color: var(--cyan); margin-top: 4px; }

.blog-pagination { display: flex; gap: 8px; padding-top: 12px; }
.blog-pagination span, .blog-pagination a {
	display: flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; padding: 0 10px;
	border-radius: var(--radius-pill);
	font-family: var(--font-body); font-size: 14px; color: var(--white-80);
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.blog-pagination a:hover { border-color: rgba(70, 237, 253, 0.5); color: var(--cyan); }
.blog-pagination .current { background: var(--cyan); color: var(--navy-dark-1); font-weight: var(--fw-bold); border-color: var(--cyan); }

/* ==========================================================================
   Scheda modello — /alquiler/motos/{slug}/
   ========================================================================== */
/* padding-top eredita 120px dalla regola generale (riga 136) — .scheda-header
   non è una hero full-bleed, senza compenso il breadcrumb finisce sotto
   l'header fluttuante. */
.scheda-page { background: var(--navy-dark-1); }

.scheda-header { padding: 16px var(--section-px); }
.scheda-breadcrumb { display: flex; gap: 8px; font-size: 13px; }
.scheda-breadcrumb a { color: var(--white-60); }
.scheda-breadcrumb a:hover { color: var(--cyan); }
.scheda-breadcrumb__sep { color: var(--white-40); }
.scheda-breadcrumb__current { color: var(--white); font-weight: var(--fw-semibold); }

.scheda-content { padding: 32px var(--section-px) 48px; }
.scheda-content__inner { max-width: var(--container-max); margin: 0 auto; display: flex; gap: 40px; align-items: flex-start; }
.scheda-left { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 32px; }
.scheda-sidebar { width: 380px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; position: sticky; top: 120px; }

.scheda-gallery { display: flex; gap: 10px; }
.scheda-gallery__main { border-radius: var(--radius-card-md); overflow: hidden; background: var(--navy-placeholder); flex: 1; min-width: 0; aspect-ratio: 4 / 3; }
.scheda-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.scheda-gallery__thumbs { display: flex; flex-direction: column; gap: 8px; width: 100px; flex-shrink: 0; }
.scheda-gallery__thumb { width: 100%; height: 0; padding-bottom: 100%; position: relative; border-radius: 12px; overflow: hidden; border: 2.5px solid transparent; cursor: pointer; background: var(--navy-card); }
.scheda-gallery__thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.scheda-gallery__thumb--active { border-color: var(--cyan); }
.scheda-gallery__thumb--more { display: flex; align-items: center; justify-content: center; }
.scheda-gallery__thumb--more span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 12px; font-weight: var(--fw-semibold); color: var(--white-70); }

.scheda-specs { display: flex; flex-direction: column; gap: 16px; }
.scheda-specs__title { font-size: 40px; color: var(--white); }
.scheda-specs__subtitle { font-family: var(--font-body); font-size: 14px; color: var(--white-70); }
.scheda-specs__grid { display: flex; flex-direction: column; }
.scheda-specs__row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.scheda-specs__row:last-child { border-bottom: none; }
.scheda-specs__label { color: var(--white-60); }
.scheda-specs__value { color: var(--white); font-weight: var(--fw-semibold); }

.scheda-divider { border: none; height: 1px; background: rgba(255,255,255,0.1); margin: 0; }
.scheda-section-title { font-family: var(--font-body); font-size: 18px; font-weight: var(--fw-bold); color: var(--white); }

.scheda-descrizione { display: flex; flex-direction: column; gap: 16px; }
.scheda-descrizione__text { font-size: 15px; color: var(--white-70); line-height: 1.6; }
.scheda-descrizione__text p { margin-bottom: 16px; }
.scheda-descrizione__text p:last-child { margin-bottom: 0; }

.scheda-note-prezzo { display: flex; flex-direction: column; gap: 8px; }
.scheda-note-prezzo p { font-size: 14px; color: var(--white-60); line-height: 1.5; }

/* Sidebar */
.scheda-calendar { background: var(--navy-card); border-radius: var(--radius-card-md); padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.scheda-calendar__title { font-family: var(--font-body); font-size: 16px; font-weight: var(--fw-bold); color: var(--white); }
.scheda-calendar__nav { display: flex; align-items: center; justify-content: space-between; }
.scheda-calendar__arrow { background: none; border: none; font-size: 20px; color: var(--white-70); cursor: pointer; padding: 4px 8px; }
.scheda-calendar__month { font-size: 14px; font-weight: var(--fw-bold); color: var(--white); }
.scheda-calendar__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 11px; font-weight: var(--fw-semibold); color: var(--white-60); }
.scheda-calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.scheda-calendar__day { height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: var(--fw-semibold); color: var(--white); cursor: default; }
.scheda-calendar__day--free { background: rgba(70,237,253,0.12); cursor: pointer; }
.scheda-calendar__day--free:hover { background: rgba(70,237,253,0.22); }
.scheda-calendar__day--busy { background: rgba(220,38,38,0.15); color: #fca5a5; font-weight: var(--fw-regular); }
.scheda-calendar__day--empty { background: transparent; }
.scheda-calendar__day--selected { background: var(--cyan); color: var(--navy); font-weight: var(--fw-bold); }
.scheda-calendar__day--past { background: rgba(255,255,255,0.03); color: var(--white-40); }
.scheda-calendar__legend { display: flex; gap: 16px; }
.scheda-calendar__legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--white-60); }
.scheda-calendar__dot { width: 10px; height: 10px; border-radius: var(--radius-pill); }
.scheda-calendar__dot--free { background: rgba(70,237,253,0.4); }
.scheda-calendar__dot--busy { background: rgba(220,38,38,0.5); }
.scheda-calendar__error { font-size: 13px; color: #fca5a5; font-weight: var(--fw-semibold); text-align: center; padding: 8px 0 0; }

.scheda-price { background: var(--navy-card); border-radius: var(--radius-item); padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.scheda-price__date { display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.scheda-price__date span { color: var(--white-60); }
.scheda-price__date strong { color: var(--white); font-weight: var(--fw-semibold); }
.scheda-price__divider { border: none; height: 1px; background: rgba(255,255,255,0.1); margin: 0; }
.scheda-price__slot { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 2px solid transparent; cursor: pointer; font-family: var(--font-body); text-align: left; width: 100%; }
.scheda-price__slot:hover { border-color: rgba(255,255,255,0.15); }
.scheda-price__slot--active { background: rgba(70,237,253,0.1); border-color: var(--cyan); }
.scheda-price__slot-name { font-size: 14px; font-weight: var(--fw-semibold); color: var(--white); }
.scheda-price__amount { font-size: 20px; font-weight: var(--fw-bold); color: var(--white); }
.scheda-price__slot--active .scheda-price__amount { color: var(--cyan); }
.scheda-price__cta { padding: 16px; border-radius: var(--radius-pill); font-size: 16px; width: 100%; }
.scheda-price__wa { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: var(--radius-pill); border: 1.5px solid #25d366; color: #25d366; font-size: 15px; font-weight: var(--fw-semibold); }
.scheda-price__wa:hover { background: #25d366; color: var(--white); }
.scheda-price__wa svg, .scheda-booking__wa svg { width: 18px; height: 18px; flex-shrink: 0; }

.scheda-booking { background: var(--navy-mid); padding: 64px var(--section-px); }

/* Modifier: foto/video di sfondo (riuso cta-arco-roccia) — stesso schema
   scrim di .home-cta--photo, solo qui il contenuto resta 2 colonne. */
.scheda-booking--photo {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
.scheda-booking--photo::before {
	content: '';
	position: absolute;
	inset: 0;
	/* Sfuma a navy-dark-1 pieno in fondo — stesso colore di .scheda-similar
	   sotto, niente più stacco netto foto→blu al bordo. */
	background: linear-gradient(180deg, rgba(3, 27, 53, 0.60) 0%, rgba(10, 69, 117, 0.55) 55%, rgba(3, 27, 53, 1) 100%);
	z-index: 1;
	pointer-events: none;
}
.scheda-booking--photo > :not(.scheda-booking__video) { position: relative; z-index: 2; }
.scheda-booking__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.scheda-booking__inner { max-width: var(--container-max); margin: 0 auto; display: flex; gap: 64px; align-items: center; }
.scheda-booking__text { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.scheda-booking__title { font-size: 48px; color: var(--white); line-height: 1; }
.scheda-booking__sub { font-size: 15px; color: var(--white-70); line-height: 1.6; }
.scheda-booking__wa { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: var(--white); padding: 12px 24px; border-radius: var(--radius-pill); font-size: 14px; font-weight: var(--fw-semibold); width: fit-content; }
.scheda-booking__form { width: 420px; flex-shrink: 0; background: var(--navy-dark-2); border-radius: var(--radius-card-md); padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.scheda-booking__form-title { font-family: var(--font-body); font-size: 18px; font-weight: var(--fw-bold); color: var(--white); }
.scheda-booking__field { background: var(--navy-card); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 12px 16px; font-family: var(--font-body); font-size: 14px; color: var(--white); width: 100%; outline: none; }
.scheda-booking__field::placeholder { color: var(--white-60); }
.scheda-booking__field:focus { border-color: var(--cyan); }
.scheda-booking__field--textarea { resize: none; min-height: 70px; }
.scheda-booking__row { display: flex; gap: 8px; }
.scheda-booking__row .scheda-booking__field { flex: 1; }
.scheda-booking__row--tel .scheda-booking__prefijo { flex: 0 0 108px; min-width: 0; padding-right: 8px; }
.scheda-booking__field option { background: var(--navy-card); color: var(--white); }
.scheda-booking__field--error { border-color: #fca5a5 !important; }
.scheda-booking__field-error { display: block; font-size: 12px; color: #fca5a5; margin-top: 4px; }
.scheda-booking__submit { padding: 14px 28px; border-radius: var(--radius-pill); font-size: 15px; width: 100%; }
.scheda-booking__submit:disabled { opacity: .6; cursor: not-allowed; }
.scheda-booking__feedback { margin-top: 12px; padding: 12px 16px; border-radius: 8px; font-size: 14px; line-height: 1.5; text-align: center; }
.scheda-booking__feedback--success { background: rgba(34,197,94,0.15); color: #86efac; }
.scheda-booking__feedback--error { background: rgba(220,38,38,0.15); color: #fca5a5; }

.scheda-similar { background: var(--navy-dark-1); padding: 48px var(--section-px) 64px; }
.scheda-similar__inner { max-width: var(--container-max); margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
.scheda-similar__title { font-size: 40px; color: var(--white); }
.scheda-similar__grid { padding-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ==========================================================================
   Homepage — front-page.php (Figma frame 15:2, spaziature da design-tokens.md)
   ========================================================================== */
.home-hero {
	position: relative;
	overflow: hidden;
	/* Bg inline da front-page.php = poster/lazy + fallback mobile; scrim in ::before (copre anche il video) */
	background: linear-gradient(180deg, var(--navy-dark-1) 0%, var(--navy-mid) 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	/* top maggiorato: l'header fluttuante passa sopra l'hero */
	padding: 200px var(--section-px) 150px;
	text-align: center;
}
.home-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.home-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(3, 27, 53, 0.38) 0%, rgba(10, 69, 117, 0.30) 100%);
	z-index: 1;
	pointer-events: none;
}
/* Fade in coda alla hero verso il colore esatto della sezione successiva
   (.home-intent, --navy) — le due sezioni si leggono come un continuo
   invece di un taglio netto. */
.home-hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 200px;
	background: linear-gradient(180deg, transparent 0%, var(--navy) 100%);
	z-index: 1;
	pointer-events: none;
}
.home-hero > :not(.home-hero__video) { position: relative; z-index: 2; }
.home-hero__badge {
	font-size: 13px;
	font-weight: var(--fw-bold);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--cyan);
	border: 1.5px solid var(--cyan);
	border-radius: var(--radius-pill);
	padding: 8px 18px;
}
.home-hero__title { font-size: 104px; color: var(--white); white-space: nowrap; }
.home-hero__sub { font-size: 19px; line-height: 1.5; color: var(--white-80); max-width: 560px; }
.home-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.home-hero__trust { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; list-style: none; margin: 0; padding: 0; font-size: 13px; font-weight: var(--fw-semibold); color: var(--white-70); }

.home-intent { background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 70%, var(--navy-dark-1) 100%); padding: 90px var(--section-px); display: flex; flex-direction: column; align-items: center; gap: 48px; }
/* Sezioni leggermente più alte su Como Funciona (page-id-58) e Contacto
   (page-id-60, un po' più di Como Funciona) — scoping via page-id (WP lo
   genera di default, entrambe usano page-template-default) invece di una
   classe, così copre anche "Elige tu camino" nel partial condiviso
   intent-cards.php senza toccarlo. Homepage/Alquiler restano invariati. */
.page-id-58 .home-intent { padding-top: 120px; padding-bottom: 120px; }
.page-id-60 .home-intent { padding-top: 150px; padding-bottom: 150px; }
.home-intent__title { font-size: 56px; color: var(--white); text-align: center; }
.home-intent__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; width: 100%; max-width: 1080px; }
.intent-card {
	background: var(--navy-card);
	border-radius: var(--radius-card-lg);
	padding: 0 44px 44px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 2px solid transparent;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.intent-card--no-slider { padding-top: 44px; }
.intent-card__slider {
	width: calc(100% + 88px);
	margin: 0 -44px;
	height: 160px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
	mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
}
.intent-card__slider-track { display: flex; width: max-content; height: 100%; gap: 6px; animation: intent-slide 22s linear infinite; }
.intent-card__slider-track img { width: 220px; height: 160px; object-fit: cover; flex-shrink: 0; }
@keyframes intent-slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .intent-card__slider-track { animation: none; } }
.intent-card:hover {
	transform: translateY(-6px);
	border-color: var(--cyan);
	background: var(--navy-mid);
	box-shadow: 0 12px 40px rgba(70, 237, 253, 0.25);
}
.intent-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(70, 237, 253, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, background 0.25s ease;
}
.intent-card__icon svg { width: 26px; height: 26px; color: var(--cyan); stroke-width: 2; }
.intent-card:hover .intent-card__icon { transform: scale(1.1); background: rgba(70, 237, 253, 0.22); }
.intent-card__title { font-size: 38px; color: var(--white); }
.intent-card__desc { font-size: 16px; line-height: 1.5; color: var(--white-75); }
.intent-card__checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 15px; font-weight: var(--fw-semibold); color: var(--white-85); }
.intent-card__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.intent-card__pill { font-size: 13px; font-weight: var(--fw-semibold); color: var(--white); padding: 6px 14px; border-radius: 999px; border: 1.5px solid var(--white-40); white-space: nowrap; }
.intent-card--excursion .intent-card__pill { border-color: rgba(70, 237, 253, 0.4); }
.intent-card__price { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 34px; color: var(--cyan); }
.intent-card__cta { margin-top: auto; align-self: stretch; }

.home-flota { background: linear-gradient(180deg, var(--navy-dark-1) 0%, var(--navy-dark-1) 70%, var(--navy-dark-2) 100%); padding: 90px var(--section-px); display: flex; flex-direction: column; align-items: center; gap: 40px; }
.home-flota__title { font-size: 56px; color: var(--white); text-align: center; }
.home-flota__grid { padding-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; width: 100%; max-width: var(--container-max); }
.home-flota__more { font-size: 16px; font-weight: var(--fw-semibold); color: var(--cyan); }
.home-flota__more:hover { text-decoration: underline; }

/* Reseñas — carrello scroll orizzontale, stessa struttura di Ananoè
   (review-card con avatar/stelle/testo) ma su design system Zodrid. */
.home-reviews { background: linear-gradient(180deg, var(--navy-dark-2) 0%, var(--navy-dark-2) 70%, var(--navy) 100%); padding: 90px var(--section-px); display: flex; flex-direction: column; align-items: center; gap: 40px; }
.home-reviews__header { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; max-width: var(--container-max); }
.home-reviews__title { font-size: 56px; color: var(--white); }
.home-reviews__score { font-size: 15px; font-weight: var(--fw-semibold); color: var(--white-80); white-space: nowrap; }
.home-reviews__score strong { font-family: var(--font-display); font-weight: var(--fw-extrabold); font-size: 20px; color: var(--cyan); }
.home-reviews__slider-outer { width: 100%; max-width: var(--container-max); display: flex; flex-direction: column; gap: 24px; align-items: center; }
.home-reviews__slider {
	width: 100%;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	/* Fade sul bordo destro: suggerisce che ci sono altre card oltre il
	   taglio. Mask (non overlay) così funziona su qualunque sfondo —
	   stessa tecnica di .intent-card__slider. */
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 96px), transparent 100%);
	mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 96px), transparent 100%);
}
.home-reviews__slider::-webkit-scrollbar { display: none; }
.home-reviews__track { display: flex; gap: 20px; }
.review-card { flex: 0 0 340px; background: var(--navy-card); border-radius: var(--radius-card-md); overflow: hidden; }
.review-card__photo { height: 180px; overflow: hidden; }
.review-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.review-card__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.review-card__author { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--navy-placeholder); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: var(--fw-bold); font-size: 14px; flex-shrink: 0; }
.review-card__name { font-family: var(--font-body); font-size: 14px; font-weight: var(--fw-semibold); color: var(--white); display: block; }
.review-card__date { font-size: 12px; color: var(--white-60); }
.review-card__stars { color: var(--cyan); font-size: 14px; letter-spacing: 1px; }
.review-card__text { font-size: 14px; line-height: 1.6; color: var(--white-75); }
.home-reviews__arrows { display: flex; gap: 8px; }
.reviews-arrow { width: 44px; height: 44px; border-radius: var(--radius-pill); border: 1px solid var(--white-40); background: transparent; color: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition-fast); }
.reviews-arrow:hover { background: var(--navy-card); }
.reviews-arrow svg { width: 18px; height: 18px; }

.home-pasos { background: linear-gradient(180deg, var(--navy) 0%, var(--navy) 70%, var(--navy-dark-1) 100%); padding: 90px var(--section-px); display: flex; flex-direction: column; align-items: center; gap: 48px; }
.home-pasos__title { font-size: 56px; color: var(--white); text-align: center; }
.home-pasos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 100%; max-width: var(--container-max); }
.paso { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.paso:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 32px;
	left: calc(50% + 40px);
	width: calc(100% - 80px);
	border-top: 2px dashed rgba(70, 237, 253, 0.35);
	z-index: 0;
}
.paso__badge {
	position: relative;
	z-index: 1;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 2px solid var(--cyan);
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.paso:hover .paso__badge { transform: scale(1.08); box-shadow: 0 0 24px rgba(70, 237, 253, 0.4); }
.paso__num { font-size: 26px; color: var(--cyan); }
.paso__head { display: flex; align-items: center; gap: 8px; }
.paso__icon { width: 18px; height: 18px; color: var(--cyan); flex-shrink: 0; }
.paso__name { font-family: var(--font-body); font-size: 20px; font-weight: var(--fw-bold); color: var(--white); }
.paso__desc { font-size: 15px; line-height: 1.55; color: var(--white-70); max-width: 280px; }

.home-faq { background: var(--navy-dark-1); padding: 90px 240px; display: flex; flex-direction: column; gap: 40px; }
.home-faq__title { font-size: 56px; color: var(--white); text-align: center; }
.home-faq__list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--navy-card); border-radius: var(--radius-item); padding: 0 24px; }
.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	font-size: 17px;
	font-weight: var(--fw-semibold);
	color: var(--white);
	cursor: pointer;
	list-style: none;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__toggle { font-size: 22px; font-weight: var(--fw-bold); color: var(--cyan); flex-shrink: 0; }
.faq-item[open] .faq-item__toggle { transform: rotate(45deg); }
.faq-item__answer { padding: 0 0 20px; font-size: 15px; line-height: 1.6; color: var(--white-70); }

.home-cta {
	background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-dark-1) 100%);
	padding: 100px var(--section-px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	text-align: center;
}
.home-cta__title { font-size: 64px; color: var(--white); }
.home-cta__sub { font-size: 18px; color: var(--white-80); }
.home-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Modifier: CTA con foto di sfondo (moto+arco roccia, frame reel IG) —
   stesso schema scrim di .catalogo-hero--photo. */
.home-cta--photo {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
}
.home-cta--photo::before {
	content: '';
	position: absolute;
	inset: 0;
	/* Sfuma a navy-dark-2 pieno in fondo — stesso colore del footer sotto. */
	background: linear-gradient(180deg, rgba(3, 27, 53, 0.60) 0%, rgba(10, 69, 117, 0.55) 55%, rgba(2, 18, 36, 1) 100%);
	z-index: 1;
	pointer-events: none;
}
.home-cta--photo > :not(.home-cta__video) { position: relative; z-index: 2; }
.home-cta__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* Responsive homepage */
@media (max-width: 1024px) {
	.home-hero__title { font-size: 72px; }
	.home-flota__grid { grid-template-columns: repeat(2, 1fr); }
	.home-faq { padding: 90px var(--section-px); }
}
/* Header mobile: nav collassata in pannello sotto la barra, burger a destra */
@media (max-width: 900px) {
	.site-header { top: 10px; width: calc(100% - 20px); padding: 8px 16px; }
	.site-logo img { height: 52px; }
	.header-actions { gap: 8px; }
	.header-actions__lang { display: none; }
	.header-actions .btn { padding: 10px 18px; font-size: 13px; }
	.nav-toggle { display: flex; }
	.main-nav {
		display: none;
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: rgba(6, 42, 79, 0.92);
		-webkit-backdrop-filter: blur(16px) saturate(1.4);
		backdrop-filter: blur(16px) saturate(1.4);
		border: 1px solid rgba(255, 255, 255, 0.10);
		border-radius: var(--radius-card-lg);
		box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
		padding: 12px;
	}
	.nav-open .main-nav { display: flex; }
	.main-nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
	.main-nav .nav-list a { display: block; padding: 14px 12px; font-size: 16px; border-radius: 12px; }
	.main-nav .nav-list a:hover { background: rgba(255, 255, 255, 0.06); }
	.main-nav__lang { display: block; padding: 10px 12px 4px; border-top: 1px solid rgba(255, 255, 255, 0.10); margin-top: 8px; }
}

@media (max-width: 768px) {
	.home-hero { padding: 130px 24px 64px; }
	.home-hero__title { font-size: 52px; white-space: normal; }
	.home-intent, .home-flota, .home-pasos, .home-cta, .home-reviews { padding-left: 24px; padding-right: 24px; }
	.home-intent__cards { grid-template-columns: 1fr; }
	.home-intent__cards .intent-card--excursion { order: 1; }
	.home-intent__cards .intent-card:not(.intent-card--excursion) { order: 0; }
	.home-pasos__grid { grid-template-columns: 1fr; }
	.paso::after { display: none; }
	.home-intent__title, .home-flota__title, .home-pasos__title, .home-faq__title, .home-reviews__title { font-size: 40px; }
	.home-cta__title { font-size: 42px; }
	.home-faq { padding: 64px 24px; }
	.intent-card { padding: 0 28px 28px; }
	.intent-card--no-slider { padding-top: 28px; }
	.intent-card__slider { width: calc(100% + 56px); margin: 0 -28px; height: 120px; }
	.intent-card__slider-track img { width: 170px; height: 120px; }
	.home-reviews__header { flex-direction: column; align-items: flex-start; gap: 12px; }
	.review-card { flex-basis: 280px; }
}
@media (max-width: 560px) {
	.home-flota__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Scheda modello — arricchimenti (chips, incluido, pasos, trust)
   ========================================================================== */
.scheda-chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 8px; }
.scheda-chip {
	background: var(--navy-card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-item);
	padding: 14px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}
.scheda-chip__icon { display: flex; }
.scheda-chip__icon svg { width: 20px; height: 20px; color: var(--cyan); stroke-width: 2; }
.scheda-chip__value { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: 16px; color: var(--cyan); }
.scheda-chip__label { font-size: 11px; color: var(--white-60); text-transform: uppercase; letter-spacing: 0.5px; }

.scheda-incluido { display: flex; flex-direction: column; gap: 12px; }
.scheda-incluido__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; font-size: 15px; font-weight: var(--fw-semibold); color: var(--white-85); }

.scheda-descrizione__text strong { color: var(--cyan); }

.scheda-price__trust { font-size: 12px; color: var(--white-60); text-align: center; margin: 0; }

/* Torna a navy-dark-1 sopra/sotto (scheda-page e lo scrim di
   scheda-booking--photo sono entrambi navy-dark-1), navy resta nel mezzo
   per profondità — stesso schema di .catalogo-hero. */
.scheda-pasos { background: linear-gradient(180deg, var(--navy-dark-1) 0%, var(--navy) 50%, var(--navy-dark-1) 100%); padding: 72px var(--section-px); display: flex; flex-direction: column; align-items: center; }
.scheda-pasos__inner { max-width: var(--container-max); width: 100%; display: flex; flex-direction: column; gap: 40px; }
.scheda-pasos__title { font-size: 44px; color: var(--white); }

@media (max-width: 768px) {
	.scheda-chips { grid-template-columns: repeat(2, 1fr); }
	.scheda-incluido__list { grid-template-columns: 1fr; }
	.scheda-pasos { padding: 56px 24px; }
	.scheda-pasos__title { font-size: 34px; }
}

/* Scheda modello — mobile: la colonna sidebar (380px fissa) e il form
   booking (420px fisso) non avevano NESSUN breakpoint, su mobile la
   sidebar stava accanto al contenuto invece di andare sotto (overflow
   orizzontale, layout rotto). */
@media (max-width: 900px) {
	.scheda-content { padding: 24px 24px 40px; }
	.scheda-content__inner { flex-direction: column; gap: 32px; }
	.scheda-sidebar { width: 100%; position: static; }
}
@media (max-width: 768px) {
	.scheda-header { padding: 12px 24px; }
	.scheda-gallery { flex-direction: column; }
	.scheda-gallery__thumbs { flex-direction: row; width: 100%; overflow-x: auto; }
	.scheda-gallery__thumb { width: 72px; flex-shrink: 0; }
	.scheda-specs__title { font-size: 30px; }
	.scheda-booking { padding: 48px 24px; }
	.scheda-booking__inner { flex-direction: column; gap: 32px; }
	.scheda-booking__title { font-size: 34px; }
	.scheda-booking__form { width: 100%; }
	.scheda-similar { padding: 40px 24px 48px; }
	.scheda-similar__title { font-size: 30px; }
	.scheda-similar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.scheda-similar__grid { grid-template-columns: 1fr; }
}

/* Viewer 3D scheda (model-viewer, solo se esiste il GLB del modello) */
.scheda-gallery__main--3d { position: relative; background: radial-gradient(ellipse at center, rgba(70, 237, 253, 0.10) 0%, var(--navy-card) 70%); }
.scheda-gallery__main--3d model-viewer { width: 100%; height: 100%; --poster-color: transparent; }
.scheda-gallery__badge360 {
	position: absolute;
	bottom: 12px;
	left: 12px;
	font-size: 11px;
	font-weight: var(--fw-semibold);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--cyan);
	background: rgba(2, 18, 36, 0.65);
	border: 1px solid rgba(70, 237, 253, 0.35);
	border-radius: var(--radius-pill);
	padding: 6px 12px;
	pointer-events: none;
}

/* Area personale: pannello riservato, niente chrome del sito pubblico —
   header/footer nascosti (body class automatica dal Template Name). */
.page-template-area-personale .site-header,
.page-template-area-personale .site-footer { display: none; }

/* Widget WhatsApp flottante — stesso pattern di tutti i siti agenzia (soultattoo) */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 99; display: flex; align-items: center; gap: 12px; }
.whatsapp-float__tooltip {
	background: #fff; color: #333; padding: 8px 14px; border-radius: 8px;
	font-family: var(--font-body); font-size: 12px; font-weight: var(--fw-semibold);
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	opacity: 0; transform: translateX(10px); transition: opacity 0.3s, transform 0.3s;
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; transform: translateX(0); }
.whatsapp-float__btn {
	width: 60px; height: 60px; border-radius: 50%; background: #25d366;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 12px rgba(37,211,102,0.4); transition: transform 0.2s;
}
.whatsapp-float__btn:hover { transform: scale(1.1); }
.whatsapp-float__btn svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 768px) {
	.whatsapp-float__btn { width: 52px; height: 52px; }
	.whatsapp-float__btn svg { width: 28px; height: 28px; }
	.whatsapp-float__tooltip { display: none; }
}
