/* =====================================================================
   Riseria Rancan – Isola della Scala · landing
   Palette dal mock-up di Michele (verde risaia / oro lolla / bianco chicco)
   ===================================================================== */
@import url('../fonts/fonts.css');

:root {
	--paddy: #2E4A2B;
	--paddy-deep: #213A20;
	--paddy-soft: #3D6139;
	--husk: #C9A24B;
	--husk-dark: #A8842F;
	--husk-light: #E8D29A;
	--grain: #FBF8F0;
	--ivory: #F3EEDF;
	--sand: #EAE2CC;
	--earth: #4A3B28;
	--ink: #26281F;
	--muted: #5C5F52;
	--danger: #B2543C;
	--ok: #3D7A46;
	--shadow: 0 14px 40px rgba(33, 58, 32, .16);
	--shadow-sm: 0 6px 20px rgba(33, 58, 32, .08);
	--radius: 22px;
	--radius-sm: 14px;
	--wrap: 1120px;
	--gutter: clamp(18px, 4vw, 32px);
	--serif: 'Fraunces', Georgia, 'Times New Roman', serif;
	--sans: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--sans);
	color: var(--ink);
	background: var(--grain);
	line-height: 1.6;
	font-size: clamp(16px, 1.05vw + 12px, 18px);
	overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 700; letter-spacing: -.01em; line-height: 1.1; font-variation-settings: 'opsz' 96; }
h3 { font-weight: 600; }
a { color: var(--paddy); }
strong { font-weight: 700; }
ul, ol { list-style: none; }
button { font: inherit; }
::selection { background: var(--husk); color: var(--paddy-deep); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: 820px; }
section { padding: clamp(60px, 8vw, 104px) 0; position: relative; }
.center { text-align: center; }
.center .sec-title, .center .sec-sub { margin-left: auto; margin-right: auto; }

.skip { position: absolute; left: -999px; top: 0; background: var(--husk); color: var(--paddy-deep); padding: 10px 16px; z-index: 100; }
.skip:focus { left: 10px; top: 10px; }

.eyebrow { display: inline-block; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--husk-dark); margin-bottom: 14px; }
.eyebrow--gold { color: var(--husk); }
.sec-title { font-size: clamp(1.9rem, 4.2vw, 2.9rem); color: var(--paddy-deep); max-width: 720px; }
.sec-title em { color: var(--husk-dark); font-style: italic; font-weight: 600; }
.sec-title--light { color: var(--grain); }
.sec-title--light em { color: var(--husk); }
.sec-sub { margin-top: 14px; max-width: 620px; color: var(--muted); font-size: 1.05rem; }
.stars { color: var(--husk); letter-spacing: 2px; }

