/* Font self-hosted (come l'originale: Playfair Display + Roboto) */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400 800; font-display: swap; src: url('../fonts/playfair-display.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400 800; font-display: swap; src: url('../fonts/playfair-display-italic.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 300 700; font-display: swap; src: url('../fonts/roboto.woff2') format('woff2'); }

/* =========================================================================
   Sirentum — foglio di stile principale
   Indice: 1 Token · 2 Reset · 3 Base · 4 Utility · 5 Bottoni · 6 Header
   7 Footer · 8 Effetti · 9 Hero/Slider · 10 Sezioni · 11 Camere
   12 Camera singola · 13 Form & modale · 14 Pagine/entry · 15 Responsive
   ========================================================================= */

/* 1) TOKEN ---------------------------------------------------------------- */
:root {
	--ink: #2c3f58;
	--ink-soft: #5a6a82;
	--sea: #15788c;
	--sea-dark: #0d5360;
	--gold: #c9a96a;
	--gold-dark: #b08f4f;
	--indigo: #5b62c7;
	--cream: #f7f2e9;
	--cream-2: #efe7d8;
	--white: #ffffff;
	--night: #15252c;
	--night-2: #1d333c;
	--line: rgba(32, 48, 58, 0.12);
	--line-light: rgba(255, 255, 255, 0.22);

	--font-sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

	--header-h: 5rem;
	--wrap: 1200px;
	--wrap-narrow: 760px;
	--radius: 4px;
	--radius-lg: 10px;
	--shadow: 0 18px 40px -24px rgba(16, 40, 50, 0.45);
	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--t: 0.4s var(--ease);
}

/* 2) RESET --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
ul[class], ol[class] { list-style: none; padding: 0; }
a { color: var(--sea-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* 3) BASE ---------------------------------------------------------------- */
body {
	font-family: var(--font-sans);
	color: var(--ink);
	background: var(--white);
	line-height: 1.7;
	font-size: 1.0625rem;
	-webkit-font-smoothing: antialiased;
}
body:not(.has-hero) { padding-top: var(--header-h); }
body.nav-open { overflow: hidden; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.12; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* 4) UTILITY ------------------------------------------------------------- */
.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
.wrap--narrow { --wrap: var(--wrap-narrow); }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: absolute; left: -9999px; z-index: 1000; }
.skip-link:focus {
	left: 1rem; top: 1rem; background: var(--white); color: var(--ink);
	padding: 0.6rem 1rem; border-radius: var(--radius);
}
.eyebrow {
	display: inline-block; font-family: var(--font-sans); font-size: 0.78rem;
	letter-spacing: 0.22em; text-transform: uppercase; color: var(--indigo);
	margin-bottom: 0.75rem;
}

/* 5) BOTTONI ------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background: var(--gold); color: var(--white);
	padding: 0.85rem 1.7rem; border: 1px solid var(--gold); border-radius: 5rem;
	font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em; text-decoration: none;
	box-shadow: 0 14px 36px rgba(201, 169, 106, 0.22);
	transition: background var(--t), color var(--t), border-color var(--t), transform 0.15s var(--ease);
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn:active { transform: scale(0.98); }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(44, 63, 88, 0.4); box-shadow: none; }
.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--gold { background: var(--gold); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--lg { padding: 1rem 2.1rem; font-size: 1rem; }

/* 6) HEADER -------------------------------------------------------------- */
.site-header {
	position: fixed; inset: 0 0 auto 0; z-index: 100;
	background: var(--white); color: var(--ink);
	border-bottom: 1px solid var(--line);
	transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.site-brand__logo { display: inline-flex; align-items: center; text-decoration: none; color: inherit; font-family: var(--font-serif); font-size: 1.5rem; letter-spacing: 0.18em; text-transform: uppercase; }
.site-brand__logo img, .site-brand__logo svg { max-height: 2.4rem; width: auto; }

.site-header.is-scrolled { box-shadow: var(--shadow); }
/* Top bar bianca su tutte le pagine (logo a colori). */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.site-nav { display: flex; align-items: center; }
.menu { display: flex; gap: 1.75rem; align-items: center; }
.menu a { color: inherit; text-decoration: none; font-size: 0.98rem; letter-spacing: 0.02em; position: relative; padding: 0.25rem 0; }
.menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: currentColor; transition: width var(--t); }
.menu a:hover::after, .menu .current-menu-item > a::after { width: 100%; }
.menu .menu-item-cta a, .menu li.cta a {
	background: var(--gold); color: var(--white); padding: 0.55rem 1.1rem; border-radius: 5rem;
}
.menu .menu-item-cta a::after { display: none; }

