:root {
    --dl-navy: #214555;
    --dl-navy-dark: #16303c;
    --dl-green: #87915c;
    --dl-gold: #b4c672;
    --dl-warm-gray: #cfcbc8;
    --dl-light-gray: #d4dcdf;
    --dl-off-white: #f9f8f6;
    --dl-white: #ffffff;
    --dl-ink: #1c2d34;
    --dl-muted: #617178;
    --dl-border: rgba(33, 69, 85, 0.16);
    --dl-shadow: 0 18px 44px rgba(14, 31, 39, 0.14);
    --dl-radius: 8px;
    --dl-header-height: 78px;
    --dl-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dl-off-white);
    color: var(--dl-ink);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.6;
}

body.is-modal-open,
body.is-nav-open {
    overflow: hidden;
}

img,
video,
iframe {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--dl-green);
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    color: inherit;
    font-weight: 700;
    line-height: 1.08;
}

h1,
h2 {
    text-transform: uppercase;
}

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

.screen-reader-text,
.dl-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.dl-skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    margin: 0;
    clip: auto;
    background: var(--dl-white);
    color: var(--dl-navy);
}

.dl-container {
    width: min(100% - 40px, var(--dl-container));
    margin-inline: auto;
}

.dl-site-header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto;
    height: var(--dl-header-height);
    background: rgba(22, 48, 60, 0.92);
    color: var(--dl-white);
    backdrop-filter: blur(10px);
}

.dl-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(100% - 40px, 1280px);
    height: 100%;
    margin-inline: auto;
}

.dl-header-logo {
    display: inline-flex;
    align-items: center;
    min-width: 210px;
    font-weight: 700;
    text-transform: uppercase;
}

.dl-logo,
.dl-footer-logo {
    max-height: 46px;
    max-width: 230px;
    width: auto;
    object-fit: contain;
}

.dl-footer-logo {
    max-height: 56px;
    max-width: 260px;
}

.dl-logo-text {
    max-width: 220px;
    color: var(--dl-white);
    font-size: 0.92rem;
    line-height: 1.15;
}

.dl-primary-nav {
    display: flex;
    align-items: center;
}

.dl-menu,
.dl-footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dl-menu a {
    color: var(--dl-white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.dl-menu a:hover {
    color: var(--dl-gold);
}

.dl-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: var(--dl-white);
    cursor: pointer;
}

.dl-nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
}

.dl-site-main {
    min-height: 60vh;
}

.dl-hero {
    position: relative;
    display: grid;
    min-height: 760px;
    place-items: center;
    color: var(--dl-white);
    background:
        linear-gradient(135deg, rgba(22, 48, 60, 0.62), rgba(22, 48, 60, 0.86)),
        var(--hero-image, linear-gradient(135deg, var(--dl-navy), var(--dl-green))),
        linear-gradient(135deg, var(--dl-navy), var(--dl-green));
    background-position: center;
    background-size: cover;
}

.dl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.34));
}

.dl-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--dl-header-height);
    text-align: center;
}

.dl-vertical-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
    min-height: 92px;
    margin-bottom: 32px;
    color: var(--dl-white);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

img.dl-vertical-logo {
    display: block;
    width: min(250px, 62vw);
    height: auto;
    min-height: 0;
    max-width: 250px;
    object-fit: contain;
}

.dl-hero h1 {
    max-width: 970px;
    font-size: clamp(3rem, 7vw, 6.8rem);
}

.dl-hero p {
    max-width: 720px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.18rem;
}

.dl-hero-actions,
.dl-inline-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.dl-inline-actions {
    justify-content: flex-start;
}

.dl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.dl-button:hover {
    transform: translateY(-1px);
}

.dl-hero-actions .dl-button {
    width: 220px;
}

.dl-button-primary {
    background: var(--dl-gold);
    border-color: var(--dl-gold);
    color: var(--dl-navy-dark);
}

.dl-button-primary:hover {
    background: var(--dl-white);
    border-color: var(--dl-white);
    color: var(--dl-navy);
}

.dl-button-outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.78);
    color: var(--dl-white);
}

.dl-button-outline:hover {
    background: var(--dl-white);
    color: var(--dl-navy);
}

.dl-button-outline-light,
.dl-button-outline-dark {
    background: transparent;
    border-color: var(--dl-navy);
    color: var(--dl-navy);
}

.dl-button-outline-light:hover,
.dl-button-outline-dark:hover {
    background: var(--dl-navy);
    color: var(--dl-white);
}

