/**
 * Deluxe Properties — base, components, layout and page sections.
 * Depends on assets/css/tokens.css being loaded first.
 */

/* ===============================================================
 * 1. Reset & base
 * =============================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	background: var(--dp-white);
	color: var(--dp-ink-300);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-16);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.dp-nav-open {
	overflow: hidden;
}

img,
svg,
video {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--dp-green-700);
	text-decoration: none;
	transition: color var(--dp-speed) var(--dp-ease);
}

a:hover {
	color: var(--dp-gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.5em;
	font-family: var(--dp-font-display);
	font-weight: 600;
	line-height: 1.15;
	color: var(--dp-green-700);
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

ul,
ol {
	margin: 0 0 1em;
	padding-left: 1.25em;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 2px solid var(--dp-gold);
	outline-offset: 3px;
	border-radius: var(--dp-radius-xs);
}

.dp-screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.dp-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: 12px 20px;
	background: var(--dp-green-700);
	color: var(--dp-white);
	font-size: var(--dp-text-14);
}

.dp-skip-link:focus {
	left: 8px;
	top: 8px;
	color: var(--dp-white);
}

/* ===============================================================
 * 2. Layout primitives
 * =============================================================== */

.dp-container {
	width: 100%;
	max-width: var(--dp-container);
	margin-inline: auto;
	padding-inline: var(--dp-gutter);
}

.dp-container--narrow {
	max-width: var(--dp-container-narrow);
}

.dp-section {
	padding-block: clamp(56px, 6vw, 88px);
}

.dp-section--tight {
	padding-block: clamp(40px, 4vw, 58px);
}

.dp-section--cream {
	background: var(--dp-cream);
}

.dp-section--off-white {
	background: var(--dp-off-white);
}

.dp-section--white {
	background: var(--dp-white);
}

.dp-section--ink {
	background: var(--dp-ink-200);
}

.dp-section--green {
	background: var(--dp-green-700);
}

.dp-grid {
	display: grid;
	gap: var(--dp-space-lg);
}

/* ===============================================================
 * 3. Typographic components
 * =============================================================== */

/* Eyebrow with flanking gold rules — used above most section titles. */
.dp-eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--dp-space-sm);
	margin: 0 0 10px;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-11-5);
	font-weight: 600;
	letter-spacing: var(--dp-track-wider);
	line-height: 1;
	text-transform: uppercase;
	color: var(--dp-gold);
}

.dp-eyebrow::before,
.dp-eyebrow::after {
	content: "";
	width: 26px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.dp-eyebrow--start {
	justify-content: flex-start;
}

.dp-eyebrow--start::before {
	display: none;
}

.dp-eyebrow--plain::before,
.dp-eyebrow--plain::after {
	display: none;
}

.dp-eyebrow--green {
	color: var(--dp-green-700);
}

/* Rounded outline chip, e.g. "OUR PORTFOLIO" / "GET IN TOUCH". */
.dp-chip {
	display: inline-flex;
	align-items: center;
	gap: var(--dp-space-xs);
	padding: 7px 16px;
	border: var(--dp-border) solid var(--dp-green-700-a35);
	border-radius: var(--dp-radius-pill);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-11-5);
	font-weight: 600;
	letter-spacing: var(--dp-track-wide);
	line-height: 1;
	text-transform: uppercase;
	color: var(--dp-green-700);
}

.dp-section-title {
	margin: 0;
	font-family: var(--dp-font-display);
	font-size: clamp(1.875rem, 3.2vw, var(--dp-text-46));
	font-weight: 600;
	letter-spacing: var(--dp-track-tight);
	line-height: 1.1;
	color: var(--dp-green-700);
}

.dp-section-title--sans {
	font-family: var(--dp-font-sans);
	font-weight: 600;
	letter-spacing: -0.01em;
}

.dp-section-title--light {
	color: var(--dp-white);
}

.dp-section-lede {
	/* `min()` keeps the measure from exceeding a narrow viewport — a bare `46ch`
	   is ~405px in Jost and overflows a 390px phone. */
	max-width: min(46ch, 100%);
	margin: 10px auto 0;
	font-size: var(--dp-text-16);
	line-height: 1.7;
	color: var(--dp-sage);
}

.dp-section-head {
	text-align: center;
	margin-bottom: var(--dp-space-xl);
}

.dp-section-head--start {
	text-align: left;
}

.dp-section-head--start .dp-section-lede {
	margin-inline: 0;
}

/* ===============================================================
 * 4. Buttons
 * =============================================================== */

.dp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 24px;
	border: var(--dp-border) solid transparent;
	border-radius: var(--dp-radius-xs);
	background: var(--dp-gold);
	color: var(--dp-green-700);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-12-5);
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--dp-speed) var(--dp-ease),
		color var(--dp-speed) var(--dp-ease),
		transform var(--dp-speed) var(--dp-ease),
		box-shadow var(--dp-speed) var(--dp-ease);
}

.dp-btn:hover {
	background: var(--dp-gold-soft);
	color: var(--dp-green-900);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px -14px rgba(217, 181, 41, 0.9);
}

.dp-btn svg {
	width: 16px;
	height: 16px;
	flex: none;
}

.dp-btn--green {
	background: var(--dp-green-700);
	color: var(--dp-white);
}

.dp-btn--green:hover {
	background: var(--dp-green-900);
	color: var(--dp-white);
	box-shadow: 0 10px 24px -14px rgba(0, 92, 59, 0.9);
}

.dp-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.75);
	color: var(--dp-white);
}

.dp-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: var(--dp-white);
	box-shadow: none;
}

.dp-btn--outline {
	background: transparent;
	border-color: var(--dp-green-700-a35);
	color: var(--dp-green-700);
}

.dp-btn--outline:hover {
	background: var(--dp-green-700);
	color: var(--dp-white);
}

.dp-btn--pill {
	border-radius: var(--dp-radius-pill);
}

.dp-btn--lg {
	padding: 16px 30px;
	font-size: var(--dp-text-13);
}

.dp-btn--whatsapp {
	background: var(--dp-green-whatsapp);
	color: var(--dp-white);
	letter-spacing: 0.1em;
}

