html, body {
	color: var(--cream);
	background: var(--green);
}

body.site-home {
	color: #1e2d28;
	background: #f3ece0;
}

/* ── Home hero slider ── */
.home-main {
	position: relative;
	z-index: 2;
}

.home-hero-slider {
	position: relative;
	width: 100%;
	min-height: clamp(380px, 54vh, 580px);
	overflow: hidden;
	background: var(--green);
}

.home-hero-carousel,
.home-hero-carousel .carousel-inner,
.home-hero-carousel .carousel-item {
	height: clamp(380px, 54vh, 580px);
}

.home-hero-slide__img {
	display: block;
	width: 100%;
	height: clamp(380px, 54vh, 580px);
	object-fit: cover;
	object-position: center center;
	transform: scale(1);
}

.home-hero-slide__img--top {
	object-position: center top;
}

.home-hero-slide__img--bottom {
	object-position: center bottom;
}

.home-hero-carousel .carousel-item.active .home-hero-slide__img {
	animation: homeHeroKenburnsActive 8s ease-out forwards;
}

@keyframes homeHeroKenburnsActive {
	from { transform: scale(1); }
	to   { transform: scale(1.06); }
}

.home-hero-carousel__control {
	width: 3.5rem;
	z-index: 4;
	opacity: 1;
}

.home-hero-carousel__control-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.85rem;
	height: 2.85rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--green);
	font-size: 1.85rem;
	line-height: 1;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
	transition: transform 0.2s, background 0.2s;
}

.home-hero-carousel__control:hover .home-hero-carousel__control-icon {
	transform: scale(1.06);
	background: #fff;
}

.home-hero-carousel__indicators {
	z-index: 4;
	margin-bottom: 1rem;
}

.home-hero-carousel__indicators [data-bs-target] {
	width: 2.25rem;
	height: 3px;
	border-radius: 2px;
	background-color: rgba(255, 255, 255, 0.45);
	border: none;
}

.home-hero-carousel__indicators .active {
	background-color: var(--gold-light);
}

.home-hero-slider__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(105deg, rgba(8, 28, 20, 0.82) 0%, rgba(15, 61, 46, 0.45) 42%, rgba(8, 20, 15, 0.72) 100%),
		linear-gradient(0deg, rgba(8, 20, 15, 0.55) 0%, transparent 45%);
}

.home-hero-slider__content {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	pointer-events: none;
}

.home-hero-slider__text {
	max-width: min(54rem, 94vw);
	padding: 0 0.5rem;
	margin-left: clamp(3.25rem, 5vw, 4.75rem);
	animation: fadeUp 1s 0.15s ease both;
	pointer-events: auto;
}

.home-hero-slider__badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-light);
	border: 1px solid rgba(201, 168, 76, 0.55);
	padding: 0.35rem 1rem;
	margin-bottom: 1.25rem;
}

.home-hero-slider__heading {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 600;
	line-height: 1.2;
	color: var(--cream);
	margin-bottom: 1rem;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.home-hero-slider__title {
	display: block;
	font-size: clamp(1.45rem, 3.6vw, 2.85rem);
	font-style: normal;
	white-space: nowrap;
}

.home-hero-slider__register {
	display: block;
	margin-top: 0.45rem;
	font-size: clamp(1.35rem, 3vw, 2.15rem);
	font-style: italic;
	color: var(--gold-light);
}

.home-hero-slider__founded {
	display: block;
	margin-top: 0.55rem;
	font-family: 'Source Sans 3', system-ui, sans-serif;
	font-size: clamp(0.72rem, 1.4vw, 0.88rem);
	font-weight: 600;
	font-style: normal;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.88;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 575.98px) {
	.home-hero-slider__title {
		white-space: normal;
	}
}

.home-hero-slider__cta {
	display: inline-block;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--cream);
	border-bottom: 1px solid rgba(228, 201, 122, 0.65);
	padding-bottom: 0.15rem;
	transition: color 0.2s, border-color 0.2s;
}

.home-hero-slider__cta:hover {
	color: var(--gold-light);
	border-color: var(--gold-light);
}

/* ── Home content sections ── */
.home-section {
	padding: 2.5rem 0;
}

.home-section--light {
	background: #faf6ee;
}

.home-section--muted {
	background: #e9e0cc;
}