/* ---------- buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 1rem;
	text-decoration: none; text-align: center; border: 2px solid transparent; cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--husk); outline-offset: 3px; }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; white-space: normal; }
.btn--gold { background: var(--husk); color: var(--paddy-deep); box-shadow: 0 10px 26px rgba(201, 162, 75, .42); }
.btn--gold:hover { background: #D6B15E; box-shadow: 0 14px 32px rgba(201, 162, 75, .5); }
.btn--green { background: var(--paddy); color: var(--grain); box-shadow: 0 10px 26px rgba(33, 58, 32, .28); }
.btn--green:hover { background: var(--paddy-soft); }
.btn--outline { background: rgba(251, 248, 240, .08); color: var(--grain); border-color: rgba(251, 248, 240, .6); backdrop-filter: blur(4px); }
.btn--outline:hover { background: rgba(251, 248, 240, .16); border-color: var(--grain); }
.btn--ghost { background: transparent; color: var(--paddy-deep); border-color: rgba(33, 58, 32, .3); }
.btn--ghost:hover { border-color: var(--paddy-deep); }
.btn__spinner { display: none; width: 18px; height: 18px; border: 3px solid rgba(33, 58, 32, .25); border-top-color: var(--paddy-deep); border-radius: 50%; animation: spin .8s linear infinite; }
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading { pointer-events: none; opacity: .85; }
@keyframes spin { to { transform: rotate(360deg); } }
.linklike { background: none; border: 0; color: inherit; text-decoration: underline; cursor: pointer; padding: 0; }

/* ---------- topbar ---------- */
.topbar { position: sticky; top: 0; z-index: 60; background: var(--paddy-deep); color: var(--grain); font-size: .88rem; box-shadow: 0 2px 12px rgba(0, 0, 0, .18); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; min-height: 46px; }
.topbar__info { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.topbar__info strong { color: var(--husk-light); }
.topbar__info a { color: var(--grain); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--husk); }
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: #7CD08A; box-shadow: 0 0 0 0 rgba(124, 208, 138, .6); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(124, 208, 138, .6); } 70% { box-shadow: 0 0 0 8px rgba(124, 208, 138, 0); } 100% { box-shadow: 0 0 0 0 rgba(124, 208, 138, 0); } }
.topbar__sep { opacity: .5; }
.topbar__cta { color: var(--paddy-deep); background: var(--husk); text-decoration: none; font-weight: 700; padding: 7px 16px; border-radius: 999px; white-space: nowrap; transition: background .18s; }
.topbar__cta:hover { background: #D6B15E; }
@media (max-width: 760px) {
	.topbar__addr, .topbar__addr + .topbar__sep { display: none; }
	.topbar__cta { display: none; }
	.topbar__info { justify-content: center; width: 100%; font-size: .82rem; }
}

/* ---------- hero ---------- */
.hero { position: relative; color: var(--grain); min-height: min(92vh, 860px); display: flex; align-items: center; overflow: hidden; padding: clamp(56px, 8vw, 110px) 0 clamp(90px, 10vw, 140px); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.hero__veil { position: absolute; inset: 0; z-index: -1;
	background:
		linear-gradient(90deg, rgba(20, 38, 19, .9) 0%, rgba(20, 38, 19, .74) 36%, rgba(20, 38, 19, .22) 64%, rgba(20, 38, 19, .08) 100%),
		linear-gradient(180deg, rgba(20, 38, 19, .15) 0%, rgba(20, 38, 19, 0) 40%, rgba(20, 38, 19, .5) 100%);
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(28px, 5vw, 64px); align-items: center; width: 100%; }
.hero__brand { display: inline-flex; width: auto; float: none; clear: both; align-items: center; justify-content: center; background: var(--grain); border-radius: 999px; padding: 10px 22px; margin-bottom: 26px; box-shadow: var(--shadow); }
.hero__brand img { height: 56px; width: auto; }
.hero__brand + .eyebrow { display: block; text-shadow: 0 1px 12px rgba(0, 0, 0, .55); }
.hero h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); margin-bottom: 20px; text-wrap: balance; text-shadow: 0 2px 20px rgba(0, 0, 0, .25); }
.hero h1 em { font-style: italic; color: var(--husk); font-weight: 600; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); max-width: 600px; opacity: .94; margin-bottom: 32px; text-wrap: pretty; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .92rem; opacity: .95; }
.hero__proof li { display: flex; align-items: center; gap: 8px; }
.hero__proof li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--husk); flex: none; }
.hero__proof li:first-child::before { display: none; }
.hero__card { display: flex; justify-content: center; }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(28px, 4vw, 60px); z-index: 1; }
@media (max-width: 900px) {
	.hero { min-height: 0; align-items: flex-end; }
	.hero__inner { grid-template-columns: 1fr; }
	.hero__card { display: none; }
	.hero__bg img { object-position: 50% 30%; }
	.hero__veil { background: linear-gradient(180deg, rgba(20, 38, 19, .25) 0%, rgba(20, 38, 19, .55) 35%, rgba(20, 38, 19, .92) 70%); }
	.hero__brand { margin-bottom: 18px; }
	.hero__brand img { height: 44px; }
	.hero__cta .btn { flex: 1 1 100%; }
}