.dp-btn--whatsapp:hover {
	background: #1fb855;
	color: var(--dp-white);
}

/* Text link that underlines on a hairline rule, e.g. "See all 24 homes". */
.dp-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-bottom: 5px;
	border-bottom: var(--dp-border) solid var(--dp-green-700-a12);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-15);
	font-weight: 500;
	color: var(--dp-green-700);
}

.dp-link-arrow:hover {
	border-bottom-color: var(--dp-gold);
	color: var(--dp-green-900);
}

.dp-link-arrow svg {
	width: 18px;
	height: 12px;
	transition: transform var(--dp-speed) var(--dp-ease);
}

.dp-link-arrow:hover svg {
	transform: translateX(4px);
}

/* ===============================================================
 * 5. Site header
 * =============================================================== */

/*
 * The header floats over the hero rather than sitting above it, so the veil
 * reads against the photograph. `position: fixed` (not sticky) is what lets the
 * hero start at y=0 underneath it.
 */
.dp-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--dp-header-veil);
	transition: background var(--dp-speed) var(--dp-ease),
		box-shadow var(--dp-speed) var(--dp-ease);
}

/*
 * A translucent bar only works over a hero. Any view without one — the single
 * property page — would put white nav text on white content, so it keeps a
 * solid ground.
 */
body:not(.dp-has-hero) .dp-header {
	background: var(--dp-green-900);
}

/* Fixed header is out of flow: give it back on views with no hero to sit over. */
body:not(.dp-has-hero) .dp-main {
	padding-top: var(--dp-header-h);
}

/* Hero pages: content clears the bar instead of hiding beneath it. */
.dp-has-hero .dp-hero {
	padding-top: calc(80px + var(--dp-header-h));
}

/*
 * A scrim under the veil. The veil alone is enough over the darker hero art,
 * but a bright sky behind the nav would leave the white links marginal, and the
 * gradient costs nothing.
 */
.dp-has-hero .dp-header::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(34, 30, 31, 0.34) 0%, rgba(34, 30, 31, 0) 100%);
	transition: opacity var(--dp-speed) var(--dp-ease);
	pointer-events: none;
}

/* Once the bar is solid the scrim has nothing to do. */
.dp-has-hero .dp-header.is-stuck::before {
	opacity: 0;
}

/* Keep the bar clear of the WordPress admin bar for signed-in users. */
body.admin-bar .dp-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .dp-header {
		top: 46px;
	}
}

.dp-header.is-stuck {
	background: var(--dp-green-900-a82);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.9);
}

.dp-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	min-height: var(--dp-header-h);
	padding-inline: var(--dp-gutter);
	max-width: 1748px;
	margin-inline: auto;
}

.dp-header__brand {
	flex: none;
	display: block;
	line-height: 0;
}

/*
 * The lockup is vector, so only the width is pinned and the height follows its
 * 799:247 ratio — pinning both letterboxes it inside the box instead.
 */
.dp-header__brand img {
	width: 158px;
	height: auto;
	object-fit: contain;
}

.dp-header__brand-text {
	display: block;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-26);
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.05;
	color: var(--dp-gold);
	text-transform: uppercase;
}

.dp-header__brand-text small {
	display: block;
	font-size: var(--dp-text-11);
	font-weight: 400;
	letter-spacing: 0.42em;
	color: var(--dp-gold-soft);
}

.dp-header__nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.dp-menu {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dp-menu a {
	display: block;
	padding-bottom: 5px;
	border-bottom: var(--dp-border) solid transparent;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-13);
	font-weight: 500;
	letter-spacing: var(--dp-track-nav);
	line-height: 1.4;
	text-transform: uppercase;
	color: var(--dp-white);
}

.dp-menu a:hover,
.dp-menu .current-menu-item > a,
.dp-menu .current_page_item > a,
.dp-menu .current-menu-ancestor > a {
	border-bottom-color: var(--dp-gold);
	color: var(--dp-gold);
}

/* Dropdowns — "Properties" gained Available / Upcoming children. */
.dp-menu li {
	position: relative;
}

.dp-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 20;
	min-width: 232px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	border-radius: var(--dp-radius-sm);
	background: var(--dp-green-900);
	box-shadow: 0 20px 40px -22px rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity var(--dp-speed) var(--dp-ease),
		transform var(--dp-speed) var(--dp-ease),
		visibility var(--dp-speed);
}

.dp-menu li:hover > .sub-menu,
.dp-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.dp-menu .sub-menu a {
	padding: 11px 20px;
	border-bottom: 0;
	font-size: var(--dp-text-12-5);
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.dp-menu .sub-menu a:hover {
	background: rgba(217, 181, 41, 0.12);
	border-bottom-color: transparent;
}

.dp-header__actions {
	flex: none;
	display: flex;
	align-items: center;
	gap: 26px;
}

.dp-header__phone {
	display: inline-flex;
	align-items: center;
	gap: var(--dp-space-xs);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-14);
	letter-spacing: 0.02em;
	color: var(--dp-white);
}

.dp-header__phone svg {
	width: 15px;
	height: 15px;
	flex: none;
}

.dp-header__phone:hover {
	color: var(--dp-gold);
}

.dp-header__toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.dp-header__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	background: var(--dp-white);
	transition: transform var(--dp-speed) var(--dp-ease),
		opacity var(--dp-speed) var(--dp-ease);
}

.dp-header__toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.dp-header__toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.dp-header__toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ===============================================================
 * 6. Hero
 * =============================================================== */

.dp-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 820px;
	padding-block: 80px;
	overflow: hidden;
	text-align: center;
	isolation: isolate;
}

/* Home hero: fills the viewport so the background video reads as a backdrop. */
.dp-hero--tall {
	min-height: 900px;
	min-height: clamp(760px, 94svh, 1100px);
}

.dp-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
}

.dp-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
 * YouTube background. The iframe keeps 16:9 whatever the section is, so it is
 * centred and blown up past whichever edge is short — the same trick as
 * object-fit: cover, which iframes do not honour. It sits above the still
 * image (both at z-index -2) and hides it once the first frame paints.
 */