.dl-stat-strip {
    background: var(--dl-navy-dark);
    color: var(--dl-white);
}

.dl-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 126px;
}

.dl-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.dl-stat:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.dl-stat strong {
    color: var(--dl-gold);
    font-size: 1.35rem;
    line-height: 1.1;
}

.dl-stat span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.dl-brand-statement {
    padding: 100px 0;
    background: var(--dl-navy);
    color: var(--dl-white);
    text-align: center;
}

.dl-brand-statement blockquote {
    max-width: 980px;
    margin: 0 auto;
    font-size: clamp(2rem, 4vw, 4.4rem);
    font-weight: 300;
    line-height: 1.12;
    text-transform: uppercase;
}

.dl-accent-bar {
    display: block;
    width: 92px;
    height: 5px;
    margin: 0 auto 34px;
    background: var(--dl-gold);
}

.dl-section {
    padding: 92px 0;
}

.dl-section-tint {
    background: var(--dl-light-gray);
}

.dl-section-dark {
    background: var(--dl-navy);
    color: var(--dl-white);
}

.dl-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.dl-section-heading p,
.dl-page-hero p {
    margin: 0 0 10px;
    color: var(--dl-green);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-section-dark .dl-section-heading p,
.dl-page-hero p,
.dl-final-cta p {
    color: var(--dl-gold);
}

.dl-section-heading h2 {
    color: var(--dl-navy);
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.dl-section-dark .dl-section-heading h2,
.dl-final-cta h2 {
    color: var(--dl-white);
}

.dl-card-grid,
.dl-building-summary-grid,
.dl-compare-grid,
.dl-news-grid {
    display: grid;
    gap: 24px;
}

.dl-card-grid-3,
.dl-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dl-building-summary-grid,
.dl-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dl-card,
.dl-compare-card,
.dl-contact-form-card,
.dl-contact-sidebar section,
.dl-news-card,
.dl-broker-list,
.dl-partner-rows > div {
    background: var(--dl-white);
    border: 1px solid var(--dl-border);
    border-radius: var(--dl-radius);
    box-shadow: var(--dl-shadow);
}

.dl-card {
    padding: 34px;
}

.dl-card h3,
.dl-building-card h3,
.dl-compare-card h3,
.dl-building-detail h3 {
    margin-bottom: 14px;
    color: var(--dl-navy);
    font-size: 1.35rem;
    text-transform: uppercase;
}

.dl-card p {
    color: var(--dl-muted);
}

.dl-split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.dl-media-frame,
.dl-map-frame,
.dl-building-image,
.dl-building-detail-media,
.dl-news-image,
.dl-video-block {
    overflow: hidden;
    border-radius: var(--dl-radius);
    background: var(--dl-warm-gray);
}

.dl-media-frame {
    min-height: 430px;
}

.dl-media-frame img,
.dl-building-image img,
.dl-news-image img,
.dl-gallery-item img,
.dl-single-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dl-image-placeholder {
    display: grid;
    width: 100%;
    min-height: 240px;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(33, 69, 85, 0.9), rgba(135, 145, 92, 0.72)),
        var(--dl-light-gray);
    color: var(--dl-white);
    text-align: center;
}

.dl-image-placeholder span {
    max-width: 280px;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-mini-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dl-mini-stat-grid div {
    min-height: 128px;
    padding: 24px;
    border-left: 5px solid var(--dl-gold);
    border-radius: var(--dl-radius);
    background: var(--dl-white);
}

.dl-mini-stat-grid strong {
    display: block;
    color: var(--dl-navy);
    font-size: 1.8rem;
    line-height: 1.1;
}

.dl-mini-stat-grid span {
    display: block;
    margin-top: 8px;
    color: var(--dl-muted);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

.dl-timeline article {
    padding: 34px;
    border: 1px solid var(--dl-border);
    border-radius: var(--dl-radius);
    background: var(--dl-white);
}

.dl-timeline .is-featured {
    background: var(--dl-navy);
    color: var(--dl-white);
}

.dl-timeline span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    background: var(--dl-gold);
    color: var(--dl-navy-dark);
    font-weight: 800;
}

.dl-timeline h3 {
    margin-bottom: 12px;
    color: inherit;
    text-transform: uppercase;
}

.dl-building-card {
    overflow: hidden;
    border-radius: var(--dl-radius);
    background: var(--dl-white);
    color: var(--dl-ink);
}

.dl-building-image {
    aspect-ratio: 16 / 9;
}

.dl-building-body {
    padding: 28px;
}

.dl-gold {
    color: var(--dl-green);
    font-weight: 800;
}

.dl-availability-bar {
    display: flex;
    width: 100%;
    height: 14px;
    overflow: hidden;
    margin: 18px 0;
    border-radius: 999px;
    background: var(--dl-light-gray);
}

.dl-availability-bar span {
    display: block;
    min-width: 0;
}

.dl-availability-bar .is-leased {
    background: var(--dl-navy);
}

.dl-availability-bar .is-loi {
    background: var(--dl-green);
}

.dl-availability-bar .is-available {
    background: var(--dl-gold);
}

.dl-building-body ul {
    padding-left: 18px;
    margin: 18px 0 24px;
}

.dl-map-frame {
    min-height: 420px;
}

.dl-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.dl-team-home {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
}

.dl-logo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.dl-logo-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 82px;
    padding: 18px;
    border: 1px solid var(--dl-border);
    border-radius: var(--dl-radius);
    background: var(--dl-white);
    color: var(--dl-navy);
    font-weight: 800;
    text-transform: uppercase;
}

.dl-logo-row img {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
}

.dl-broker-list {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.dl-broker-list article {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) minmax(130px, 0.8fr) minmax(110px, 0.7fr) minmax(130px, 0.8fr) minmax(180px, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid var(--dl-border);
}

.dl-broker-list article:last-child {
    border-bottom: 0;
}

.dl-broker-list a:first-child {
    color: var(--dl-navy);
    font-weight: 800;
}

.dl-broker-list strong {
    color: var(--dl-green);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.dl-final-cta {
    padding: 90px 0;
    background: var(--dl-navy-dark);
    color: var(--dl-white);
    text-align: center;
}

.dl-final-cta h2 {
    font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.dl-page-hero {
    padding: calc(var(--dl-header-height) + 90px) 0 82px;
    background:
        linear-gradient(135deg, rgba(22, 48, 60, 0.9), rgba(33, 69, 85, 0.72)),
        var(--dl-navy);
    color: var(--dl-white);
}

.dl-page-hero h1 {
    max-width: 960px;
    font-size: clamp(2.8rem, 6vw, 6rem);
}

.dl-page-hero span {
    display: block;
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
}

.dl-compare-card {
    overflow: hidden;
}

.dl-compare-card header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    background: var(--dl-navy);
    color: var(--dl-white);
}

.dl-compare-card header h3 {
    color: var(--dl-white);
}

.dl-compare-card header span {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--dl-gold);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-compare-card header strong {
    color: var(--dl-gold);
    text-align: right;
}

.dl-compare-card > :not(header) {
    margin-inline: 24px;
}

.dl-compare-card .dl-button,
.dl-compare-card .dl-text-link {
    margin-bottom: 24px;
}

.dl-callout {
    color: var(--dl-green);
    font-weight: 800;
    text-transform: uppercase;
}

.dl-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 24px;
}

.dl-spec-grid div {
    padding: 12px;
    background: var(--dl-off-white);
}

.dl-spec-grid dt {
    color: var(--dl-muted);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-spec-grid dd {
    margin: 4px 0 0;
    color: var(--dl-navy);
    font-weight: 800;
}

.dl-text-link {
    display: inline-flex;
    color: var(--dl-navy);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.dl-filter-bar button {
    min-height: 42px;
    padding: 9px 15px;
    border: 1px solid var(--dl-border);
    border-radius: 999px;
    background: var(--dl-white);
    color: var(--dl-navy);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-filter-bar button.is-active,
.dl-filter-bar button:hover {
    background: var(--dl-navy);
    color: var(--dl-white);
}

.dl-detail-stack {
    display: grid;
    gap: 28px;
}

.dl-building-detail {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    padding: 28px;
    border: 1px solid var(--dl-border);
    border-radius: var(--dl-radius);
    background: var(--dl-white);
    scroll-margin-top: calc(var(--dl-header-height) + 24px);
}

.dl-building-detail[hidden] {
    display: none;
}

.dl-building-detail-media {
    display: grid;
    gap: 14px;
    background: transparent;
}

.dl-building-detail-media > * {
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--dl-radius);
}

.dl-spec-table {
    width: 100%;
    margin: 22px 0;
    border-collapse: collapse;
}

.dl-spec-table th,
.dl-spec-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--dl-border);
    text-align: left;
}

.dl-spec-table th {
    width: 42%;
    color: var(--dl-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.dl-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 26px;
}

.dl-video-block {
    background: var(--dl-navy);
}

.dl-video-block video {
    width: 100%;
    max-height: 620px;
    background: var(--dl-navy-dark);
}

.dl-video-block p {
    margin: 0;
    padding: 14px 18px;
    color: var(--dl-white);
    font-weight: 800;
}

.dl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.dl-gallery-item {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: var(--dl-radius);
    background: var(--dl-warm-gray);
    cursor: pointer;
}

.dl-gallery-item[hidden] {
    display: none;
}

.dl-gallery-item span {
    position: absolute;
    inset: auto 0 0;
    padding: 18px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
    color: var(--dl-white);
    font-weight: 800;
    text-align: left;
    text-transform: uppercase;
}

.dl-lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
    gap: 16px;
    padding: 40px;
    background: rgba(13, 25, 31, 0.92);
}

.dl-lightbox[hidden] {
    display: none;
}

.dl-lightbox figure {
    margin: 0;
    color: var(--dl-white);
    text-align: center;
}

.dl-lightbox img {
    width: auto;
    max-height: 78vh;
    margin-inline: auto;
}

.dl-lightbox button,
.dl-modal-close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--dl-white);
    cursor: pointer;
    font-size: 1.4rem;
}

