:root{
	--venue-wedding-accent:var(--primary, #b88e31);
	--venue-wedding-accent-2:#2a241f;
	--venue-wedding-surface:#fbfaf7;
	--venue-wedding-border:rgba(205,161,61,.18);
	--venue-wedding-text:#4c443d;
	--venue-wedding-muted:#5b5047;
}

.venue-page{
	position:relative;
	background:linear-gradient(180deg,#fbfaf7 0%,#fff 22%,#f7f5f0 100%);
}

.venue-page:before{
	content:"";
	position:absolute;
	inset:0;
	background:radial-gradient(circle at top left,rgba(205,161,61,.08),transparent 34%),radial-gradient(circle at top right,rgba(42,36,31,.06),transparent 28%);
	pointer-events:none;
}

.venue-page>.container,
.venue-hero .container{
	position:relative;
	z-index:1;
}

.venue-hero--wedding .section-hero-media img{
	filter:saturate(.96) contrast(1.04) brightness(.97);
}

.venue-intro{
	max-width:1080px;
	margin:0 auto 34px;
}

.venue-intro p{
	font-size:1.07rem;
	line-height:1.88;
	color:var(--venue-wedding-text);
}

.venue-highlight-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:18px;
	margin:0 0 34px;
}

.venue-highlight-card{
	background:rgba(255,255,255,.92);
	backdrop-filter:blur(8px);
	border:1px solid var(--venue-wedding-border);
	border-radius:24px;
	padding:26px 24px;
	box-shadow:0 18px 45px rgba(53,25,38,.08);
	transition:transform .25s ease,box-shadow .25s ease;
}

.venue-highlight-card:hover{
	transform:translateY(-2px);
	box-shadow:0 22px 50px rgba(53,25,38,.11);
}

.venue-highlight-icon{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:58px;
	height:58px;
	border-radius:18px;
	background:linear-gradient(135deg,var(--venue-wedding-accent),#d7b86d);
	color:#fff;
	font-size:1.15rem;
	margin-bottom:16px;
	box-shadow:0 12px 24px rgba(205,161,61,.22);
}

.venue-highlight-card h2{
	font-size:1.18rem;
	margin:0 0 10px;
	color:#2a241f;
}

.venue-highlight-card p{
	margin:0;
	color:var(--venue-wedding-muted);
	line-height:1.75;
}

.venue-download-band,
.venue-cta-band{
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:24px;
	margin:0 0 34px;
	padding:28px;
	border-radius:26px;
	border:1px solid var(--venue-wedding-border);
	box-shadow:0 20px 48px rgba(53,25,38,.09);
}

.venue-download-band{
	background:linear-gradient(135deg,#2a241f,#4a4037 52%,#cda13d);
	color:#fff;
}

.venue-download-copy span,
.venue-cta-band span,
.venue-section-heading span{
	display:block;
	text-transform:uppercase;
	letter-spacing:.22em;
	font-size:.72rem;
	font-weight:800;
	margin-bottom:10px;
}

.venue-download-copy span,
.venue-cta-band span{
	opacity:.85;
}

.venue-download-copy h2,
.venue-cta-band h2{
	margin:0 0 10px;
	font-size:1.75rem;
	line-height:1.2;
}

.venue-download-band .venue-download-copy h2,
.venue-download-band .venue-download-copy p{
	color:#fff;
}

.venue-download-copy p,
.venue-cta-band p{
	margin:0;
	max-width:760px;
	line-height:1.75;
}

.venue-download-band .venue-download-copy p{
	opacity:.92;
}

.venue-download-actions{
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	gap:12px;
	flex-shrink:0;
}

.venue-download-button,
.venue-cta-band a,
.venue-video-button{
	display:inline-flex;
	align-items:center;
	gap:10px;
	padding:14px 22px;
	border-radius:999px;
	text-decoration:none;
	font-weight:800;
	transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.venue-download-button{
	background:#fff;
	color:#4b2434;
	box-shadow:0 12px 28px rgba(0,0,0,.16);
}

.venue-download-button--secondary{
	background:rgba(255,255,255,.88);
	color:#321826;
}

.venue-download-button:hover,
.venue-cta-band a:hover,
.venue-video-button:hover{
	transform:translateY(-2px);
}

.venue-section-heading{
	max-width:940px;
	margin:0 auto 24px;
	text-align:center;
}

.venue-section-heading span{
	color:var(--venue-wedding-accent);
}

.venue-section-heading h2{
	font-size:2.05rem;
	margin:0 0 10px;
	color:#2a241f;
}

.venue-section-heading p{
	margin:0;
	color:var(--venue-wedding-muted);
	line-height:1.8;
}

.venue-gallery-section{
	margin-bottom:30px;
}

.venue-gallery-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:12px;
}

.venue-gallery-card{
	position:relative;
	display:flex;
	flex-direction:column;
	overflow:hidden;
	border-radius:18px;
	background:#fff;
	border:1px solid var(--venue-wedding-border);
	box-shadow:0 10px 22px rgba(53,25,38,.06);
	text-decoration:none;
	transform:translateY(0);
	transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.venue-gallery-card:hover{
	transform:translateY(-2px);
	box-shadow:0 18px 34px rgba(53,25,38,.12);
	border-color:rgba(205,161,61,.35);
}

.venue-gallery-image{
	position:relative;
	aspect-ratio:16/10;
	overflow:hidden;
	background:#f7f5f0;
}

.venue-gallery-image img{
	width:100%;
	height:100%;
	object-fit:cover;
	display:block;
	transition:transform .35s ease,filter .35s ease;
}

.venue-gallery-card:hover .venue-gallery-image img{
	transform:scale(1.05);
	filter:saturate(1.05) contrast(1.02);
}

.venue-gallery-body{
	display:flex;
	flex-direction:column;
	gap:0;
	padding:10px 12px 11px;
	background:linear-gradient(180deg,#fff,#f7f5f0);
}

.venue-gallery-body strong{
	font-size:.95rem;
	line-height:1.35;
	color:#2a241f;
}

.venue-cta-band{
	background:linear-gradient(135deg,#fffefb,#f7f5f0);
	border-color:rgba(205,161,61,.18);
}

.venue-cta-band h2{
	color:#2a241f;
}

.venue-cta-band p{
	color:var(--venue-wedding-muted);
}

.venue-cta-band a{
	background:linear-gradient(135deg,var(--venue-wedding-accent),#d7b86d);
	color:#fff;
	box-shadow:0 12px 28px rgba(205,161,61,.22);
	white-space:nowrap;
}

.venue-video-grid{
	display:grid;
	grid-template-columns:minmax(0,1.45fr) minmax(280px,.95fr);
	gap:22px;
	align-items:stretch;
	margin:0 0 34px;
}

.venue-video-section{
	margin-bottom:34px;
}

.venue-video-frame{
	position:relative;
	min-height:320px;
	border-radius:24px;
	overflow:hidden;
	border:1px solid var(--venue-wedding-border);
	background:#000;
	box-shadow:0 18px 45px rgba(53,25,38,.08);
}

.venue-video-frame iframe{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	border:0;
}

.venue-video-copy{
	display:flex;
	flex-direction:column;
	justify-content:center;
	gap:18px;
	padding:28px;
	border-radius:24px;
	background:linear-gradient(180deg,#fff,#f7f5f0);
	border:1px solid var(--venue-wedding-border);
	box-shadow:0 18px 45px rgba(53,25,38,.08);
}

.venue-video-copy p{
	margin:0;
	color:var(--venue-wedding-muted);
	line-height:1.8;
}

.venue-video-button{
	background:linear-gradient(135deg,#27111d,#582238);
	color:#fff;
	box-shadow:0 12px 28px rgba(0,0,0,.14);
}

@media (max-width:991px){
	.venue-highlight-grid,
	.venue-gallery-grid,
	.venue-video-grid{
		grid-template-columns:1fr 1fr;
	}

	.venue-download-band,
	.venue-cta-band,
	.venue-video-grid{
		grid-template-columns:1fr;
		flex-direction:column;
		align-items:flex-start;
	}

	.venue-download-actions{
		width:100%;
		align-items:stretch;
	}

	.venue-download-button,
	.venue-cta-band a,
	.venue-video-button{
		width:100%;
		justify-content:center;
		text-align:center;
	}
}

@media (max-width:767px){
	.venue-highlight-grid,
	.venue-gallery-grid{
		grid-template-columns:1fr;
	}

	.venue-highlight-card,
	.venue-download-band,
	.venue-cta-band,
	.venue-video-copy{
		padding:22px 20px;
	}

	.venue-download-button--secondary{
		background:#fff;
	}

	.venue-section-heading h2,
	.venue-download-copy h2,
	.venue-cta-band h2{
		font-size:1.55rem;
	}
}