.dp-hero__video {
	position: absolute;
	inset: 0;
	z-index: -2;
	overflow: hidden;
	pointer-events: none;
}

.dp-hero__video iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100%;
	border: 0;
	transform: translate(-50%, -50%);
}

/* A moving backdrop is exactly what this setting asks us to drop. */
@media (prefers-reduced-motion: reduce) {
	.dp-hero__video {
		display: none;
	}
}

.dp-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		180deg,
		rgba(34, 30, 31, 0.42) 0%,
		rgba(34, 30, 31, 0.3) 45%,
		rgba(34, 30, 31, 0.55) 100%
	);
}

.dp-hero__eyebrow {
	color: var(--dp-white);
	opacity: 0.92;
}

.dp-hero__title {
	margin: 8px 0 0;
	font-family: var(--dp-font-sans);
	font-size: clamp(3rem, 7vw, var(--dp-text-64));
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	color: var(--dp-gold);
	text-transform: uppercase;
}

.dp-hero__subtitle {
	margin: 6px 0 0;
	font-family: var(--dp-font-sans);
	font-size: clamp(1rem, 1.6vw, var(--dp-text-22));
	font-weight: 400;
	letter-spacing: 0.42em;
	line-height: 1.2;
	color: var(--dp-white);
	text-transform: uppercase;
}

.dp-hero__amharic {
	margin: 18px 0 0;
	font-family: "Noto Sans Ethiopic", var(--dp-font-sans);
	font-size: clamp(1.125rem, 2vw, var(--dp-text-26));
	font-weight: 500;
	line-height: 1.5;
	color: var(--dp-white);
}

.dp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--dp-space-md);
	margin-top: 30px;
}

/* Compact page hero used by About / Properties / archives. */
.dp-page-hero {
	min-height: 480px;
}

.dp-page-hero .dp-hero__title {
	font-family: var(--dp-font-display);
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 600;
	letter-spacing: 0.01em;
}

.dp-page-hero .dp-hero__lede {
	max-width: min(60ch, 100%);
	margin: 14px auto 0;
	font-size: var(--dp-text-16);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.9);
}

.dp-page-hero--short {
	min-height: 355px;
}

/* ===============================================================
 * 7. Project + property cards
 * =============================================================== */

.dp-projects__pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--dp-space-lg);
	padding-block: 22px 16px;
}

.dp-feature-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--dp-radius-lg);
	box-shadow: var(--dp-shadow-feature);
	isolation: isolate;
}

.dp-feature-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: rgba(127, 127, 127, 0.08);
}

.dp-feature-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--dp-ease);
}

.dp-feature-card:hover .dp-feature-card__media img {
	transform: scale(1.04);
}

.dp-status-pill {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 12px;
	border-radius: var(--dp-radius-pill);
	background: rgba(255, 255, 255, 0.92);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-11-5);
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1;
	color: var(--dp-green-700);
}

.dp-status-pill__dot {
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: var(--dp-gold);
}

.dp-status-pill--future .dp-status-pill__dot {
	background: var(--dp-green-700);
	opacity: 0.45;
}

.dp-count-pill {
	position: absolute;
	right: 14px;
	bottom: 15px;
	z-index: 2;
	padding: 7px 13px;
	border-radius: var(--dp-radius-pill);
	background: var(--dp-green-900-a82);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-12);
	line-height: 1;
	color: var(--dp-white);
}

.dp-count-pill strong {
	font-weight: 600;
	color: var(--dp-gold-soft);
}

/* Toolbar between the featured pair and the property grid. */
.dp-projects__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--dp-space-md);
	padding-top: 22px;
	border-top: var(--dp-border) solid var(--dp-green-700-a12);
	font-size: var(--dp-text-14-5);
	color: var(--dp-sage);
}

.dp-projects__toolbar strong {
	font-weight: 500;
	color: var(--dp-green-700);
}

.dp-filter-pill {
	padding: 7px 16px;
	border: var(--dp-border) solid var(--dp-green-700-a12);
	border-radius: var(--dp-radius-pill);
	font-size: var(--dp-text-13-5);
	line-height: 1.4;
	color: var(--dp-green-700);
	background: transparent;
	cursor: pointer;
}

.dp-filter-pill:hover,
.dp-filter-pill.is-active {
	background: var(--dp-green-700);
	border-color: var(--dp-green-700);
	color: var(--dp-white);
}

/* Property card — the three-up grid. */
.dp-property-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
	gap: var(--dp-space-lg);
}

.dp-property-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--dp-radius-md);
	background: var(--dp-white);
	box-shadow: var(--dp-shadow-card);
	transition: transform var(--dp-speed) var(--dp-ease),
		box-shadow var(--dp-speed) var(--dp-ease);
}

.dp-property-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 44px -22px rgba(0, 92, 59, 0.45);
}

.dp-property-card__media {
	position: relative;
	aspect-ratio: 444 / 333;
	background: rgba(127, 127, 127, 0.08);
	overflow: hidden;
}

.dp-property-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dp-property-card__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 12px;
	border: var(--dp-border) dashed rgba(43, 43, 43, 0.35);
	font-family: var(--dp-font-body);
	font-size: 0.775rem;
	line-height: 1.36;
	text-align: center;
	color: var(--dp-ink-300);
	opacity: 0.75;
}

.dp-property-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 5px;
	padding: 20px 20px 22px;
}

.dp-property-card__title {
	margin: 0;
	font-family: var(--dp-font-display);
	font-size: var(--dp-text-19-5);
	font-weight: 600;
	line-height: 1.25;
	color: var(--dp-green-700);
}

.dp-property-card__title a {
	color: inherit;
}

.dp-property-card__title a:hover {
	color: var(--dp-gold);
}

.dp-property-card__meta {
	margin: 0 0 9px;
	font-size: var(--dp-text-14);
	line-height: 1.5;
	color: var(--dp-sage);
}

.dp-property-card__specs {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 6px 12px;
	margin-top: auto;
	padding-top: 14px;
	border-top: var(--dp-border) solid var(--dp-green-700-a12);
}

.dp-property-card__specs dt {
	font-size: var(--dp-text-11-5);
	font-weight: 400;
	letter-spacing: var(--dp-track-wide);
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--dp-sage);
}