[data-lightbox-close] {
    position: absolute;
    top: 22px;
    right: 22px;
}

.dl-partner-rows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.dl-partner-rows > div {
    padding: 28px;
}

.dl-partner-rows h2 {
    margin-bottom: 18px;
    color: var(--dl-navy);
    font-size: 1.1rem;
}

.dl-broker-list-large article {
    grid-template-columns: minmax(160px, 1fr) minmax(150px, 1fr) minmax(110px, 0.7fr) minmax(130px, 0.8fr) minmax(180px, 1fr);
}

.dl-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 32px;
    align-items: start;
}

.dl-contact-form-card,
.dl-contact-sidebar section {
    padding: 30px;
}

.dl-contact-form-card h2,
.dl-contact-sidebar h2 {
    margin-bottom: 18px;
    color: var(--dl-navy);
    font-size: 1.2rem;
}

.dl-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.dl-form-grid label {
    display: grid;
    gap: 7px;
    color: var(--dl-navy);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-form-wide {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--dl-border);
    border-radius: 4px;
    background: var(--dl-white);
    color: var(--dl-ink);
}

input,
select {
    min-height: 46px;
    padding: 9px 12px;
}

textarea {
    padding: 12px;
    resize: vertical;
}

.dl-contact-form .dl-button,
.dl-brochure-form .dl-button {
    margin-top: 20px;
}

