/* ==========================================================================
   Settemari Ponza — stylesheet (editorial redesign)
   Ispirazione: minimalismo editoriale, molto bianco, fasce alternate,
   capitoli numerati. Brand: navy #0C2D6D, rosso #F80000 (accento parco),
   off-white sabbia. Titoli serif (Fraunces) + corpo Rubik.
   ========================================================================== */

:root {
	--navy: #0C2D6D;
	--red: #F80000;
	--text: #54595F;
	--body: #5b636d;
	--cyan: #C8F0F7;
	--cyan-soft: #eef9fc;
	--sand: #F7F3EC;
	--line: #e7e2d8;
	--ink: #141414;
	--white: #ffffff;
	--shadow: 0 18px 50px rgba(12, 45, 109, .10);
	--container: 1180px;
	--header-h: 88px;
	--font-head: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--body);
	line-height: 1.75;
	background: var(--white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red); }

h1, h2, h3 {
	font-family: var(--font-head);
	color: var(--ink);
	font-weight: 400;
	line-height: 1.14;
	letter-spacing: -.01em;
	margin: 0 0 .5em;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 820px; }

/* Eyebrow / kicker — the "— Label" editorial device */
.eyebrow {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: .22em;
	font-size: .72rem;
	font-weight: 600;
	color: var(--red);
	margin: 0 0 18px;
}
.eyebrow::before { content: "— "; color: var(--red); }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: .3px;
	padding: 14px 34px;
	border-radius: 40px;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-accent { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(248, 0, 0, .32); }
.btn-accent:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(248, 0, 0, .42); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* Editorial hero + text links */
.btn-hero {
	display: inline-block;
	font-weight: 600;
	letter-spacing: .3px;
	color: #fff;
	padding: 14px 32px;
	border: 1.5px solid rgba(255, 255, 255, .75);
	border-radius: 40px;
	transition: background .25s ease, color .25s ease;
}
.btn-hero:hover { background: #fff; color: var(--navy); }
.text-link {
	font-family: var(--font-body);
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--navy);
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}
.text-link:hover { color: var(--red); }

/* ---- Header ------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.logo img { width: 210px; height: auto; }

.main-nav ul { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; }
.main-nav a {
	font-size: .82rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--navy);
	position: relative;
	padding: 6px 0;
}
.main-nav a::after {
	content: ""; position: absolute; left: 0; bottom: 0;
	width: 0; height: 1.5px; background: var(--red); transition: width .25s ease;
}
.main-nav a:hover::after { width: 100%; }

.nav-burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 26px; height: 2px; background: var(--navy); border-radius: 3px; transition: .3s; }

/* ---- Hero --------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: calc(100vh - var(--header-h));
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	color: #fff;
}
.hero-inner { max-width: 760px; padding: 60px 0 96px; }
.hero-eyebrow {
	text-transform: uppercase; letter-spacing: .24em; font-size: .76rem;
	font-weight: 600; color: #fff; margin: 0 0 20px; opacity: .95;
}
.hero-eyebrow::before { content: "— "; }
.hero h1 {
	color: #fff;
	font-size: clamp(2.3rem, 5.4vw, 4rem);
	font-weight: 400;
	letter-spacing: -.015em;
	text-shadow: 0 2px 30px rgba(0, 0, 0, .3);
	margin-bottom: .38em;
}
.hero-sub {
	font-size: clamp(1.05rem, 2vw, 1.4rem);
	font-weight: 300;
	max-width: 560px;
	margin: 0 0 2.2em;
	text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-actions .text-link { color: #fff; }
.hero-actions .text-link:hover { color: var(--cyan); }
.hero-scroll {
	position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
	color: #fff; font-size: 1.7rem; line-height: 1; animation: bob 2s infinite; opacity: .85;
}
.hero-scroll:hover { color: var(--cyan); }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(8px);} }

/* ---- Sections ----------------------------------------------------------- */
.section { padding: 118px 0; }
.section-alt { background: var(--sand); }

.section-head { max-width: 680px; margin: 0 auto 68px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin: 0; }
.section-intro { margin: .8em 0 0; color: var(--body); }

/* ---- Editorial alternating rows (escursioni / flotta) ------------------- */
.ed-rows { display: flex; flex-direction: column; gap: 96px; }
.ed-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ed-row:nth-child(even) .ed-media { order: 2; }
.ed-media { position: relative; }
.ed-media img {
	width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
	border-radius: 8px; box-shadow: var(--shadow);
}
.ed-num {
	display: block;
	font-family: var(--font-head);
	font-size: 3.4rem; line-height: 1; font-weight: 300;
	color: var(--cyan); /* faded accent number */
	margin-bottom: 14px;
}
.ed-text h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .5em; }
.ed-text p { margin: 0; }

/* ---- Split section (Ormeggio) ------------------------------------------ */
.section-split .split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split-media img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split-text p { margin-bottom: 1.8em; }