.dp-property-card__specs dd {
	margin: 0;
	font-family: var(--dp-font-display);
	font-size: var(--dp-text-17);
	font-weight: 500;
	line-height: 1.4;
	text-align: right;
	color: var(--dp-green-700);
}

.dp-property-card__specs dd.is-sans {
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-15);
}

.dp-projects__footer {
	display: flex;
	justify-content: center;
	padding-top: 20px;
}

/* ===============================================================
 * 8. About split (home) — image + copy
 * =============================================================== */

.dp-about-split {
	position: relative;
	overflow: hidden;
	background: var(--dp-white);
}

.dp-about-split__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}

.dp-about-split__media {
	position: relative;
}

.dp-about-split__media img {
	width: 100%;
	border-radius: 0 var(--dp-radius-lg) var(--dp-radius-lg) 0;
	box-shadow: var(--dp-shadow-panel);
}

.dp-badge-round {
	position: absolute;
	top: -46px;
	right: -30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 116px;
	height: 116px;
	border-radius: 50%;
	background: var(--dp-green-700);
	color: var(--dp-gold-soft);
	text-align: center;
}

.dp-badge-round__value {
	font-family: var(--dp-font-display);
	font-size: var(--dp-text-26);
	font-weight: 600;
	line-height: 1;
	color: var(--dp-gold);
}

.dp-badge-round__value sup {
	font-size: 0.6em;
}

.dp-badge-round__label {
	margin-top: 6px;
	padding-top: 6px;
	border-top: var(--dp-border) solid var(--dp-gold-a45);
	font-family: var(--dp-font-sans);
	font-size: 0.5625rem;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--dp-white);
}

.dp-about-split__title {
	margin: 4px 0 0;
	font-family: var(--dp-font-display);
	font-size: clamp(2rem, 3.4vw, var(--dp-text-46));
	font-weight: 600;
	line-height: 1.05;
	color: var(--dp-green-700);
}

.dp-pill-soft {
	display: inline-block;
	margin-top: 14px;
	padding: 8px 18px;
	border-radius: var(--dp-radius-pill);
	background: rgba(0, 92, 59, 0.08);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-12);
	font-weight: 600;
	letter-spacing: var(--dp-track-wider);
	line-height: 1;
	text-transform: uppercase;
	color: var(--dp-green-700);
}

.dp-rule-gold {
	width: 56px;
	height: 2px;
	margin: 22px 0;
	border: 0;
	background: var(--dp-gold);
}

.dp-about-split__body p {
	font-size: var(--dp-text-16);
	line-height: 1.75;
	color: var(--dp-ink-600);
}

.dp-usp-list {
	margin: 26px 0 0;
	padding: 22px 0 0;
	border-top: var(--dp-border) solid var(--dp-line);
	list-style: none;
	display: grid;
	gap: var(--dp-space-md);
}

.dp-usp-list li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.dp-usp-list__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(0, 92, 59, 0.07);
	color: var(--dp-green-700);
}

.dp-usp-list__icon svg {
	width: 17px;
	height: 17px;
}

.dp-usp-list h3 {
	margin: 0 0 2px;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-15);
	font-weight: 600;
	line-height: 1.4;
	color: var(--dp-green-700);
}

.dp-usp-list p {
	margin: 0;
	font-size: var(--dp-text-14);
	line-height: 1.6;
	color: var(--dp-sage);
}

.dp-about-split__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--dp-space-sm);
	margin-top: 28px;
}

/* Faint city skyline that sits under the about split. */
.dp-skyline {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 120px;
	background: repeating-linear-gradient(
		90deg,
		transparent 0 46px,
		rgba(0, 92, 59, 0.05) 46px 78px
	);
	mask-image: linear-gradient(180deg, transparent, #000);
	-webkit-mask-image: linear-gradient(180deg, transparent, #000);
	pointer-events: none;
}

/* ===============================================================
 * 9. Sister companies
 * =============================================================== */

.dp-sister-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--dp-space-lg);
}

.dp-sister-strip__item {
	padding: 26px 18px;
	border-radius: var(--dp-radius-sm);
	background: var(--dp-white);
	text-align: center;
	box-shadow: 0 4px 16px -12px rgba(0, 65, 42, 0.5);
}

.dp-sister-strip__name {
	margin: 0;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-17);
	font-weight: 600;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--dp-green-700);
}

.dp-sister-strip__role {
	margin: 8px 0 0;
	font-size: var(--dp-text-14);
	line-height: 1.5;
	color: var(--dp-grey-500);
}

/* Card variant with a logo tile — About page. */
.dp-sister-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--dp-space-lg);
}

.dp-sister-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: var(--dp-radius-sm);
	background: var(--dp-white);
	box-shadow: 0 10px 26px -20px rgba(0, 65, 42, 0.6);
}

.dp-sister-card__logo {
	aspect-ratio: 3 / 2;
	background: var(--dp-off-white);
}

.dp-sister-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dp-sister-card__body {
	padding: 18px 18px 22px;
}

.dp-sister-card__title {
	margin: 0 0 8px;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-15);
	font-weight: 600;
	line-height: 1.35;
	color: var(--dp-green-700);
}

.dp-sister-card__text {
	margin: 0;
	font-size: var(--dp-text-13-5);
	line-height: 1.6;
	color: var(--dp-grey-500);
}

/* ===============================================================
 * 10. Site-visit CTA + video band
 * =============================================================== */

.dp-visit-cta {
	padding-block: clamp(48px, 5vw, 72px);
	background: var(--dp-line-deep);
	text-align: center;
}

.dp-visit-cta__title {
	margin: 0 0 24px;
	font-family: var(--dp-font-sans);
	font-size: clamp(1.75rem, 3.4vw, var(--dp-text-44));
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1.15;
	color: var(--dp-white);
}

.dp-video-band {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--dp-green-900);
}

.dp-video-band img {
	width: 100%;
	object-fit: cover;
}

.dp-video-band__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.dp-video-band__play span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(4px);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6) inset;
	color: var(--dp-white);
	transition: transform var(--dp-speed) var(--dp-ease),
		background var(--dp-speed) var(--dp-ease);
}