.nav-toggle { display: none; background: none; border: 0; padding: 0.5rem; color: inherit; }
.nav-toggle__box { display: block; width: 26px; height: 14px; position: relative; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
	content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform var(--t), opacity var(--t);
}
.nav-toggle__bar { top: 6px; }
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-6px) rotate(-45deg); }

/* 7) FOOTER -------------------------------------------------------------- */
.site-footer { background: var(--night); color: rgba(255, 255, 255, 0.82); margin-top: 0; }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding: 4rem 0 2.5rem; }
.site-footer a { color: #fff; }
.site-footer__brand .site-brand__logo { color: #fff; }
.site-footer__brand .site-brand__logo img, .site-footer__brand .site-brand__logo svg { max-height: 2.6rem; }
.site-footer__tagline { font-family: var(--font-serif); font-size: 1.15rem; margin-top: 1rem; color: rgba(255,255,255,0.7); }
.site-footer__title { color: #fff; font-size: 1.1rem; margin-bottom: 0.75rem; }
.site-footer address { font-style: normal; line-height: 1.9; }
.menu--footer { flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.site-footer__bottom { border-top: 1px solid var(--line-light); padding: 1.25rem 0; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* 8) EFFETTI ------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.split-title .word { display: inline-block; opacity: 0; transform: translateY(0.6em); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); transition-delay: calc(var(--i, 0) * 60ms); }
.split-title.is-visible .word { opacity: 1; transform: none; }

/* Senza JS: niente effetti, contenuto visibile */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .split-title .word { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal, .split-title .word { opacity: 1 !important; transform: none !important; transition: none !important; }
	* { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* 9) HERO / SLIDER ------------------------------------------------------- */
.hero { position: relative; height: 100svh; min-height: 560px; }
.hero-swiper, .hero-swiper .swiper-wrapper, .hero .swiper-slide { height: 100%; }
/* Curvatura bianca alla base (come l'originale: section-edge.svg) */
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; padding-bottom: 6%; background: url('../img/section-edge.svg') center bottom / 100% 100% no-repeat; z-index: 4; pointer-events: none; }
.hero .hero-slide { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding-top: var(--header-h); }
.hero-slide__bg { position: absolute; top: -28%; left: 0; width: 100%; height: 156%; object-fit: cover; z-index: 0; }
.hero-slide::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,30,38,0.35), rgba(10,30,38,0.55)); }
.hero-slide__inner { position: relative; z-index: 2; text-align: center; color: #fff; width: min(100% - 3rem, 900px); }
.hero-slide__eyebrow { color: rgba(255,255,255,0.85); letter-spacing: 0.25em; text-transform: uppercase; font-size: 0.8rem; }
.hero-slide__title { color: #fff; font-size: clamp(3rem, 7.6vw, 7.5rem); font-weight: 700; line-height: 1.04; margin: 0.5rem 0; }
.hero-slide__subtitle { color: rgba(255,255,255,0.92); font-size: clamp(1.05rem, 2vw, 1.4rem); }
.hero-slide__cta { margin-top: 2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 3; color: #fff; text-decoration: none; letter-spacing: 0.18em; font-size: 0.72rem; text-transform: uppercase; display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hero__scroll::after { content: ""; width: 1px; height: 38px; background: rgba(255,255,255,0.7); animation: heroScroll 1.8s var(--ease) infinite; }
@keyframes heroScroll { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero .swiper-pagination-bullet { background: #fff; opacity: 0.5; }
.hero .swiper-pagination-bullet-active { opacity: 1; }
.hero .swiper-button-next, .hero .swiper-button-prev { color: #fff; }

/* Modulo date sovrapposto alla base dell'hero (stile originale) */
.date-bar-wrap { position: relative; z-index: 6; margin-top: -3.5rem; padding: 0 1.5rem; }
.date-bar { max-width: 1040px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); box-shadow: 0 28px 60px -28px rgba(16, 40, 50, 0.5); display: grid; grid-template-columns: 1fr 1fr 0.9fr auto; align-items: stretch; }
.date-bar__field { position: relative; display: flex; flex-direction: column; justify-content: center; gap: 0.4rem; padding: 1.5rem 1.75rem; }
.date-bar__field + .date-bar__field::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line); transform: skewX(-14deg); }
.date-bar__field label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.date-bar__input { width: 100%; border: 0; background: transparent; padding: 0 1.2rem 0 0; height: auto; font-size: 1.05rem; color: var(--ink); font-family: var(--font-sans); appearance: none; -webkit-appearance: none; cursor: pointer; }
.date-bar__input:focus { outline: none; }
.date-bar__input::placeholder { color: var(--ink-soft); opacity: 1; }
.date-bar__field::after { content: ""; position: absolute; right: 1.75rem; bottom: 1.85rem; width: 7px; height: 7px; border-right: 1.5px solid var(--ink-soft); border-bottom: 1.5px solid var(--ink-soft); transform: rotate(45deg); pointer-events: none; }
.date-bar__btn { display: flex; align-items: center; justify-content: center; text-align: center; background: var(--gold); color: #fff; border: 0; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; margin: 0; padding: 0 2.4rem; font-weight: 500; font-size: 1.02rem; letter-spacing: 0.02em; cursor: pointer; transition: background var(--t); }
.date-bar__btn:hover { background: var(--gold-dark); }
/* Progress bar dell'autoplay: sotto l'header, in sovraimpressione sull'hero, a tutta larghezza */
.hero__progress { position: absolute; left: 0; right: 0; top: 0; height: 4px; z-index: 6; overflow: hidden; pointer-events: none; background: rgba(255, 255, 255, 0.25); }
.hero__progress span { display: block; height: 100%; width: 100%; background: var(--gold); transform-origin: left center; transform: scaleX(0); }
@media (max-width: 760px) { .date-bar { grid-template-columns: 1fr; } .date-bar__field + .date-bar__field::before { display: none; } .date-bar__field { border-top: 1px solid var(--line); } .date-bar__btn { margin: 0; border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 1rem; } .date-bar-wrap { margin-top: -2rem; } }

/* 10) SEZIONI ------------------------------------------------------------ */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--night); color: rgba(255,255,255,0.85); }
.section__head { max-width: 680px; margin: 0 auto 3rem; text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section-intro { color: var(--ink-soft); font-size: 1.1rem; }

.home-intro-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; align-items: start; }
.home-intro-cols__head .section-title { margin-top: 0.4rem; }
.home-intro-cols__body { color: var(--ink-soft); font-size: 1.05rem; }
.home-intro-cols__body p { margin-bottom: 1.1rem; }

/* 11) CAMERE (lista) ----------------------------------------------------- */
.camere-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 2rem; }
.camera-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--t), box-shadow var(--t); }
.camera-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.camera-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.camera-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.camera-card:hover .camera-card__media img { transform: scale(1.05); }
.camera-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.camera-card__title { font-size: 1.4rem; }
.camera-card__title a { color: inherit; text-decoration: none; }
.camera-card__claim { color: var(--ink-soft); }
.camera-card__meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; color: var(--ink-soft); font-size: 0.9rem; margin-top: auto; padding-top: 0.6rem; }
.camera-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }

.camera-prezzo { font-family: var(--font-serif); }
.camera-prezzo__da { font-size: 0.8rem; color: var(--ink-soft); }
.camera-prezzo__val { font-size: 1.5rem; color: var(--sea-dark); }
.camera-prezzo__nota { display: block; font-family: var(--font-sans); font-size: 0.78rem; color: var(--ink-soft); }

/* 12) CAMERA SINGOLA ----------------------------------------------------- */
.camera-hero { position: relative; height: 70vh; min-height: 440px; display: grid; place-items: end center; overflow: hidden; }
.camera-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.camera-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,30,38,0.1), rgba(10,30,38,0.6)); }
.camera-hero__inner { position: relative; z-index: 2; color: #fff; text-align: center; padding-bottom: 3rem; }
.camera-hero__title { color: #fff; }
.camera-hero__claim { color: rgba(255,255,255,0.9); }

.camera-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; padding: clamp(2.5rem, 6vw, 5rem) 0; }
.camera-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.25rem 0; border-block: 1px solid var(--line); margin-bottom: 1.5rem; }
.camera-meta__item { display: flex; flex-direction: column; }
.camera-meta__item strong { font-family: var(--font-serif); font-size: 1.3rem; }
.camera-meta__item span { font-size: 0.85rem; color: var(--ink-soft); }
.camera-servizi { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem 1.5rem; margin: 1.5rem 0; }
.camera-servizi li { display: flex; align-items: center; gap: 0.6rem; }
.camera-servizi svg { width: 20px; height: 20px; flex: none; color: var(--sea); }

.camera-side { position: sticky; top: calc(var(--header-h) + 1.5rem); background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; }
.camera-side .camera-prezzo { display: block; margin-bottom: 1.25rem; }
.camera-side .btn { width: 100%; justify-content: center; }