.dl-honeypot {
    position: absolute;
    left: -9999px;
}

.dl-form-alert,
.dl-form-message {
    padding: 12px 14px;
    border-radius: 4px;
}

.dl-form-alert.is-success,
.dl-form-message.is-success {
    background: rgba(180, 198, 114, 0.24);
    color: var(--dl-navy);
}

.dl-form-alert.is-error,
.dl-form-message.is-error {
    background: rgba(128, 44, 44, 0.12);
    color: #802c2c;
}

.dl-contact-sidebar {
    display: grid;
    gap: 18px;
}

.dl-sidebar-brokers {
    display: grid;
    gap: 14px;
}

.dl-sidebar-brokers article {
    display: grid;
    gap: 3px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--dl-border);
}

.dl-sidebar-brokers article:last-child {
    border-bottom: 0;
}

.dl-sidebar-brokers a:first-child {
    color: var(--dl-navy);
    font-weight: 800;
}

.dl-news-card {
    overflow: hidden;
}

.dl-news-image {
    display: grid;
    aspect-ratio: 16 / 10;
    place-items: center;
    color: var(--dl-white);
}

.dl-news-image span {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-news-card > div {
    padding: 24px;
}

.dl-news-card time {
    color: var(--dl-green);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-news-card h2 {
    margin: 10px 0;
    color: var(--dl-navy);
    font-size: 1.25rem;
}

.dl-pagination {
    margin-top: 34px;
}

.dl-pagination .page-numbers {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    border: 1px solid var(--dl-border);
    background: var(--dl-white);
    color: var(--dl-navy);
    font-weight: 800;
}

.dl-pagination .current {
    background: var(--dl-navy);
    color: var(--dl-white);
}

.dl-single .dl-content,
.dl-content {
    max-width: 860px;
}

.dl-single-featured {
    overflow: hidden;
    margin-bottom: 34px;
    border-radius: var(--dl-radius);
}

.dl-index-entry {
    padding: 24px 0;
    border-bottom: 1px solid var(--dl-border);
}

.dl-site-footer {
    background: var(--dl-navy-dark);
    color: rgba(255, 255, 255, 0.78);
}

.dl-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 34px;
    padding: 70px 0;
}

.dl-site-footer h2 {
    margin-bottom: 16px;
    color: var(--dl-white);
    font-size: 0.85rem;
}

.dl-footer-links {
    display: grid;
    gap: 8px;
}

.dl-footer-links a,
.dl-site-footer a {
    color: rgba(255, 255, 255, 0.82);
}

.dl-footer-links a:hover,
.dl-site-footer a:hover {
    color: var(--dl-gold);
}

.dl-footer-logo-stack {
    display: grid;
    gap: 12px;
}

.dl-footer-logo-stack a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px;
    border-radius: 4px;
    background: var(--dl-white);
}