.dp-video-band__play:hover span {
	transform: scale(1.08);
	background: rgba(217, 181, 41, 0.9);
}

.dp-video-band__play svg {
	width: 26px;
	height: 26px;
	margin-left: 4px;
}

/* ===============================================================
 * 11. "What makes us different"
 * =============================================================== */

.dp-difference {
	background: var(--dp-ink-200);
	padding-block: clamp(48px, 5vw, 72px);
}

.dp-difference__title {
	margin: 0 0 36px;
	font-family: var(--dp-font-sans);
	font-size: clamp(1.5rem, 2.6vw, var(--dp-text-32));
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	color: var(--dp-white);
}

.dp-difference__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--dp-space-lg);
}

.dp-difference__grid--tail {
	max-width: 940px;
	margin: var(--dp-space-lg) auto 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dp-difference-card {
	padding: 22px 22px 26px;
	border: var(--dp-border) solid var(--dp-gold-a45);
	border-radius: var(--dp-radius-sm);
	background: rgba(255, 255, 255, 0.02);
	text-align: center;
	transition: border-color var(--dp-speed) var(--dp-ease),
		background var(--dp-speed) var(--dp-ease);
}

.dp-difference-card:hover {
	border-color: var(--dp-gold);
	background: rgba(217, 181, 41, 0.06);
}

.dp-difference-card__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 16px;
	text-align: left;
}

.dp-difference-card__icon {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: var(--dp-border) solid var(--dp-gold);
	border-radius: var(--dp-radius-sm);
	color: var(--dp-gold);
}

.dp-difference-card__icon svg {
	width: 24px;
	height: 24px;
}

.dp-difference-card__title {
	margin: 0;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-16);
	font-weight: 600;
	line-height: 1.3;
	color: var(--dp-gold);
}

.dp-difference-card__text {
	margin: 0;
	font-size: var(--dp-text-14);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.72);
}

/* Green-on-green variant used on the Properties page. */
.dp-difference--green {
	background: var(--dp-green-700);
}

.dp-difference--green .dp-difference__grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dp-difference--green .dp-difference-card {
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.05);
	text-align: left;
}

.dp-difference--green .dp-difference-card__head {
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.dp-difference--green .dp-difference-card__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border-color: var(--dp-gold-a45);
}

/* ===============================================================
 * 12. Stats bar
 * =============================================================== */

.dp-stats {
	background: var(--dp-green-700);
	background-image: linear-gradient(
		120deg,
		var(--dp-green-900) 0%,
		var(--dp-green-700) 45%,
		var(--dp-green-500) 100%
	);
	padding-block: 40px;
}

.dp-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--dp-space-lg);
	text-align: center;
}

.dp-stats__value {
	display: block;
	font-family: var(--dp-font-sans);
	font-size: clamp(1.875rem, 3.4vw, var(--dp-text-40));
	font-weight: 700;
	line-height: 1;
	color: var(--dp-gold);
}

.dp-stats__label {
	display: block;
	margin-top: 10px;
	font-size: var(--dp-text-14);
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
}

/* ===============================================================
 * 13. Testimonials
 * =============================================================== */

.dp-testimonials__title {
	margin: 0 0 34px;
	font-family: var(--dp-font-sans);
	font-size: clamp(1.5rem, 2.6vw, var(--dp-text-32));
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	color: var(--dp-ink-200);
}

.dp-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 56px);
}

.dp-testimonial {
	text-align: center;
}

.dp-testimonial__stars {
	margin-bottom: 12px;
	font-size: var(--dp-text-13);
	letter-spacing: 0.18em;
	line-height: 1;
	color: var(--dp-gold);
}

.dp-testimonial__quote {
	margin: 0 0 20px;
	font-size: var(--dp-text-14-5);
	line-height: 1.75;
	color: var(--dp-grey-700);
}

.dp-testimonial__person {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-align: left;
}

.dp-testimonial__avatar {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--dp-green-700);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-13);
	font-weight: 600;
	color: var(--dp-white);
}

.dp-testimonial__name {
	display: block;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-14);
	font-weight: 600;
	line-height: 1.3;
	color: var(--dp-ink-200);
}

.dp-testimonial__role {
	display: block;
	font-size: var(--dp-text-12-5);
	line-height: 1.3;
	color: var(--dp-grey-400);
}

/* ===============================================================
 * 14. Contact section
 * =============================================================== */

.dp-contact {
	background: var(--dp-off-white);
	padding-block: clamp(56px, 6vw, 88px);
}

.dp-contact__head {
	max-width: 720px;
	margin-bottom: 28px;
}

.dp-contact__title {
	margin: 18px 0 12px;
	font-family: var(--dp-font-sans);
	font-size: clamp(1.75rem, 3.6vw, var(--dp-text-44));
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.15;
	color: var(--dp-ink-200);
}

.dp-contact__lede {
	margin: 0;
	font-size: var(--dp-text-16);
	line-height: 1.7;
	color: var(--dp-grey-500);
}

.dp-contact__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: var(--dp-space-2xl);
	align-items: start;
}

.dp-contact__form-wrap {
	padding: clamp(24px, 3vw, 38px);
	border: var(--dp-border) solid var(--dp-line);
	border-radius: var(--dp-radius-md);
	background: var(--dp-white);
}

.dp-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--dp-space-lg);
}

.dp-field {
	display: block;
	margin-bottom: var(--dp-space-lg);
}

.dp-field__label {
	display: block;
	margin-bottom: 8px;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-11-5);
	font-weight: 600;
	letter-spacing: var(--dp-track-wide);
	line-height: 1;
	text-transform: uppercase;
	color: var(--dp-ink-300);
}

.dp-field__control {
	width: 100%;
	padding: 14px 16px;
	border: var(--dp-border) solid var(--dp-line);
	border-radius: var(--dp-radius-sm);
	background: var(--dp-white);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-15);
	line-height: 1.5;
	color: var(--dp-ink-200);
	transition: border-color var(--dp-speed) var(--dp-ease),
		box-shadow var(--dp-speed) var(--dp-ease);
}

.dp-field__control::placeholder {
	color: var(--dp-grey-400);
}