.home-section--cta {
	background: #faf6ee;
	padding-top: 1.5rem;
	padding-bottom: 3rem;
}

.home-section__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1.35rem;
}

.home-section__more {
	margin-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}

/* ── Home hub: notizie + eventi ── */
.home-hub {
	background: #faf6ee;
	padding: 2.5rem 0 3rem;
	border-top: 4px solid var(--gold);
}

.home-hub__grid {
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
	--bs-gutter-x: 2rem;
}

.home-hub__col {
	border-bottom: none;
}

.home-hub__col--news,
.home-hub__col--events {
	border: 1px solid rgba(201, 168, 76, 0.32);
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(8, 24, 18, 0.08);
}

.home-hub__col--news {
	background: #fff;
}

.home-hub__col--events {
	background: linear-gradient(180deg, #f8f0e2 0%, #f3ece0 100%);
	border-color: rgba(201, 168, 76, 0.48);
	box-shadow: 0 14px 36px rgba(15, 61, 46, 0.12);
}

.home-hub__col--events .home-hub__inner {
	padding: 2rem 1.65rem 1.65rem;
}

.home-hub__col--events .home-section__title {
	font-size: clamp(1.45rem, 2.8vw, 1.9rem);
	margin-bottom: 1.5rem;
}

.home-hub__col--events .home-section__more {
	justify-content: center;
	margin-top: 1.75rem;
}

.home-hub__col--events .home-section__more .btn-outline-mg {
	font-size: 0.82rem;
	padding: 0.7rem 1.5rem;
	letter-spacing: 0.06em;
	min-width: 12.5rem;
	text-align: center;
}

.home-hub__inner {
	padding: 1.75rem 1.5rem 1.5rem;
	height: 100%;
}

/* ── Home: iscrizione club (oro) + registro (separato) ── */
.home-join-split {
	background: #f3eee4;
	padding: 2.25rem 0 2.5rem;
	border-top: 1px solid rgba(15, 61, 46, 0.08);
}

.home-join-banner {
	background: linear-gradient(135deg, var(--gold-light) 0%, #d4b86a 48%, var(--gold) 100%);
	padding: 2.25rem 0 2.5rem;
	border-top: 1px solid rgba(15, 61, 46, 0.08);
}

.home-join-banner--panel {
	height: 100%;
	padding: 1.6rem 1.35rem 1.75rem;
	border-radius: 1rem;
	border-top: none;
	box-shadow: 0 14px 34px rgba(15, 61, 46, 0.12);
}

.home-join-banner__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.35rem, 2.8vw, 1.8rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	text-align: center;
	color: var(--green);
	margin: 0 auto 1.85rem;
	line-height: 1.25;
	max-width: 46rem;
}

.home-join-banner__features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 2rem;
}

.home-join-banner__feature {
	display: flex;
	align-items: center;
	gap: 0.95rem;
	color: var(--green);
	font-size: clamp(0.92rem, 1.5vw, 1.04rem);
	font-weight: 600;
	line-height: 1.42;
}

.home-join-banner__icon {
	flex: 0 0 auto;
	width: 3.35rem;
	height: 3.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.9rem;
	color: var(--green);
}

.home-join-banner__cta {
	text-align: center;
	padding: 0.35rem 0.75rem;
	max-width: 18rem;
	margin: 0 auto;
}

.home-join-banner__logo {
	max-width: 11rem;
	height: auto;
	margin: 0 auto 1rem;
	display: block;
	filter: drop-shadow(0 6px 14px rgba(15, 61, 46, 0.18));
}

.home-join-banner__cta-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--green);
	margin: 0 0 1rem;
}

.home-join-banner__btn {
	display: inline-block;
	background: #fff;
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.85rem 1.65rem;
	border-radius: 999px;
	border: 2px solid rgba(15, 61, 46, 0.12);
	box-shadow: 0 8px 22px rgba(15, 61, 46, 0.12);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.home-join-banner__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.65rem;
}

.home-join-banner__btn--secondary {
	background: var(--green);
	color: var(--cream);
	border-color: rgba(15, 61, 46, 0.5);
	box-shadow: 0 8px 22px rgba(15, 61, 46, 0.2);
}

.home-join-banner__btn:hover {
	background: var(--cream);
	color: var(--green);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(15, 61, 46, 0.18);
}