/* ---------- ticket (buono) ---------- */
.ticket { background: var(--grain); color: var(--ink); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); position: relative; width: 100%; max-width: 380px; }
.ticket__top { background: var(--husk); padding: 26px 24px 22px; text-align: center; color: var(--paddy-deep); display: flex; flex-direction: column; gap: 4px; }
.ticket__lbl { font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; }
.ticket__amount { font-family: var(--serif); font-size: 3.6rem; font-weight: 700; line-height: 1; }
.ticket__body { padding: 24px; text-align: center; position: relative; }
.ticket__body::before { content: ''; position: absolute; top: 0; left: 16px; right: 16px; border-top: 2px dashed rgba(38, 40, 31, .22); }
.ticket__cond { font-weight: 700; color: var(--paddy-deep); font-size: 1.05rem; margin-bottom: 6px; }
.ticket__note { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.ticket__code { display: inline-flex; flex-direction: column; align-items: center; font-family: 'Courier New', monospace; font-weight: 700; font-size: 1.4rem; letter-spacing: .18em; color: var(--paddy); background: var(--ivory); border-radius: 12px; padding: 10px 20px; }
.ticket__code span { font-family: var(--sans); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ticket::before, .ticket::after { content: ''; position: absolute; width: 28px; height: 28px; border-radius: 50%; background: var(--paddy-deep); top: 116px; }
.ticket::before { left: -14px; }
.ticket::after { right: -14px; }
.ticket--float { transform: rotate(-3deg); animation: float 6s ease-in-out infinite; }
.ticket--float::before, .ticket--float::after { background: #1b301a; }
@keyframes float { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-10px); } }
.ticket--big { max-width: 420px; margin: 0 auto; }
.ticket--big::before, .ticket--big::after { background: var(--paddy); }
.ticket--big .ticket__amount { font-size: 4.2rem; }

/* ---------- steps ---------- */
.steps { background: var(--grain); padding-top: clamp(30px, 5vw, 60px); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 30px 26px 28px; box-shadow: var(--shadow-sm); position: relative; border-top: 4px solid var(--husk); }
.step__n { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; background: var(--paddy-deep); color: var(--husk); font-family: var(--serif); font-size: 1.3rem; font-weight: 700; align-items: center; justify-content: center; margin-bottom: 16px; }
.step h3 { font-size: 1.25rem; color: var(--paddy-deep); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .97rem; }
@media (max-width: 800px) { .steps__grid { grid-template-columns: 1fr; } }

/* ---------- compare ---------- */
.compare { background: var(--ivory); }
.compare__grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 26px; margin-top: 40px; align-items: stretch; }
.card { border-radius: var(--radius); padding: 34px 30px; position: relative; }
.card h3 { font-size: 1.5rem; margin-bottom: 18px; }
.card li { padding: 10px 0 10px 34px; position: relative; border-bottom: 1px dashed rgba(0, 0, 0, .08); }
.card li:last-child { border-bottom: none; }
.card li::before { position: absolute; left: 2px; top: 9px; font-weight: 700; }
.card--centro { background: #E9E3D3; color: #5C5344; }
.card--centro h3 { color: #6B614E; }
.card--centro li::before { content: '✕'; color: var(--danger); }
.card--riseria { background: var(--paddy); color: var(--grain); box-shadow: var(--shadow); }
.card--riseria h3 { color: var(--husk); }
.card--riseria li { border-bottom-color: rgba(251, 248, 240, .15); }
.card--riseria li::before { content: '✓'; color: var(--husk); }
.card--riseria .btn { margin-top: 22px; }
.card__badge { position: absolute; top: -14px; right: 24px; background: var(--husk); color: var(--paddy-deep); font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; box-shadow: 0 6px 16px rgba(201, 162, 75, .4); }
.compare__note { text-align: center; margin-top: 28px; font-size: 1.08rem; }
.compare__note strong { color: var(--paddy); }
@media (max-width: 820px) { .compare__grid { grid-template-columns: 1fr; } }

/* ---------- why ---------- */
.why { background: var(--grain); }
.why__head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: end; }
.why__head .sec-sub { margin-top: 0; }
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 44px; }
.feature { background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature__ico { width: 54px; height: 54px; border-radius: 16px; background: var(--paddy); color: var(--husk); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature__ico svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; color: var(--paddy-deep); }
.feature p { font-size: .95rem; color: var(--muted); }
.feature p strong { color: var(--paddy-deep); }
.anchor { margin-top: 40px; background: var(--ivory); border: 2px solid var(--husk); border-radius: var(--radius); padding: 28px 32px; text-align: center; }
.anchor__big { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 700; color: var(--paddy-deep); text-wrap: balance; }
.anchor__big em { color: var(--husk-dark); font-style: italic; }
@media (max-width: 820px) { .why__head { grid-template-columns: 1fr; } }

/* ---------- family collage ---------- */
.family { background: var(--ivory); overflow: hidden; }
.collage { position: relative; margin: 48px auto 0; max-width: 980px; display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(12, minmax(0, 1fr)); aspect-ratio: 980 / 780; }
.collage figure { position: relative; margin: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 44px rgba(33, 58, 32, .2); background: var(--sand); border: 6px solid #fff; }
.collage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage figcaption { position: absolute; left: 12px; bottom: 12px; background: rgba(33, 58, 32, .85); color: var(--grain); font-size: .78rem; font-weight: 600; padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px); }
.collage__esterno { grid-column: 3 / 13; grid-row: 1 / 8; z-index: 1; transform: rotate(1.2deg); }
.collage__famiglia { grid-column: 1 / 6; grid-row: 4 / 13; z-index: 3; transform: rotate(-2deg); }
.collage__trattore { grid-column: 6 / 13; grid-row: 8 / 13; z-index: 2; transform: rotate(1.5deg); }
.collage figure:hover { z-index: 4; }
@media (max-width: 700px) {
	.collage { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; aspect-ratio: auto; gap: 12px; }
	.collage figure { transform: none !important; border-width: 4px; }
	.collage__esterno { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 3 / 2; }
	.collage__famiglia { grid-column: 1; grid-row: auto; aspect-ratio: 3 / 4; }
	.collage__trattore { grid-column: 2; grid-row: auto; aspect-ratio: 3 / 4; }
}

/* ---------- strip risaia/riseria ---------- */
.strip { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.strip figure { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 3 / 2; background: var(--sand); }
.strip img { width: 100%; height: 100%; object-fit: cover; }
.strip figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; background: rgba(33, 58, 32, .84); color: var(--grain); font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; width: fit-content; max-width: 100%; backdrop-filter: blur(4px); }
@media (max-width: 700px) { .strip { grid-template-columns: 1fr; } }

/* ---------- cosa visiterai + prezzo ---------- */
/* --- Cosa visiterai --- */
.itinerary { background: var(--grain); }
.itinerary__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.stop { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.stop:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stop img { aspect-ratio: 1; object-fit: cover; width: 100%; display: block; }
.stop p { font-size: 1rem; line-height: 1.45; color: var(--muted); margin: 18px 20px 22px; flex: 1; }
.stop p strong { color: var(--paddy-deep); }
@media (max-width: 960px) { .itinerary__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .itinerary__grid { grid-template-columns: 1fr 1fr; gap: 12px; } .stop p { margin: 12px 14px 16px; font-size: .88rem; } }

/* --- Prezzo --- */
.price { background: var(--paddy-deep); color: var(--grain); text-align: center; }
.price__title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); color: var(--grain); max-width: 720px; margin: 0 auto; }
.price__title em { color: var(--husk); font-style: italic; font-weight: 600; }
.price__from { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 18px; line-height: 1.1; }
.price__from strong { display: inline-block; font-size: clamp(3.6rem, 10vw, 6.4rem); font-weight: 700; color: var(--husk); line-height: 1; margin: 0 .08em; }
.price__unit { font-size: clamp(1.1rem, 2.4vw, 1.6rem); }
.price__unit sup { font-size: .55em; color: var(--husk-light); }
.price__note { margin-top: 6px; font-size: .86rem; color: rgba(251, 248, 240, .55); }
.price .btn { margin-top: 26px; }