.dp-field__control:focus {
	border-color: var(--dp-green-700);
	box-shadow: 0 0 0 3px var(--dp-green-700-a12);
	outline: none;
}

textarea.dp-field__control {
	min-height: 130px;
	resize: vertical;
}

.dp-form__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--dp-space-md);
}

.dp-form__note {
	margin: 0;
	font-size: var(--dp-text-13);
	line-height: 1.5;
	color: var(--dp-grey-400);
}

.dp-form__feedback {
	margin-top: var(--dp-space-md);
	padding: 12px 16px;
	border-radius: var(--dp-radius-sm);
	font-size: var(--dp-text-14);
	line-height: 1.5;
}

.dp-form__feedback:empty {
	display: none;
}

.dp-form__feedback.is-success {
	background: rgba(0, 92, 59, 0.08);
	color: var(--dp-green-700);
}

.dp-form__feedback.is-error {
	background: rgba(192, 57, 43, 0.08);
	color: var(--dp-danger);
}

/* Honeypot — hidden from people, visible to naive bots. */
.dp-field--trap {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.dp-contact__panel {
	padding: clamp(26px, 3vw, 36px);
	border-radius: var(--dp-radius-md);
	background: var(--dp-ink-200);
	color: var(--dp-white);
}

.dp-contact__panel-eyebrow {
	margin: 0 0 8px;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-12);
	font-weight: 600;
	letter-spacing: var(--dp-track-wide);
	line-height: 1;
	text-transform: uppercase;
	color: var(--dp-gold);
}

.dp-contact__panel-title {
	margin: 0 0 26px;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-26);
	font-weight: 600;
	line-height: 1.2;
	color: var(--dp-white);
}

.dp-contact-list {
	margin: 0 0 26px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 20px;
}

.dp-contact-list li {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.dp-contact-list__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(217, 181, 41, 0.12);
	color: var(--dp-gold);
}

.dp-contact-list__icon svg {
	width: 17px;
	height: 17px;
}

.dp-contact-list__label {
	display: block;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-11-5);
	font-weight: 600;
	letter-spacing: var(--dp-track-wide);
	line-height: 1.4;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

.dp-contact-list__value {
	display: block;
	font-size: var(--dp-text-15);
	line-height: 1.5;
	color: var(--dp-white);
}

.dp-contact-list__value:hover {
	color: var(--dp-gold);
}

.dp-contact__panel-divider {
	height: 1px;
	margin-bottom: 20px;
	border: 0;
	background: rgba(255, 255, 255, 0.12);
}

.dp-contact__panel-note {
	margin: 0 0 16px;
	font-size: var(--dp-text-14);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
}

.dp-contact__panel .dp-btn--whatsapp {
	width: 100%;
}

/* ===============================================================
 * 15. Site footer
 * =============================================================== */

.dp-footer {
	background: var(--dp-green-700);
	color: var(--dp-white);
	padding-block: 46px 0;
}

.dp-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}

.dp-footer__brand {
	display: block;
	line-height: 0;
}

.dp-footer__brand img {
	width: 196px;
	height: auto;
	object-fit: contain;
}

.dp-footer__tagline {
	margin: 18px 0 0;
	max-width: min(34ch, 100%);
	font-size: var(--dp-text-14);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.78);
}

.dp-social {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.dp-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: var(--dp-border) solid var(--dp-gold-a45);
	border-radius: var(--dp-radius-sm);
	color: var(--dp-gold);
	transition: background var(--dp-speed) var(--dp-ease),
		color var(--dp-speed) var(--dp-ease),
		border-color var(--dp-speed) var(--dp-ease);
}

.dp-social a:hover {
	background: var(--dp-gold);
	border-color: var(--dp-gold);
	color: var(--dp-green-700);
}

.dp-social svg {
	width: 17px;
	height: 17px;
}

.dp-footer__map {
	overflow: hidden;
	border-radius: var(--dp-radius-sm);
	background: rgba(255, 255, 255, 0.06);
	aspect-ratio: 412 / 220;
}

.dp-footer__map img,
.dp-footer__map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.dp-footer__contact {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}

.dp-footer__contact li {
	display: grid;
	grid-template-columns: 20px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	font-size: var(--dp-text-15);
	line-height: 1.5;
	color: var(--dp-white);
}

.dp-footer__contact svg {
	width: 16px;
	height: 16px;
	margin-top: 4px;
	color: var(--dp-gold);
}

.dp-footer__contact a {
	color: var(--dp-white);
}

.dp-footer__contact a:hover {
	color: var(--dp-gold);
}

.dp-footer__bottom {
	margin-top: 44px;
	padding-block: 20px;
	border-top: var(--dp-border) solid rgba(255, 255, 255, 0.14);
	text-align: center;
	font-size: var(--dp-text-13);
	line-height: 1.5;
	color: var(--dp-gold-soft);
}

/* Floating WhatsApp pill. */
.dp-whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px 12px 22px;
	border-radius: var(--dp-radius-pill);
	background: var(--dp-green-whatsapp);
	box-shadow: 0 14px 30px -14px rgba(37, 211, 102, 0.8);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-15);
	font-weight: 500;
	line-height: 1;
	color: var(--dp-white);
	transition: transform var(--dp-speed) var(--dp-ease);
}

.dp-whatsapp-float:hover {
	transform: translateY(-2px);
	color: var(--dp-white);
}

.dp-whatsapp-float__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
}

.dp-whatsapp-float svg {
	width: 19px;
	height: 19px;
}

/* ===============================================================
 * 16. Properties page — phase cards
 * =============================================================== */

.dp-phase-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--dp-space-xl);
}

.dp-phase-card {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--dp-radius-sm);
	background: var(--dp-green-700);
	box-shadow: var(--dp-shadow-card);
}

.dp-phase-card__media {
	aspect-ratio: 448 / 275;
	overflow: hidden;
}

.dp-phase-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--dp-ease);
}

.dp-phase-card:hover .dp-phase-card__media img {
	transform: scale(1.05);
}

.dp-phase-card__body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--dp-space-md);
	padding: 22px 26px 26px;
}