.home-join-banner__btn--secondary:hover {
	background: var(--green-light);
	color: var(--cream);
	box-shadow: 0 12px 28px rgba(15, 61, 46, 0.28);
}

.home-join-banner__btn:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 3px;
}

.home-register-panel {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.95rem;
	padding: 1.45rem 1.3rem 1.55rem;
	background: linear-gradient(165deg, rgba(15, 61, 46, 0.98) 0%, rgba(8, 32, 24, 1) 100%);
	border: 1px solid rgba(228, 201, 122, 0.35);
	border-radius: 1rem;
	box-shadow: 0 18px 40px rgba(8, 24, 18, 0.28);
	color: var(--cream);
}

.home-register-panel__eyebrow {
	margin: 0;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: none;
	color: var(--gold-light);
	line-height: 1.2;
}

.home-register-panel__question {
	margin: 0;
	font-size: clamp(0.98rem, 1.5vw, 1.08rem);
	font-weight: 600;
	line-height: 1.35;
	color: var(--cream);
	text-wrap: balance;
}

.home-register-panel__links {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	margin-top: 0.2rem;
}

.home-register-panel__link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 0.9rem;
	border-radius: 0.75rem;
	text-decoration: none;
	color: var(--cream);
	background: rgba(250, 246, 238, 0.06);
	border: 1px solid rgba(228, 201, 122, 0.28);
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-register-panel__link:hover {
	transform: translateY(-2px);
	background: rgba(228, 201, 122, 0.14);
	border-color: var(--gold-light);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
	color: var(--cream);
}

.home-register-panel__link-icon {
	flex: 0 0 auto;
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(228, 201, 122, 0.16);
	color: var(--gold-light);
}

.home-register-panel__car {
	width: 1.7rem;
	height: auto;
	display: block;
}

.home-register-panel__link-text {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.home-register-panel__link-label {
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.3;
}

.home-register-panel__link-arrow {
	flex: 0 0 auto;
	color: var(--gold-light);
	font-size: 1.05rem;
	transition: transform 0.2s ease;
}

.home-register-panel__link:hover .home-register-panel__link-arrow {
	transform: translateX(3px);
}

@media (max-width: 991.98px) {
	.home-join-banner__features {
		grid-template-columns: 1fr;
		max-width: 32rem;
		margin: 0 auto;
	}

	.home-join-banner__cta {
		margin-top: 0.5rem;
		padding-top: 1.25rem;
		border-top: 1px solid rgba(15, 61, 46, 0.12);
	}
}

@media (max-width: 575.98px) {
	.home-join-split {
		padding: 1.75rem 0 2rem;
	}

	.home-join-banner--panel {
		padding: 1.35rem 1.1rem 1.5rem;
	}

	.home-join-banner__title {
		margin-bottom: 1.5rem;
	}
}

.home-hub__empty {
	color: #6b7a73;
	font-size: 0.95rem;
	margin: 0 0 0.5rem;
}

.home-news-list,
.home-events-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.home-news-list {
	gap: 1.1rem;
}

.home-news-card {
	display: flex;
	gap: 1.05rem;
	align-items: flex-start;
	padding-bottom: 1.05rem;
	border-bottom: 1px solid #e5ddd0;
}

.home-news-card:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.home-news-card--featured {
	padding-bottom: 1.15rem;
}

.home-news-card__thumb {
	display: block;
	flex-shrink: 0;
	width: 7.75rem;
	height: 5.65rem;
	border-radius: 4px;
	overflow: hidden;
	background: #eef3ef;
	box-shadow: 0 3px 10px rgba(15, 61, 46, 0.08);
	transition: box-shadow 0.3s ease;
}

.home-news-card--featured .home-news-card__thumb {
	width: 9.25rem;
	height: 6.75rem;
}

.home-news-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.home-news-card:hover .home-news-card__thumb {
	box-shadow: 0 6px 16px rgba(15, 61, 46, 0.14);
}

.home-news-card:hover .home-news-card__thumb img {
	transform: scale(1.04);
}

.home-news-card__body {
	min-width: 0;
	flex: 1;
}

.home-news-card__meta,
.home-event-card__meta {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8a968f;
	margin-bottom: 0.3rem;
}

.home-news-card h3,
.home-event-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem;
	line-height: 1.25;
	margin: 0 0 0.35rem;
}

.home-news-card--featured h3 {
	font-size: 1.22rem;
}