/* ---------- reviews ---------- */
.reviews { background: var(--ivory); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 40px; }
.review { background: #fff; border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); position: relative; }
.review::before { content: '“'; position: absolute; top: 8px; right: 20px; font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--husk-light); }
.review p { font-style: italic; color: #3c3f35; margin-bottom: 16px; font-size: 1rem; position: relative; }
.review footer { display: flex; align-items: center; gap: 10px; font-size: .86rem; font-weight: 600; color: var(--paddy-deep); }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--paddy); color: var(--husk); display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; }
.reviews__more { text-align: center; margin-top: 30px; }
.reviews__more a { font-weight: 600; }

/* ---------- voucher ---------- */
.voucher { color: var(--grain); background:
	radial-gradient(900px 400px at 8% 0%, rgba(201, 162, 75, .28), transparent 55%),
	radial-gradient(700px 500px at 100% 100%, rgba(201, 162, 75, .16), transparent 60%),
	linear-gradient(160deg, var(--paddy-deep), var(--paddy)); scroll-margin-top: 60px; }
.voucher__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.voucher h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.voucher h2 em { color: var(--husk); font-style: italic; font-weight: 600; }
.voucher__lead { opacity: .92; margin-bottom: 26px; font-size: 1.05rem; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(201, 162, 75, .16); border: 1px solid rgba(201, 162, 75, .5); border-radius: 999px; padding: 6px 16px; font-size: .84rem; font-weight: 600; margin-bottom: 18px; }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--husk); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.form .field { margin-bottom: 14px; }
.form label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; opacity: .92; }
.form label small { font-weight: 400; opacity: .8; }
.form input[type=text], .form input[type=email], .form input[type=tel] { width: 100%; padding: 15px 18px; border-radius: 12px; border: 2px solid transparent; font-size: 1rem; font-family: inherit; background: var(--grain); color: var(--ink); transition: border-color .15s, box-shadow .15s; }
.form input:focus { outline: none; border-color: var(--husk); box-shadow: 0 0 0 4px rgba(201, 162, 75, .28); }
.form input.is-invalid { border-color: #E07A5F; }
.field__err { display: block; font-size: .82rem; color: #FFC9B8; min-height: 0; margin-top: 4px; }
.field__err:empty { display: none; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; opacity: .9; margin: 12px 0; cursor: pointer; }
.check input { margin-top: 3px; accent-color: var(--husk); width: 18px; height: 18px; flex: none; }
.check a { color: var(--husk-light); }
.check em { opacity: .7; font-style: normal; }
.check--soft { opacity: .8; }
.form .btn--block { margin-top: 10px; }
.form__msg { font-size: .9rem; margin-top: 12px; color: #FFC9B8; font-weight: 600; min-height: 0; }
.form__msg:empty { display: none; }
.form__note { font-size: .8rem; opacity: .7; margin-top: 12px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.countdown { display: flex; gap: 10px; justify-content: center; margin: 22px 0 6px; }
.countdown__box { background: rgba(0, 0, 0, .25); border: 1px solid rgba(251, 248, 240, .12); border-radius: 12px; padding: 10px 12px; min-width: 72px; text-align: center; }
.countdown__box b { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 700; color: var(--husk); line-height: 1.1; }
.countdown__box span { font-size: .66rem; text-transform: uppercase; letter-spacing: .1em; opacity: .8; }
.countdown__lbl { text-align: center; font-size: .82rem; opacity: .75; }
.countdown.is-over { display: none; }
@media (max-width: 860px) {
	.voucher__grid { grid-template-columns: 1fr; }
	.voucher__side { order: -1; }
	.ticket--big { max-width: 360px; }
	.ticket--big .ticket__amount { font-size: 3.4rem; }
}

/* ---------- tour ---------- */
.tour { background: var(--grain); }
.tour__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.tour__photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 4.4; background: var(--sand); }
.tour__photo img { width: 100%; height: 100%; object-fit: cover; }
.tour__text p { margin-bottom: 14px; color: #3c3f35; }
.tour__text .btn { margin-top: 8px; }
@media (max-width: 820px) { .tour__grid { grid-template-columns: 1fr; } .tour__photo { aspect-ratio: 4 / 3; } }

/* ---------- visit ---------- */
.visit { background: var(--ivory); scroll-margin-top: 60px; }
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; margin-top: 40px; align-items: stretch; }
.info { background: var(--grain); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); }
.info h3 { font-size: 1.4rem; color: var(--paddy-deep); margin-bottom: 14px; }
.info__list > div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px dashed rgba(0, 0, 0, .1); font-size: .97rem; }
.info__list > div:last-child { border-bottom: 0; }
.info__list dt { font-weight: 700; color: var(--paddy-deep); }
.info__list a { font-weight: 600; }
.info .btn { margin-top: 20px; }
.info__hint { font-size: .86rem; color: var(--muted); margin-top: 14px; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 340px; background: var(--sand); }
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
@media (max-width: 820px) { .visit__grid { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */
.faq { background: var(--grain); }
.faq__list { margin-top: 36px; display: grid; gap: 12px; }
.faq details { background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); padding: 0 22px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--paddy-deep); padding: 18px 34px 18px 0; list-style: none; position: relative; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 1.6rem; color: var(--husk-dark); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 18px; color: #3c3f35; font-size: .97rem; }

/* ---------- final ---------- */
.final { background: var(--paddy-deep) url('../img/tramonto.jpg') center/cover no-repeat; position: relative; color: var(--grain); }
.final::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33, 58, 32, .78), rgba(33, 58, 32, .9)); }
.final .wrap { position: relative; }
.final__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- footer ---------- */
.footer { background: #172a16; color: rgba(251, 248, 240, .78); padding: 44px 0 110px; font-size: .88rem; text-align: center; }
.footer__logo { margin: 0 auto 14px; background: var(--grain); border-radius: 999px; padding: 8px 16px; height: 52px; width: auto; }
.footer__claim { color: var(--grain); font-family: var(--serif); font-size: 1.1rem; margin-bottom: 10px; }
.footer a { color: inherit; }
.footer__social { margin-top: 6px; }
.footer__legal { margin-top: 14px; opacity: .65; font-size: .8rem; }
@media (min-width: 761px) { .footer { padding-bottom: 44px; } }

/* ---------- sticky mobile CTA ---------- */
.sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 55; display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(23, 42, 22, .92); backdrop-filter: blur(8px); transform: translateY(110%); transition: transform .3s ease; }
.sticky.is-visible { transform: translateY(0); }
.sticky .btn { box-shadow: none; padding: 14px 18px; }
.sticky__dir { flex: none; width: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 2px solid rgba(251, 248, 240, .5); color: var(--grain); }
@media (max-width: 760px) { .sticky { display: flex; } }