.dp-phase-card__title {
	margin: 0 0 8px;
	font-family: var(--dp-font-display);
	font-size: var(--dp-text-26);
	font-weight: 600;
	line-height: 1.2;
	color: var(--dp-gold);
}

.dp-phase-card__text {
	margin: 0;
	max-width: min(46ch, 100%);
	font-size: var(--dp-text-14);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.86);
}

.dp-phase-card__badge {
	flex: none;
	padding: 10px 18px;
	border-radius: var(--dp-radius-xs);
	background: var(--dp-gold);
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-11-5);
	font-weight: 600;
	letter-spacing: var(--dp-track-wide);
	line-height: 1;
	text-transform: uppercase;
	color: var(--dp-green-700);
}

.dp-phase-card__badge--light {
	background: var(--dp-white);
}

/* ===============================================================
 * 17. About page sections
 * =============================================================== */

.dp-office-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 66px);
	align-items: center;
}

.dp-office-split__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--dp-radius-sm);
	box-shadow: var(--dp-shadow-panel);
}

.dp-office-split__caption {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
	padding: 14px 18px;
	background: var(--dp-green-700);
	font-size: var(--dp-text-12-5);
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
}

.dp-office-split__caption strong {
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--dp-gold);
}

.dp-office-split__title {
	margin: 10px 0 14px;
	font-family: var(--dp-font-sans);
	font-size: clamp(1.5rem, 2.8vw, var(--dp-text-32));
	font-weight: 600;
	line-height: 1.25;
	color: var(--dp-ink-200);
}

.dp-office-split__text {
	margin: 0 0 24px;
	font-size: var(--dp-text-16);
	line-height: 1.7;
	color: var(--dp-grey-500);
}

.dp-office-facts {
	display: flex;
	flex-wrap: wrap;
	gap: var(--dp-space-lg);
	margin-top: 26px;
	padding: 0;
	list-style: none;
}

.dp-office-facts li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: var(--dp-text-14);
	line-height: 1.4;
	color: var(--dp-grey-700);
}

.dp-office-facts__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--dp-concrete);
	color: var(--dp-ink-200);
}

.dp-office-facts__icon svg {
	width: 15px;
	height: 15px;
}

/* Values cards */
.dp-values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--dp-space-lg);
}

.dp-value-card {
	padding: 30px 26px 34px;
	border: var(--dp-border) solid var(--dp-line-warm);
	border-radius: var(--dp-radius-sm);
	background: var(--dp-white);
	box-shadow: 0 10px 26px -22px rgba(0, 65, 42, 0.6);
}

.dp-value-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: var(--dp-green-700);
	color: var(--dp-gold);
}

.dp-value-card__icon svg {
	width: 20px;
	height: 20px;
}

.dp-value-card__title {
	margin: 0 0 10px;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-17);
	font-weight: 600;
	line-height: 1.3;
	color: var(--dp-green-700);
}

.dp-value-card__text {
	margin: 0;
	font-size: var(--dp-text-14);
	line-height: 1.7;
	color: var(--dp-grey-500);
}

/* FAQ accordion */
.dp-faq {
	display: grid;
	gap: var(--dp-space-sm);
	max-width: 940px;
	margin-inline: auto;
}

.dp-faq__item {
	border: var(--dp-border) solid var(--dp-line-warm);
	border-radius: var(--dp-radius-sm);
	background: var(--dp-white);
	overflow: hidden;
}

.dp-faq__item[open] {
	border-color: var(--dp-green-700-a35);
}

.dp-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--dp-space-md);
	padding: 20px 24px;
	cursor: pointer;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-17);
	font-weight: 500;
	line-height: 1.4;
	color: var(--dp-green-700);
	list-style: none;
}

.dp-faq__question::-webkit-details-marker {
	display: none;
}

.dp-faq__marker {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: var(--dp-border) solid var(--dp-gold-a45);
	border-radius: 50%;
	color: var(--dp-gold);
	transition: background var(--dp-speed) var(--dp-ease),
		color var(--dp-speed) var(--dp-ease);
}

.dp-faq__item[open] .dp-faq__marker {
	background: var(--dp-green-700);
	border-color: var(--dp-green-700);
	color: var(--dp-white);
}

.dp-faq__marker svg {
	width: 14px;
	height: 14px;
}

.dp-faq__answer {
	padding: 0 24px 22px;
	font-size: var(--dp-text-14);
	line-height: 1.75;
	color: var(--dp-grey-500);
}

.dp-support-banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--dp-space-lg);
	max-width: 940px;
	margin: var(--dp-space-xl) auto 0;
	padding: 22px 26px;
	border-radius: var(--dp-radius-sm);
	background: var(--dp-green-700);
	color: var(--dp-white);
}

.dp-support-banner__eyebrow {
	margin: 0 0 4px;
	font-family: var(--dp-font-sans);
	font-size: var(--dp-text-11-5);
	font-weight: 600;
	letter-spacing: var(--dp-track-wide);
	line-height: 1;
	text-transform: uppercase;
	color: var(--dp-gold);
}

.dp-support-banner__text {
	margin: 0;
	font-size: var(--dp-text-14-5);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.86);
}

/* ===============================================================
 * 18. Single property
 * =============================================================== */

.dp-property-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: var(--dp-space-2xl);
	align-items: start;
}

.dp-property-hero__media {
	overflow: hidden;
	border-radius: var(--dp-radius-md);
	box-shadow: var(--dp-shadow-card);
}

.dp-property-hero__title {
	margin: 12px 0 6px;
	font-family: var(--dp-font-display);
	font-size: clamp(2rem, 3.4vw, var(--dp-text-44));
	font-weight: 600;
	line-height: 1.1;
	color: var(--dp-green-700);
}

.dp-property-hero__meta {
	margin: 0 0 24px;
	font-size: var(--dp-text-16);
	line-height: 1.6;
	color: var(--dp-sage);
}

.dp-spec-table {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px 18px;
	margin: 0 0 28px;
	padding-top: 18px;
	border-top: var(--dp-border) solid var(--dp-green-700-a12);
}

.dp-spec-table dt {
	font-size: var(--dp-text-11-5);
	letter-spacing: var(--dp-track-wide);
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--dp-sage);
}