.home-news-card h3 a,
.home-event-card h3 a {
	color: var(--green);
	text-decoration: none;
}

.home-news-card h3 a:hover,
.home-event-card h3 a:hover {
	color: var(--gold);
}

.home-news-card__excerpt,
.home-event-card p {
	font-size: 0.92rem;
	color: #3d4f48;
	line-height: 1.55;
	margin: 0;
}

.home-news-card--featured .home-news-card__excerpt {
	font-size: 0.92rem;
	line-height: 1.55;
}

@media (max-width: 575.98px) {
	.home-news-card__thumb,
	.home-news-card--featured .home-news-card__thumb {
		width: 6.5rem;
		height: 4.75rem;
	}
}

@media (min-width: 992px) {
	.home-events-panel--scroll .home-events-list {
		max-height: 26rem;
		overflow-y: auto;
		overscroll-behavior: contain;
		scrollbar-gutter: stable;
		padding-right: 0.35rem;
		scrollbar-width: thin;
		scrollbar-color: rgba(201, 168, 76, 0.65) rgba(15, 61, 46, 0.08);
	}

	.home-events-panel--scroll .home-events-list::-webkit-scrollbar {
		width: 0.45rem;
	}

	.home-events-panel--scroll .home-events-list::-webkit-scrollbar-track {
		background: rgba(15, 61, 46, 0.06);
		border-radius: 999px;
	}

	.home-events-panel--scroll .home-events-list::-webkit-scrollbar-thumb {
		background: rgba(201, 168, 76, 0.75);
		border-radius: 999px;
	}
}

@media (max-width: 991.98px) {
	.home-events-panel--scroll:not(.is-expanded) .home-event-card:nth-child(n+3) {
		display: none;
	}
}

.home-events-panel__more {
	margin-top: 1rem;
	text-align: center;
}

.home-events-panel__more .btn-outline-mg {
	min-width: 11rem;
}

.home-event-card--compact,
.home-event-card--row {
	background: #fff;
	border-top: 3px solid var(--gold);
	padding: 1rem 1.1rem;
	box-shadow: 0 4px 16px rgba(15, 61, 46, 0.1);
}

.home-event-card--row {
	display: grid;
	grid-template-columns: minmax(7.75rem, 34%) minmax(0, 1fr) auto;
	gap: 1rem;
	align-items: start;
}

.home-event-card__thumb {
	display: block;
	border-radius: 4px;
	overflow: hidden;
	min-height: 6.25rem;
	background: #eef3ef;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(15, 61, 46, 0.14);
}

.home-event-card__thumb img {
	width: 100%;
	height: 100%;
	min-height: 6.25rem;
	object-fit: cover;
	display: block;
}

.home-event-card__thumb--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 1.75rem;
}

.home-event-card__body {
	min-width: 0;
	align-self: start;
	padding-top: 0.35rem;
}

.home-event-card__period {
	margin: 0 0 0.45rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #4a5c66;
	line-height: 1.35;
}

.home-event-card__period i {
	color: var(--gold);
	margin-right: 0.25rem;
}

.home-event-card--row h3 {
	font-size: clamp(1.28rem, 2.5vw, 1.58rem);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.45rem;
}

.home-event-card__location {
	margin: 0 0 0.35rem;
	font-size: 0.74rem;
	color: #7a8a83;
}

.home-event-card__location i {
	color: var(--gold);
	margin-right: 0.2rem;
}

.home-event-card__excerpt {
	font-size: 0.84rem;
	color: #5d6e67;
	line-height: 1.5;
	margin: 0;
}

.home-event-card__date {
	min-width: 4.75rem;
	padding: 0.75rem 0.85rem;
	align-self: start;
	margin-top: 0.35rem;
}

.home-event-card__date .events-list__date-day {
	font-size: 2.35rem;
}

