:root {
	--cdpt-primary: #0b1f2e;
	--cdpt-accent: #c5a46d;
	--cdpt-warm: #f7f6f2;
	--cdpt-text: #18232b;
	--cdpt-muted: #66717a;
}

.cdpt-container {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.cdpt-hero {
	padding: clamp(80px, 11vw, 150px) 0;
	color: #fff;
	background: linear-gradient(135deg, #071521, var(--cdpt-primary));
}

.cdpt-eyebrow {
	margin: 0 0 18px;
	color: var(--cdpt-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
}

.cdpt-hero h1 {
	max-width: 850px;
	margin: 0;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(44px, 7vw, 80px);
	font-weight: 500;
	line-height: 1.05;
}

.cdpt-lead {
	max-width: 720px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, .76);
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.7;
}

.cdpt-button {
	display: inline-flex;
	margin-top: 32px;
	padding: 15px 22px;
	border-radius: 7px;
	color: var(--cdpt-primary);
	background: var(--cdpt-accent);
	font-weight: 700;
	text-decoration: none;
}

.cdpt-content-section {
	padding: clamp(70px, 9vw, 120px) 0;
	background: var(--cdpt-warm);
}

.cdpt-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
	gap: 70px;
}

.cdpt-content {
	color: var(--cdpt-text);
	font-size: 17px;
	line-height: 1.8;
}

.cdpt-content h2,
.cdpt-services h2 {
	color: var(--cdpt-primary);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 500;
	line-height: 1.15;
}

.cdpt-services {
	align-self: start;
	padding: 30px;
	border: 1px solid #dadddf;
	border-radius: 12px;
	background: #fff;
}

.cdpt-services h2 {
	margin-top: 0;
	font-size: 28px;
}

.cdpt-services ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.cdpt-services li {
	padding: 13px 0;
	border-bottom: 1px solid #e6e8ea;
	color: var(--cdpt-muted);
}

.cdpt-area-grid {
	display: grid;
	grid-template-columns: repeat(var(--cdpt-columns, 3), minmax(0, 1fr));
	gap: 24px;
}

.cdpt-area-card {
	display: flex;
	min-height: 280px;
	flex-direction: column;
	padding: 30px;
	border: 1px solid #dadddf;
	border-radius: 12px;
	background: #fff;
	transition: transform .2s ease, box-shadow .2s ease;
}

.cdpt-area-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(7, 21, 33, .08);
}

.cdpt-area-icon {
	margin-bottom: 20px;
	color: var(--cdpt-accent);
	font-size: 28px;
}

.cdpt-area-card h3 {
	margin: 0 0 16px;
	color: var(--cdpt-primary);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.15;
}

.cdpt-area-card p {
	margin: 0 0 25px;
	color: var(--cdpt-muted);
	line-height: 1.7;
}

.cdpt-area-card a {
	margin-top: auto;
	color: var(--cdpt-primary);
	font-weight: 700;
	text-decoration: none;
}

@media (max-width: 900px) {
	.cdpt-content-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.cdpt-area-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.cdpt-area-grid {
		grid-template-columns: 1fr;
	}

	.cdpt-container {
		width: min(100% - 28px, 1180px);
	}

	.cdpt-area-card {
		min-height: 0;
		padding: 24px;
	}
}