/* ---- Contatti ----------------------------------------------------------- */
.contatti-note { color: var(--red); font-weight: 500; margin: 0 0 3em; }
.section-head .contatti-note { margin-top: .8em; }
.contatti-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
.contatti-info { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.info-block { padding: 22px 4px; border-top: 1px solid var(--line); }
.info-block:nth-child(2n) { padding-left: 24px; }
.info-label {
	display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .18em;
	font-weight: 600; color: var(--red); margin-bottom: 8px;
}
.info-block p { margin: 0; color: var(--navy); font-weight: 500; font-size: 1.02rem; }
.contatti-about .about-logo { width: 240px; margin-bottom: 24px; }
.contatti-about p { margin: 0; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #fff; padding: 54px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { width: 190px; }
.footer-meta { text-align: center; }
.footer-meta p { margin: 2px 0; font-size: .9rem; opacity: .82; }
.footer-social a { color: #fff; display: inline-flex; }
.footer-social a:hover { color: var(--cyan); }

/* ---- Recensioni (TripAdvisor) ------------------------------------------ */
.reviews-section .container { text-align: center; }
.ta-summary {
	display: inline-flex; align-items: center; gap: 20px;
	margin: 0 0 50px; padding: 18px 30px;
	background: #fff; border: 1px solid var(--line); border-radius: 14px;
	box-shadow: var(--shadow); color: var(--navy); text-align: left;
}
.ta-summary:hover { color: var(--navy); box-shadow: 0 22px 55px rgba(12, 45, 109, .14); }
.ta-score { font-family: var(--font-head); font-size: 2.7rem; line-height: 1; color: var(--navy); }
.ta-score small { font-size: 1rem; color: var(--body); }
.ta-detail { display: flex; flex-direction: column; gap: 3px; }
.ta-stars { color: #f5a623; letter-spacing: 2px; font-size: 1.02rem; }
.ta-meta { font-size: .9rem; color: var(--body); }
.ta-source { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--red); font-weight: 600; }

.review-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.review-card { margin: 0; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.review-card p { margin: 0 0 16px; font-style: italic; color: var(--navy); }
.review-card cite { font-style: normal; font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--body); }
.reviews-cta { margin: 46px 0 0; }

/* ---- Video (facade click-to-play) -------------------------------------- */
.video-section { background: var(--navy); color: rgba(255, 255, 255, .85); }
.video-section .section-title { color: #fff; }
.video-section .eyebrow { color: var(--cyan); }
.video-section .eyebrow::before { color: var(--cyan); }

.video-facade {
	display: block;
	position: relative;
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	border: 0;
	padding: 0;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
}
.video-facade::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(rgba(12, 45, 109, .15), rgba(12, 45, 109, .45));
	transition: background .25s ease;
}
.video-facade:hover::after { background: linear-gradient(rgba(12, 45, 109, .10), rgba(12, 45, 109, .35)); }
.video-play {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	z-index: 1;
	width: 84px; height: 84px;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
	background: rgba(248, 0, 0, .92);
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
	padding-left: 4px;
	transition: transform .2s ease, background .2s ease;
}
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--red); }

.video-frame {
	display: block;
	width: 100%;
	max-width: 940px;
	margin: 0 auto;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 10px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
}
.video-note { text-align: center; margin: 22px 0 0; font-size: .88rem; color: rgba(255, 255, 255, .6); }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 860px) {
	.ed-row { grid-template-columns: 1fr; gap: 26px; }
	.ed-row:nth-child(even) .ed-media { order: 0; }
	.ed-num { font-size: 2.6rem; margin-bottom: 6px; }
	.section-split .split, .contatti-grid { grid-template-columns: 1fr; gap: 36px; }
	.contatti-about { order: -1; }
}

@media (max-width: 760px) {
	:root { --header-h: 72px; }
	.logo img { width: 168px; }
	.nav-burger { display: flex; }
	.main-nav {
		position: absolute; top: var(--header-h); left: 0; right: 0;
		background: #fff; border-bottom: 1px solid var(--line);
		max-height: 0; overflow: hidden; transition: max-height .3s ease;
	}
	.main-nav ul { flex-direction: column; gap: 0; padding: 6px 0; }
	.main-nav li { border-bottom: 1px solid var(--line); }
	.main-nav a { display: block; padding: 15px 28px; }
	.nav-toggle:checked ~ .main-nav { max-height: 340px; }
	.section { padding: 78px 0; }
	.section-head { margin-bottom: 46px; }
	.ed-rows { gap: 60px; }
	.contatti-info { grid-template-columns: 1fr; }
	.info-block:nth-child(2n) { padding-left: 4px; }
	.review-cards { grid-template-columns: 1fr; }
	.ta-summary { flex-wrap: wrap; justify-content: center; text-align: center; gap: 12px 18px; }
}