@media (max-width: 575.98px) {
	.home-event-card--row {
		grid-template-columns: 1fr;
		gap: 0.85rem;
		padding: 0.9rem 0.85rem;
	}

	.home-event-card__thumb {
		aspect-ratio: 16 / 10;
		min-height: 0;
	}

	.home-event-card__thumb img {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.home-event-card__body {
		padding-top: 0;
	}

	.home-event-card--row h3 {
		font-size: 1.2rem;
	}

	.home-event-card__date {
		grid-column: 1 / -1;
		flex-direction: row;
		justify-content: flex-start;
		gap: 0.75rem;
		border-left: none;
		border-top: 1px solid rgba(201, 168, 76, 0.25);
		padding: 0.75rem 0 0;
		min-width: 0;
		margin-top: 0;
		align-items: baseline;
		align-self: stretch;
	}

	.home-event-card__date .events-list__date-day {
		font-size: 1.95rem;
	}
}

@media (min-width: 992px) {
	.home-hub__grid {
		--bs-gutter-x: 4.5rem;
	}
}

@media (max-width: 991.98px) {
	.home-hub__inner {
		padding: 1.35rem 1.1rem 1.25rem;
	}
}

.home-featured-carousel {
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(8, 24, 18, 0.18);
}

.home-featured-carousel__media {
	position: relative;
	min-height: clamp(240px, 34vw, 380px);
	background-size: cover;
	background-position: center;
	background-color: var(--green);
}

.home-featured-carousel__media--fallback {
	background-image: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
}

.home-featured-carousel__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(8, 20, 15, 0.88) 0%, rgba(8, 20, 15, 0.15) 55%, transparent 100%);
}

.home-featured-carousel__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 1.75rem 1.5rem 1.5rem;
	color: var(--cream);
}

.home-featured-carousel__label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 0.45rem;
}

.home-featured-carousel__caption h3 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.35rem, 2.8vw, 2rem);
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-featured-carousel__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.home-featured-carousel__control {
	width: 3rem;
	opacity: 1;
}

.home-featured-carousel__control-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--green);
	font-size: 1.75rem;
	line-height: 1;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.home-featured-carousel__indicators {
	margin-bottom: 0.85rem;
}

.home-featured-carousel__indicators [data-bs-target] {
	width: 2rem;
	height: 3px;
	border-radius: 2px;
	background-color: rgba(255, 255, 255, 0.45);
	border: none;
}

.home-featured-carousel__indicators .active {
	background-color: var(--gold-light);
}

.home-event-card:not(.home-event-card--row) {
	background: #fff;
	border-top: 3px solid var(--gold);
	padding: 1.25rem 1.2rem;
	box-shadow: 0 2px 12px rgba(15, 61, 46, 0.08);
}

.home-event-card:not(.home-event-card--row) p {
	font-size: 0.95rem;
	color: #3d4f48;
	line-height: 1.55;
	margin-bottom: 0.75rem;
}

.home-event-card__link {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--green);
}

.home-event-card__link:hover {
	color: var(--gold);
}