.camera-galleria { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 0.75rem; }
.camera-galleria__item { display: block; aspect-ratio: 3 / 2; overflow: hidden; border-radius: var(--radius); cursor: zoom-in; }
.camera-galleria__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.camera-galleria__item:hover img { transform: scale(1.05); }
.camera-galleria__item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Lightbox galleria (vanilla) */
html.lb-open { overflow: hidden; }
.lb { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s; }
.lb.is-open { opacity: 1; visibility: visible; }
.lb__backdrop { position: absolute; inset: 0; background: rgba(8, 18, 22, 0.93); }
.lb__stage { position: relative; z-index: 1; margin: 0; display: flex; flex-direction: column; align-items: center; max-width: 92vw; }
.lb__img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.85); }
.lb__caption { color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; margin-top: 0.85rem; text-align: center; max-width: 92vw; }
.lb__close { position: absolute; top: 0.75rem; right: 1rem; z-index: 3; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background var(--t); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background var(--t); }
.lb__prev { left: 1rem; }
.lb__next { right: 1rem; }
.lb__close:hover, .lb__nav:hover { background: rgba(255, 255, 255, 0.26); }
.lb__close:focus-visible, .lb__nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.lb__counter { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255, 255, 255, 0.8); font-size: 0.85rem; letter-spacing: 0.08em; }
@media (max-width: 640px) {
	.lb__img { max-width: 96vw; max-height: 76vh; }
	.lb__nav { width: 44px; height: 44px; font-size: 1.8rem; background: rgba(255, 255, 255, 0.18); }
	.lb__prev { left: 0.4rem; }
	.lb__next { right: 0.4rem; }
}
@media (prefers-reduced-motion: reduce) {
	.lb { transition: none; }
	.lb__close, .lb__nav, .camera-galleria__item img { transition: none; }
}

/* 13) FORM & MODALE ------------------------------------------------------ */
.form-richiesta { display: grid; gap: 1rem; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label { font-size: 0.85rem; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
	width: 100%; padding: 0.7rem 0.85rem; background: var(--white);
	border: 1px solid var(--line); border-radius: var(--radius); transition: border-color var(--t), box-shadow var(--t);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
	outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(21,120,140,0.15);
}
.form-field--invalid input, .form-field--invalid select, .form-field--invalid textarea { border-color: #c0392b; }
.form-field__error { color: #c0392b; font-size: 0.8rem; }
.form-consenso { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft); }
.form-consenso input { margin-top: 0.3rem; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-message { padding: 0.85rem 1rem; border-radius: var(--radius); font-size: 0.95rem; }
.form-message--ok { background: #e6f4ec; color: #1d6b40; }
.form-message--error { background: #fbeaea; color: #a3271f; }
.form-success { text-align: center; padding: 1rem 0; }
.form-success__icon { width: 56px; height: 56px; margin: 0 auto 1rem; color: var(--sea); }

dialog.modal-richiesta { width: min(100% - 2rem, 560px); margin: auto; max-height: calc(100dvh - 2rem); overflow: auto; border: 0; border-radius: var(--radius-lg); padding: 0; box-shadow: var(--shadow); }
dialog.modal-richiesta::backdrop { background: rgba(12, 28, 34, 0.55); }
.modal__inner { padding: 2rem; }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; }
.modal__title { font-size: 1.5rem; }
.modal__close { background: none; border: 0; font-size: 1.5rem; line-height: 1; color: var(--ink-soft); }

/* 14) PAGINE / ENTRY ----------------------------------------------------- */
.entry--page { padding: clamp(2rem, 5vw, 4rem) 0; }
.entry-title { margin-bottom: 1.5rem; }
.entry-content :is(h2, h3) { margin-top: 2rem; margin-bottom: 0.75rem; }
.entry-content ul, .entry-content ol { margin: 0 0 1rem 1.25rem; }
.page-header { text-align: center; margin-bottom: 2.5rem; }

.posizione__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.posizione__item { text-align: center; }
.posizione__item strong { display: block; font-family: var(--font-serif); font-size: 1.6rem; color: var(--sea-dark); }
.cta-band { background: var(--ink); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; }

.contatti-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contatti-list { margin: 1.5rem 0; display: grid; gap: 1rem; }
.contatti-list strong { color: var(--ink); }
.contatti-map { margin-top: 1.5rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.contatti-map iframe { display: block; }

/* 15) RESPONSIVE --------------------------------------------------------- */
@media (max-width: 860px) {
	.nav-toggle { display: inline-flex; align-items: center; }
	.site-nav .menu {
		position: fixed; inset: var(--header-h) 0 0 0; flex-direction: column; justify-content: center;
		gap: 1.5rem; background: var(--white); color: var(--ink); transform: translateX(100%);
		transition: transform var(--t); font-size: 1.2rem;
	}
	.site-nav.is-open .menu { transform: none; }
	.has-hero .site-nav .menu { color: var(--ink); }
	.camera-layout { grid-template-columns: 1fr; }
	.camera-side { position: static; }
	.home-intro--media { grid-template-columns: 1fr; }
	.home-intro-cols { grid-template-columns: 1fr; gap: 1.25rem; }
	.site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
	.form-row { grid-template-columns: 1fr; }
	.contatti-grid { grid-template-columns: 1fr; }
}
