/* Deals & Packages — page scoped. Fonts come from the theme. */
.dp {
	--maroon: #A6362B;
	--maroon-dk: #8A2C22;
	--ink: #16110F;
	--body: #3C3A37;
	--muted: #6B6966;
	--muted2: #7A7269;
	--gold: #A98B5D;
	--cream: #FBF7F4;
	--card-tint: #F9F5F1;
	--line: #E4DCCF;
	--line2: #EDE6DA;
	box-sizing: border-box;
	background: var(--cream);
	font-family: "Cabinet Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--ink);
	-webkit-font-smoothing: antialiased;
	max-width: 100%;
}
.dp *,
.dp *::before,
.dp *::after { box-sizing: border-box; }
.dp h1,
.dp h2,
.dp h3,
.dp h4 {
	font-family: "Vonca", Georgia, serif;
	font-weight: 400;
	margin: 0;
	letter-spacing: -0.015em;
	color: var(--ink);
}
.dp p { margin: 0; }
.dp a { color: var(--maroon); text-decoration: none; }
.dp a:hover { opacity: 0.85; }
.dp a:focus-visible,
.dp summary:focus-visible {
	outline: 2px solid var(--maroon);
	outline-offset: 3px;
}
.dp img { display: block; max-width: 100%; height: auto; }
.dp-wrap { max-width: 1340px; margin: 0 auto; padding: 0 20px; }
.dp .dp-hero { padding: 36px 20px 28px; text-align: center; position: relative; }
body.admin-bar .dp .dp-hero { padding-top: 36px; }
.dp-hero h1 {
	font-size: clamp(40px, 8vw, 64px);
	line-height: 1.05;
	margin: 0 auto 16px;
	max-width: 18ch;
}
.dp .dp-hero__lead {
	font-size: clamp(16px, 3.5vw, 18px);
	line-height: 1.7;
	color: var(--body);
	margin: 0 auto 28px;
	max-width: 920px;
	text-align: center;
}
.dp .dp-hero__lead a { color: #A00000; font-weight: 600; white-space: nowrap; }
.dp-hero__lead strong { color: var(--body); font-weight: 700; }
.dp-hero__actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.dp-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border-radius: 14px;
	font-size: 15px;
	font-weight: 700;
	min-height: 54px;
	background: linear-gradient(135deg, var(--maroon), var(--maroon-dk));
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(166, 54, 43, 0.25);
}
.dp-banner { margin: 0 0 8px; }
.dp-banner a { display: block; }
.dp-banner img { width: 100%; height: auto; }
.dp-section { padding: 40px 0; border-bottom: 1px solid var(--line); }
.dp-section__head { margin-bottom: 28px; }
.dp-h2 { font-size: clamp(28px, 5vw, 40px); line-height: 1.1; }
.dp-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.dp-card {
	background: #fff;
	border-radius: 24px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	transition: transform 400ms cubic-bezier(.16, .8, .3, 1), box-shadow 400ms cubic-bezier(.16, .8, .3, 1);
}
.dp-card:hover { transform: translateY(-8px) rotate(1deg); box-shadow: 0 32px 64px rgba(166, 54, 43, 0.12); }
.dp-card__img {
	aspect-ratio: 4 / 3;
	border-radius: 18px;
	margin: -28px -28px 24px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(166, 54, 43, 0.1), rgba(169, 139, 93, 0.1));
}
.dp-card__img img { width: 100%; height: 100%; object-fit: cover; }
.dp-card h3 { font-size: 24px; line-height: 1.15; margin: 0 0 12px; font-weight: 400; overflow-wrap: anywhere; }
.dp-card__meta { font-size: 13px; color: var(--muted); font-weight: 600; margin: 0 0 16px; }
.dp-tags { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.dp-tag { font-size: 12px; font-weight: 700; padding: 8px 14px; border-radius: 10px; }
.dp-tag--maroon { background: var(--maroon); color: #fff; }
.dp-tag--muted { background: var(--cream); color: var(--muted2); }
.dp-inclusions {
	font-size: 14px;
	line-height: 1.7;
	color: var(--body);
	margin: 0 0 20px;
	padding-left: 20px;
	flex: 1;
}
.dp-inclusions li { margin-bottom: 6px; font-weight: 500; }
.dp-price-box {
	background: var(--card-tint);
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 16px;
	border-left: 4px solid var(--maroon);
}
.dp-price-box__label {
	font-size: 12px;
	color: var(--muted2);
	margin-bottom: 4px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.08em;
}
.dp-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.dp-price {
	font-family: "Vonca", Georgia, serif;
	font-size: clamp(26px, 4vw, 32px);
	color: var(--maroon);
	line-height: 1.1;
	overflow-wrap: anywhere;
}
.dp-price--old { font-size: 14px; color: var(--muted); text-decoration: line-through; font-family: "Cabinet Grotesk", sans-serif; }
.dp-price-note { font-size: 11px; color: var(--body); margin-top: 6px; }
.dp-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--maroon);
	color: #fff !important;
	padding: 14px 20px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	min-height: 52px;
	text-align: center;
}
.dp-final {
	padding: 64px 20px;
	text-align: center;
	background: linear-gradient(135deg, rgba(166, 54, 43, 0.08), rgba(169, 139, 93, 0.08));
	border-radius: 24px;
	margin: 48px auto 56px;
}
.dp-final h2 { font-size: clamp(32px, 5vw, 48px); line-height: 1.1; margin: 0 0 16px; }
.dp-final p { font-size: 16px; color: var(--body); margin: 0 auto 28px; max-width: 60ch; }
@media (min-width: 760px) {
	.dp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
	.dp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (hover: none) {
	.dp-card:hover { transform: none; box-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
	.dp-card { transition: none; }
	.dp-card:hover { transform: none; }
}
@media (max-width: 390px) {
	.dp-wrap { padding: 0 16px; }
	.dp-card { padding: 20px; }
	.dp-card__img { margin: -20px -20px 18px; }
	.dp-hero h1 { font-size: 36px; }
}

/* Solid header on this page only. Matches the Cranchi PDP header treatment. */
body.page-template-mala-deals-and-packages-2025 #header-logo {
	content: url("/wp-content/uploads/2026/03/Group-1171276260-1.svg");
	width: 118px;
	height: auto;
}
/* This page only: header stays on screen while scrolling, same as the homepage. */
body.page-template-mala-deals-and-packages-2025 #site-header.custom-header {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	width: 100% !important;
	z-index: 1001 !important;
}
body.admin-bar.page-template-mala-deals-and-packages-2025 #site-header.custom-header {
	top: 32px !important;
}
@media screen and (max-width: 782px) {
	body.admin-bar.page-template-mala-deals-and-packages-2025 #site-header.custom-header {
		top: 46px !important;
	}
}
body.page-template-mala-deals-and-packages-2025 .dp {
	padding-top: 124px;
}
@media (max-width: 1024px) {
	body.page-template-mala-deals-and-packages-2025 .dp {
		padding-top: 139px;
	}
}