/* ── Background slideshow (legacy / alt pages) ── */
.bg-slideshow {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.bg-slide {
	position: absolute;
	inset: -5%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	animation: kenburns 36s infinite;
	will-change: transform, opacity;
}

.bg-slide:nth-child(1) {
	background-image: url('../images/MG-C-FOTO.jpg');
	animation-delay: 0s;
}
.bg-slide:nth-child(2) {
	background-image: url('../images/fabiomg.JPG');
	animation-delay: 6s;
}
.bg-slide:nth-child(3) {
	background-image: url('../images/slide_3_rome.jpg');
	animation-delay: 12s;
}
.bg-slide:nth-child(4) {
	background-image: url('../images/matera-foto.jpg');
	animation-delay: 18s;
}
.bg-slide:nth-child(5) {
	background-image: url('../images/slide_5_rome.jpg');
	animation-delay: 24s;
}
.bg-slide:nth-child(6) {
	background-image: url('../images/2E6A7203.jpg');
	animation-delay: 30s;
}

@keyframes kenburns {
	0%, 14%   { opacity: 0; transform: scale(1.05); }
	3%, 11%   { opacity: 1; transform: scale(1.08); }
	16%, 100% { opacity: 0; transform: scale(1.12); }
}

.bg-overlay {
	position: fixed;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(160deg, rgba(8, 28, 20, 0.88) 0%, rgba(15, 61, 46, 0.72) 45%, rgba(8, 20, 15, 0.92) 100%),
		radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
}

/* ── Home navigation ── */
.site-home .mg-brand__logo {
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

/* ── Layout ── */
.page {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.5rem 1.5rem 2rem;
}

.page.inner-page {
	width: 100%;
	max-width: 1320px;
	align-items: stretch;
}

.hero-home {
	width: 100%;
	max-width: 52rem;
	margin: 0 auto;
	animation: fadeUp 1s 0.15s ease both;
}

.section-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 600;
	color: var(--cream);
	text-align: center;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

.news-grid .mg-card,
.event-grid .mg-card {
	width: 100%;
	max-width: none;
	text-align: left;
	padding: 1.35rem 1.25rem;
}

.news-grid .mg-card h3,
.event-grid .mg-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	color: var(--cream);
	margin-bottom: 0.5rem;
}

.news-meta,
.event-meta {
	font-size: 0.8rem;
	color: rgba(250, 246, 238, 0.65);
	margin-bottom: 0.35rem;
}

/* ── Logo ── */
.logo-wrap {
	margin-bottom: 2rem;
	animation: fadeDown 1s ease both;
}

.logo-wrap img {
	width: min(380px, 88vw);
	height: auto;
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

/* ── Main card ── */
.mg-card {
	width: min(720px, 100%);
	text-align: center;
	padding: 2.75rem 2.5rem 2.5rem;
	background: rgba(15, 61, 46, 0.55);
	border: 1px solid rgba(201, 168, 76, 0.35);
	border-radius: 4px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 24px 64px var(--shadow);
	animation: fadeUp 1s 0.2s ease both;
	position: relative;
}

.mg-card::before,
.mg-card::after {
	content: '';
	position: absolute;
	width: 28px;
	height: 28px;
	border-color: var(--gold);
	border-style: solid;
	opacity: 0.7;
}
.mg-card::before { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.mg-card::after  { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.mg-badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-light);
	border: 1px solid rgba(201, 168, 76, 0.5);
	padding: 0.35rem 1rem;
	margin-bottom: 1.5rem;
}

h1 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(2rem, 5.5vw, 2.85rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--cream);
	margin-bottom: 0.5rem;
}

h1 em {
	font-style: italic;
	color: var(--gold-light);
}

.subtitle {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	font-weight: 500;
	color: rgba(250, 246, 238, 0.75);
	margin-bottom: 1.75rem;
}

.message {
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--cream-muted);
	max-width: 540px;
	margin: 0 auto 2rem;
	font-weight: 300;
}

/* ── Progress bar ── */
.progress-wrap {
	margin-bottom: 2.25rem;
}

.progress-label {
	display: flex;
	justify-content: space-between;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(201, 168, 76, 0.85);
	margin-bottom: 0.6rem;
}

.progress-track {
	height: 3px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 2px;
	overflow: hidden;
}

.mg-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	border-radius: 2px;
	animation: pulse-bar 2.8s ease-in-out infinite;
}

@keyframes pulse-bar {
	0%, 100% { opacity: 1; }
	50%       { opacity: 0.65; }
}

/* ── Feature pills ── */
.features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	justify-content: center;
}

.feature {
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 0.45rem 1rem;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 2px;
	color: rgba(250, 246, 238, 0.88);
}

.feature::before {
	content: '◆ ';
	color: var(--gold);
	font-size: 0.55rem;
	vertical-align: middle;
}

/* ── Demo call-to-action ── */
.demo-cta {
	margin-top: 2rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(201, 168, 76, 0.25);
}

.demo-cta p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--cream-muted);
	margin-bottom: 1.25rem;
	font-weight: 300;
}

.home-cta {
	max-width: 52rem;
	margin-left: auto;
	margin-right: auto;
}

.home-club-link {
	color: var(--gold-light);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.home-club-link:hover {
	color: var(--cream);
}

/* ── Sezione hub home (menu + contenuti) ── */
.home-hub {
	width: 100%;
	margin-top: 2.5rem;
	animation: fadeUp 1s 0.35s ease both;
}

.home-hub__panel {
	background: #faf6ee;
	border: 1px solid rgba(201, 168, 76, 0.45);
	border-top: 4px solid var(--gold);
	border-radius: 4px;
	box-shadow: 0 20px 56px rgba(8, 24, 18, 0.45);
	overflow: hidden;
}

.home-hub__aside {
	background: #fff;
	border-right: 1px solid #e5ddd0;
}

.home-hub__main {
	padding: 1.75rem 1.5rem 2rem;
	background: #f3ece0;
}

.home-hub__main--full {
	background: #faf6ee;
}

.home-hub__block--divider {
	border-top: 1px solid #e5ddd0;
}

.home-hub__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.25rem, 2.2vw, 1.6rem);
	font-weight: 700;
	color: var(--green);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.15rem;
	text-align: left;
}