.dl-footer-logo-stack img {
    max-width: 170px;
    max-height: 42px;
    object-fit: contain;
}

.dl-featured-strip,
.dl-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dl-featured-strip .dl-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 0;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dl-copyright p {
    margin: 0;
    padding: 18px 0;
    font-size: 0.78rem;
}

.dl-modal {
    position: fixed;
    z-index: 120;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.dl-modal[hidden] {
    display: none;
}

.dl-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 25, 31, 0.76);
}

.dl-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    max-height: 92vh;
    overflow: auto;
    padding: 34px;
    border-radius: var(--dl-radius);
    background: var(--dl-white);
    box-shadow: var(--dl-shadow);
}

.dl-modal-panel h2 {
    margin-bottom: 22px;
    color: var(--dl-navy);
}

.dl-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border-color: var(--dl-border);
    background: var(--dl-navy);
}

@media (max-width: 1020px) {
    .dl-card-grid-3,
    .dl-news-grid,
    .dl-gallery-grid,
    .dl-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dl-split,
    .dl-team-home,
    .dl-building-detail,
    .dl-contact-layout,
    .dl-footer-grid {
        grid-template-columns: 1fr;
    }

    .dl-broker-list article,
    .dl-broker-list-large article {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .dl-nav-toggle {
        display: block;
    }

    .dl-primary-nav {
        position: fixed;
        inset: var(--dl-header-height) 0 auto;
        display: none;
        padding: 24px 20px 32px;
        background: var(--dl-navy-dark);
    }

    body.is-nav-open .dl-primary-nav {
        display: block;
    }

    .dl-menu {
        display: grid;
        gap: 14px;
    }

    .dl-menu a {
        display: block;
        padding: 10px 0;
        font-size: 1rem;
    }

    .dl-hero {
        min-height: 700px;
    }

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

    .dl-stat:nth-child(5) {
        grid-column: 1 / -1;
    }

    .dl-compare-grid,
    .dl-building-summary-grid,
    .dl-partner-rows,
    .dl-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    :root {
        --dl-header-height: 70px;
    }

    .dl-container,
    .dl-header-inner {
        width: min(100% - 28px, var(--dl-container));
    }

    .dl-header-logo {
        min-width: 0;
    }

    .dl-logo-text {
        max-width: 172px;
        font-size: 0.76rem;
    }

    .dl-hero {
        min-height: 660px;
    }

    .dl-hero h1 {
        font-size: 2.7rem;
    }

    .dl-hero-actions,
    .dl-inline-actions {
        align-items: stretch;
        width: 100%;
    }

    .dl-hero-actions .dl-button,
    .dl-inline-actions .dl-button {
        width: 100%;
    }

    .dl-section,
    .dl-brand-statement,
    .dl-final-cta {
        padding: 64px 0;
    }

    .dl-stat {
        padding: 22px 18px;
    }

    .dl-card-grid-3,
    .dl-news-grid,
    .dl-gallery-grid,
    .dl-video-grid,
    .dl-mini-stat-grid,
    .dl-form-grid {
        grid-template-columns: 1fr;
    }

    .dl-form-wide {
        grid-column: auto;
    }

    .dl-broker-list article,
    .dl-broker-list-large article {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .dl-lightbox {
        grid-template-columns: 1fr;
        padding: 70px 16px 24px;
    }

    [data-lightbox-prev],
    [data-lightbox-next] {
        display: none;
    }
}