/* ---------- cookie banner ---------- */
.cookie { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70; display: flex; justify-content: center; transform: translateY(20px); opacity: 0; transition: transform .35s ease, opacity .35s ease; pointer-events: none; }
.cookie.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie.is-hidden { transform: translateY(20px); opacity: 0; pointer-events: none; }
.cookie__inner { background: var(--grain); color: var(--ink); border-radius: 18px; box-shadow: 0 18px 50px rgba(0, 0, 0, .3); padding: 18px 20px; max-width: 900px; width: 100%; display: flex; gap: 18px; align-items: center; border: 1px solid var(--sand); }
.cookie__text { font-size: .86rem; line-height: 1.5; flex: 1; }
.cookie__text strong { color: var(--paddy-deep); }
.cookie__text a { color: var(--paddy); }
.cookie__actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 760px) {
	.cookie { bottom: 78px; }
	.cookie__inner { flex-direction: column; align-items: stretch; }
	.cookie__actions { justify-content: stretch; }
	.cookie__actions .btn { flex: 1 1 auto; }
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease var(--d, 0s), transform .7s ease var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- thank you page ---------- */
.ty { min-height: 100vh; display: flex; flex-direction: column; }
.ty__main { flex: 1; padding: clamp(36px, 6vw, 72px) 0; background:
	radial-gradient(900px 400px at 8% 0%, rgba(201, 162, 75, .28), transparent 55%),
	linear-gradient(160deg, var(--paddy-deep), var(--paddy)); color: var(--grain); }
.ty__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.ty h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 14px; }
.ty h1 em { color: var(--husk); font-style: italic; font-weight: 600; }
.ty__lead { font-size: 1.08rem; opacity: .92; margin-bottom: 24px; }
.ty__actions { display: grid; gap: 12px; margin-top: 8px; }
.ty__actions .btn { width: 100%; white-space: normal; }
.ty__small { font-size: .85rem; opacity: .75; margin-top: 16px; }
.ty__small a { color: var(--husk-light); }
.ty .ticket { max-width: 440px; margin: 0 auto; }
.ty .ticket__code { font-size: 1.9rem; }
.ty__steps { margin-top: 26px; display: grid; gap: 10px; }
.ty__steps li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; opacity: .92; }
.ty__steps b { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--husk); color: var(--paddy-deep); display: inline-flex; align-items: center; justify-content: center; font-size: .85rem; }
.ty__info { background: var(--grain); }
.ty__info .info { max-width: 720px; margin: 0 auto; }
@media (max-width: 860px) { .ty__grid { grid-template-columns: 1fr; } }
@media print {
	.topbar, .sticky, .cookie, .ty__actions, .footer, .ty__info, .ty__steps { display: none !important; }
	.ty__main { background: #fff; color: #000; padding: 0; }
	.ty .ticket { box-shadow: none; border: 2px dashed #999; }
	.ty__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; }
}