.home-hub__intro {
	color: #3d4f48;
	font-size: 1.02rem;
	line-height: 1.65;
}

.home-hub-card {
	background: #fff;
	border-top: 3px solid var(--gold);
	padding: 1.2rem 1.15rem;
	box-shadow: 0 2px 10px rgba(15, 61, 46, 0.08);
	color: #24332e;
	text-align: left;
}

.home-hub-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.15rem;
	color: var(--green);
	margin-bottom: 0.45rem;
}

.home-hub-meta {
	font-size: 0.78rem;
	color: #6b7a73;
	margin-bottom: 0.35rem;
}

.btn-outline-mg--dark {
	border-color: var(--green);
	color: var(--green);
	text-decoration: none;
}

.btn-outline-mg--dark:hover {
	background: var(--green);
	color: var(--cream);
	text-decoration: none;
}

.btn-outline-mg.btn-outline-mg--filled {
	background: var(--green);
	color: var(--cream);
	border-color: var(--green);
	text-decoration: none;
}

.btn-outline-mg.btn-outline-mg--filled:hover {
	background: var(--green-light);
	color: var(--cream);
	text-decoration: none;
}

.home-sidebar {
	height: 100%;
}

.home-sidebar__head {
	padding: 1rem 1.15rem 0.85rem;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--green);
	border-bottom: 1px solid #e8e2d6;
	background: #f7f3ea;
}

.home-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.home-sidebar__item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.82rem 1.15rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #3d4f48;
	text-decoration: none;
	border-bottom: 1px solid #eee8dc;
	transition: background 0.15s, color 0.15s;
}

.home-sidebar__chevron {
	font-size: 1rem;
	line-height: 1;
	color: #b0b8b3;
	flex-shrink: 0;
}

.home-sidebar__item:last-child a {
	border-bottom: none;
}

.home-sidebar__item a:hover {
	background: #f7f3ea;
	color: var(--green);
}

.home-sidebar__item.is-highlight a,
.home-sidebar__item.is-highlight .home-sidebar__chevron {
	color: #c45a1a;
}

.home-sidebar__item.is-active a {
	background: #f0ebe0;
	color: var(--green);
	border-left: 3px solid var(--gold);
	padding-left: calc(1.15rem - 3px);
}

@media (max-width: 991.98px) {
	.home-hub__aside {
		border-right: none;
		border-bottom: 1px solid #e5ddd0;
	}

	.home-hub__main {
		padding: 1.35rem 1.1rem 1.5rem;
	}
}

/* ── Contacts ── */
.contacts {
	margin-top: 1.75rem;
	animation: fadeUp 1s 0.4s ease both;
}

.contact-block {
	padding: 1.4rem 1.35rem;
	background: rgba(15, 61, 46, 0.45);
	border: 1px solid rgba(201, 168, 76, 0.25);
	border-radius: 4px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	text-align: left;
}

.contact-block h2 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--gold-light);
	margin-bottom: 0.85rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.contact-block address {
	font-style: normal;
	font-size: 0.88rem;
	line-height: 1.65;
	color: rgba(250, 246, 238, 0.82);
}

.contact-block a {
	color: var(--gold-light);
	text-decoration: none;
	border-bottom: 1px solid rgba(201, 168, 76, 0.35);
	transition: color 0.2s, border-color 0.2s;
}

.contact-block a:hover {
	color: var(--cream);
	border-color: var(--cream);
}

.contact-block .role {
	display: block;
	margin-top: 0.65rem;
	font-size: 0.82rem;
	color: rgba(250, 246, 238, 0.6);
}

.contact-block .role strong {
	color: rgba(250, 246, 238, 0.85);
	font-weight: 500;
}

.legal {
	text-align: center;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	color: rgba(250, 246, 238, 0.45);
	padding-top: 0.25rem;
}

/* ── Footer ── */
.footer {
	margin-top: auto;
	padding-top: 1.75rem;
	text-align: center;
	animation: fadeUp 1s 0.5s ease both;
}

.footer p {
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	color: rgba(250, 246, 238, 0.45);
}

.footer-note {
	margin-top: 0.4rem;
}