.dp-spec-table dd {
	margin: 0;
	font-family: var(--dp-font-display);
	font-size: var(--dp-text-19-5);
	font-weight: 500;
	line-height: 1.3;
	text-align: right;
	color: var(--dp-green-700);
}

.dp-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
	gap: var(--dp-space-sm);
	margin-top: var(--dp-space-xl);
}

.dp-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--dp-radius-sm);
}

/* ===============================================================
 * 19. Editorial / fallback content
 * =============================================================== */

.dp-entry {
	max-width: var(--dp-container-narrow);
	margin-inline: auto;
}

.dp-entry__title {
	margin-bottom: 8px;
	font-size: clamp(1.875rem, 3.4vw, var(--dp-text-44));
}

.dp-entry__meta {
	margin-bottom: 28px;
	font-size: var(--dp-text-14);
	color: var(--dp-grey-400);
}

.dp-entry__content {
	font-family: var(--dp-font-body);
	font-size: var(--dp-text-16);
	line-height: 1.8;
	color: var(--dp-grey-700);
}

.dp-entry__content h2,
.dp-entry__content h3 {
	margin-top: 1.6em;
}

.dp-entry__content img {
	border-radius: var(--dp-radius-sm);
}

.dp-entry__content blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--dp-gold);
	font-family: var(--dp-font-display);
	font-size: var(--dp-text-19-5);
	line-height: 1.6;
	color: var(--dp-green-700);
}

.dp-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: var(--dp-space-xl);
}

.dp-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding-inline: 12px;
	border: var(--dp-border) solid var(--dp-green-700-a12);
	border-radius: var(--dp-radius-pill);
	font-size: var(--dp-text-14);
	color: var(--dp-green-700);
}

.dp-pagination .page-numbers.current,
.dp-pagination .page-numbers:hover {
	background: var(--dp-green-700);
	border-color: var(--dp-green-700);
	color: var(--dp-white);
}

.dp-empty {
	padding: 48px 24px;
	border: var(--dp-border) dashed var(--dp-line-deep);
	border-radius: var(--dp-radius-md);
	text-align: center;
	color: var(--dp-grey-500);
}

/* ===============================================================
 * 20. Responsive
 * =============================================================== */

@media (max-width: 1180px) {
	.dp-difference--green .dp-difference__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.dp-sister-grid,
	.dp-sister-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.dp-header__toggle {
		display: block;
		order: 3;
	}

	.dp-header__nav {
		position: fixed;
		inset: var(--dp-header-h) 0 auto 0;
		display: block;
		max-height: 0;
		overflow: hidden;
		background: var(--dp-green-900);
		transition: max-height var(--dp-speed) var(--dp-ease);
	}

	.dp-header__nav.is-open {
		max-height: calc(100vh - var(--dp-header-h));
		overflow-y: auto;
	}

	.dp-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px var(--dp-gutter) 24px;
	}

	.dp-menu a {
		padding-block: 16px;
		border-bottom: var(--dp-border) solid rgba(255, 255, 255, 0.1);
	}

	/* In the mobile panel the dropdown flattens into an indented list. */
	.dp-menu .sub-menu {
		position: static;
		min-width: 0;
		padding: 0 0 0 18px;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.dp-menu .sub-menu a {
		padding-block: 13px;
		border-bottom: var(--dp-border) solid rgba(255, 255, 255, 0.08);
		color: rgba(255, 255, 255, 0.82);
		/* The desktop dropdown keeps its items on one line; in the stacked
		   mobile panel that would push the whole nav past the viewport. */
		white-space: normal;
	}

	.dp-header__actions {
		margin-left: auto;
		gap: 16px;
	}

	/* Tablet header in the design is logo + menu + a single action, so the
	   phone number collapses to its icon. */
	.dp-header__phone span {
		display: none;
	}

	.dp-hero {
		min-height: 560px;
	}

	.dp-hero--tall {
		min-height: clamp(600px, 78svh, 820px);
	}

	.dp-page-hero {
		min-height: 360px;
	}

	.dp-about-split__inner,
	.dp-office-split,
	.dp-contact__layout,
	.dp-property-hero {
		grid-template-columns: minmax(0, 1fr);
	}

	.dp-about-split__media img {
		border-radius: var(--dp-radius-lg);
	}

	.dp-badge-round {
		top: -32px;
		right: 16px;
		width: 96px;
		height: 96px;
	}

	.dp-difference__grid,
	.dp-difference--green .dp-difference__grid,
	.dp-values-grid,
	.dp-testimonials__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.dp-footer__contact {
		grid-column: span 2;
	}
}

@media (max-width: 720px) {
	/* The design's mobile header is logo + burger only; keeping the phone and
	   the CTA here pushes the bar past a 390px viewport. */
	.dp-header__phone,
	.dp-header__cta {
		display: none;
	}

	.dp-header__brand img {
		width: 124px;
	}

	.dp-projects__pair,
	.dp-phase-grid,
	.dp-stats__grid,
	.dp-difference__grid,
	.dp-difference--green .dp-difference__grid,
	.dp-difference__grid--tail,
	.dp-values-grid,
	.dp-sister-grid,
	.dp-sister-strip,
	.dp-testimonials__grid,
	.dp-form__row,
	.dp-footer__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.dp-stats__grid {
		gap: 28px;
	}

	.dp-stats__grid > * + * {
		padding-top: 24px;
		border-top: var(--dp-border) solid rgba(255, 255, 255, 0.16);
	}

	.dp-footer__contact {
		grid-column: auto;
	}

	.dp-hero {
		min-height: 500px;
	}

	.dp-hero--tall {
		min-height: clamp(520px, 74svh, 700px);
	}

	.dp-hero__actions .dp-btn {
		width: 100%;
	}

	.dp-projects__toolbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.dp-phase-card__body {
		flex-direction: column;
		align-items: flex-start;
	}

	.dp-whatsapp-float {
		right: 16px;
		bottom: 16px;
		padding: 10px;
	}

	.dp-whatsapp-float span:not(.dp-whatsapp-float__icon) {
		display: none;
	}

	.dp-support-banner {
		flex-direction: column;
		align-items: flex-start;
	}
}