/* ── Animations ── */
@keyframes fadeDown {
	from { opacity: 0; transform: translateY(-18px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(22px); }
	to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	.bg-slide { animation: none; opacity: 0; }
	.bg-slide:first-child { opacity: 1; }
	.home-hero-carousel .carousel-item.active .home-hero-slide__img { animation: none; transform: none; }
	.mg-progress-bar { animation: none; }
	.logo-wrap, .mg-card, .contacts, .footer, .home-hero-slider__text { animation: none; }
}

@media (max-width: 520px) {
	.mg-card { padding: 2rem 1.4rem 1.75rem; }
	.message { font-size: 0.97rem; }
	.contact-block { padding: 1.2rem 1.1rem; }
}

/* Home discover / stats / marketplace / regions */
.home-discover {
	padding: 2.75rem 0 1.5rem;
	background: #f3eee4;
	border-top: 1px solid #e4dccf;
}
.home-discover__panel {
	background: #faf6ee;
	border: 1px solid #e4dccf;
	padding: 1.5rem 1.35rem;
}
.home-discover__panel--members {
	background: var(--green);
	border-color: var(--green);
	color: var(--cream);
}
.home-discover__eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.55rem;
}
.home-discover__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
	color: inherit;
}
.home-discover__panel--stats .home-discover__title {
	color: var(--green);
}
.home-discover__text {
	color: rgba(250, 246, 238, 0.88);
	margin-bottom: 1.15rem;
	max-width: 28rem;
}
.home-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
@media (min-width: 768px) {
	.home-stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
.home-stats__item {
	text-align: center;
	padding: 0.85rem 0.5rem;
	border: 1px solid #e4dccf;
	background: #fffdf8;
}
.home-stats__value {
	display: block;
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 2rem;
	font-weight: 700;
	color: var(--green);
	line-height: 1.1;
}
.home-stats__label {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #6b7a73;
}
.home-marketplace {
	padding: 2.25rem 0 2.5rem;
	background: #faf6ee;
}
.home-section__more-link {
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--green);
	text-decoration: none;
}
.home-section__more-link:hover {
	color: var(--green-light);
	text-decoration: underline;
}
.home-market-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: #fffdf8;
	border: 1px solid #e4dccf;
	transition: border-color 0.2s, transform 0.2s;
}
.home-market-card:hover {
	border-color: var(--gold);
	transform: translateY(-2px);
	text-decoration: none;
	color: inherit;
}
.home-market-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e8e2d6;
}
.home-market-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.home-market-card__media--empty {
	display: grid;
	place-items: center;
	color: var(--green);
	font-size: 1.75rem;
	opacity: 0.55;
}
.home-market-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.95rem 1rem 1.1rem;
}
.home-market-card__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--green);
}
.home-market-card__meta {
	font-size: 0.82rem;
	color: #6b7a73;
}
.home-regions {
	padding: 0 0 2.75rem;
	background: #faf6ee;
}
.home-regions__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 1.35rem 1.75rem;
	padding: 1.25rem 1.5rem;
	border: 1px solid #e4dccf;
	background: linear-gradient(135deg, #f7f3ea 0%, #efe7d8 100%);
	border-radius: 0.85rem;
}
.home-regions__copy {
	min-width: 0;
}
.home-regions__text {
	margin: 0.35rem 0 0;
	color: #5c6b64;
	max-width: 36rem;
}
.home-regions__map {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.25s ease;
}
.home-regions__map:hover {
	transform: scale(1.04);
}
.home-regions__map-svg {
	width: clamp(78px, 10vw, 108px);
	height: auto;
	filter: drop-shadow(0 6px 14px rgba(15, 61, 46, 0.16));
}
.home-regions__btn {
	justify-self: end;
	white-space: nowrap;
}
@media (max-width: 991.98px) {
	.home-regions__inner {
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"map copy"
			"btn btn";
	}
	.home-regions__map { grid-area: map; }
	.home-regions__copy { grid-area: copy; }
	.home-regions__btn {
		grid-area: btn;
		justify-self: start;
	}
}
@media (max-width: 575.98px) {
	.home-regions__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"map"
			"copy"
			"btn";
		text-align: center;
	}
	.home-regions__text {
		margin-left: auto;
		margin-right: auto;
	}
	.home-regions__btn {
		justify-self: center;
		white-space: normal;
	}
	.home-regions__map-svg {
		width: 96px;
	}
}
