:root {
    --dwp-black: var(--dwp-color-dark, #000);
    --dwp-white: var(--dwp-color-light, #fff);
    --dwp-blue: var(--dwp-color-primary, #005baa);
    --dwp-container: 1920px;
    --dwp-side: clamp(24px, 3.1vw, 48px);
}

html {
    scroll-behavior: smooth;
}

body.dwp-body {
    margin: 0;
    overflow-x: hidden;
    background: var(--dwp-black);
    color: var(--dwp-white);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Elementor migration shells intentionally add no builder spacing between sections. */
.dwp-body .dwp-landing-shell,
.dwp-body .dwp-global-shell,
.dwp-body .elementor-widget-dwp-landing-section,
.dwp-body .elementor-widget-dwp-landing-section > .elementor-widget-container,
.dwp-body .elementor-widget-dwp-global-header,
.dwp-body .elementor-widget-dwp-global-footer {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    padding: 0 !important;
}

.dwp-body .dwp-landing-shell,
.dwp-body .dwp-global-shell,
.dwp-body .dwp-landing-shell > .e-con-inner,
.dwp-body .dwp-global-shell > .e-con-inner {
    gap: 0 !important;
}

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

.dwp-body h1,
.dwp-body h2,
.dwp-body h3,
.dwp-body p,
.dwp-body ul {
    margin: 0;
}

.dwp-body ul {
    padding: 0;
}

.dwp-body a {
    color: inherit;
    text-decoration: none;
}

.dwp-body button {
    border: 0;
    color: inherit;
    font: inherit;
}

.dwp-body img,
.dwp-body video {
    display: block;
    max-width: 100%;
}

.dwp-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    transform: translateY(-150%);
    border-radius: 4px;
    background: #fff;
    color: #000 !important;
    padding: 10px 16px;
}

.dwp-skip-link:focus {
    transform: translateY(0);
}

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

.dwp-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.dwp-dark-section {
    background: #000;
    color: #fff;
}

.dwp-section-inner {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: center;
    padding-block: 4vh;
}

.dwp-section-heading {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: clamp(24px, 5vh, 58px);
}

.dwp-section-heading h2,
.dwp-centered-heading h2,
.dwp-impact h2,
.dwp-who h2 {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.dwp-section-heading > p {
    width: min(100%, 760px);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.25vw, 1.125rem);
    line-height: 1.62;
}

.dwp-centered-heading {
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
}

.dwp-centered-heading p {
    margin-top: 8px;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
}

.dwp-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s ease, transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.dwp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Elementor editor renders widgets dynamically, so animation start states must
   remain visible inside its preview iframe. Front-end animation is unchanged. */
.dwp-elementor-editor-preview .dwp-reveal,
.elementor-editor-active .dwp-reveal,
.elementor-editor-preview .dwp-reveal {
    opacity: 1 !important;
    transform: none !important;
}

.dwp-elementor-editor-preview .dwp-curtain,
.elementor-editor-active .dwp-curtain,
.elementor-editor-preview .dwp-curtain {
    display: none !important;
}

.dwp-elementor-editor-preview .dwp-hero-copy,
.dwp-elementor-editor-preview .dwp-hero-copy h1,
.dwp-elementor-editor-preview .dwp-hero-copy p,
.dwp-elementor-editor-preview .dwp-hero-tagline,
.elementor-editor-active .dwp-hero-copy,
.elementor-editor-active .dwp-hero-copy h1,
.elementor-editor-active .dwp-hero-copy p,
.elementor-editor-active .dwp-hero-tagline,
.elementor-editor-preview .dwp-hero-copy,
.elementor-editor-preview .dwp-hero-copy h1,
.elementor-editor-preview .dwp-hero-copy p,
.elementor-editor-preview .dwp-hero-tagline {
    visibility: visible !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Header */
.dwp-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: #fff;
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease;
}

.dwp-header.is-scrolled,
.dwp-header.is-open {
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.dwp-header-inner {
    display: grid;
    min-height: 112px;
    max-width: var(--dwp-container);
    margin-inline: auto;
    padding: 16px var(--dwp-side);
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: clamp(32px, 6vw, 84px);
}

.dwp-logo {
    position: relative;
    z-index: 2;
    display: block;
    width: clamp(52px, 4.2vw, 72px);
}

.dwp-logo img {
    width: 100%;
    height: auto;
}

.dwp-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3.2vw, 54px);
    padding-top: 15px;
    font-size: clamp(0.95rem, 1.25vw, 1.125rem);
    white-space: nowrap;
}

.dwp-nav-right {
    justify-self: end;
}

.dwp-nav a {
    position: relative;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.dwp-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: #fff;
    content: "";
    transition: transform 0.3s ease;
}

.dwp-nav a:hover::after,
.dwp-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.dwp-menu-toggle,
.dwp-mobile-menu {
    display: none;
}

/* Landing navigation drawer */
.dwp-nav-drawer-layer {
    position: fixed;
    inset: 0;
    z-index: 600;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.52s;
}

.dwp-nav-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    opacity: 0;
    cursor: default;
    transition: opacity 0.42s ease;
}

.dwp-nav-drawer {
    position: absolute;
    inset: 0 auto 0 0;
    display: flex;
    overflow: hidden auto;
    width: min(838px, calc(100vw - 24px));
    min-height: 100dvh;
    padding: clamp(74px, 8vh, 112px) clamp(36px, 4vw, 64px) 24px;
    flex-direction: column;
    transform: translateX(-102%);
    border-radius: 0 22px 22px 0;
    background: linear-gradient(120deg, #000 0%, #01050c 48%, #0e2f69 100%);
    box-shadow: 24px 0 70px rgba(0, 0, 0, 0.36);
    color: #fff;
    transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.dwp-nav-drawer-layer.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.dwp-nav-drawer-layer.is-open .dwp-nav-drawer-backdrop { opacity: 1; }
.dwp-nav-drawer-layer.is-open .dwp-nav-drawer { transform: translateX(0); }

.dwp-nav-drawer-close {
    position: absolute;
    top: 38px;
    right: 40px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.dwp-nav-drawer-close span {
    position: absolute;
    top: 19px;
    left: 10px;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
}

.dwp-nav-drawer-close span:first-child { transform: rotate(45deg); }
.dwp-nav-drawer-close span:last-child { transform: rotate(-45deg); }
.dwp-nav-drawer-close:hover { background: rgba(255, 255, 255, 0.08); }

.dwp-nav-drawer-panel {
    position: relative;
    z-index: 1;
    display: none;
}

.dwp-nav-drawer-panel.is-active {
    display: block;
    animation: dwp-drawer-content-in 0.45s 0.12s both;
}

.dwp-nav-drawer-panel h2 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.dwp-nav-drawer-content {
    display: grid;
    align-items: start;
    margin-top: 38px;
    grid-template-columns: minmax(190px, 0.86fr) minmax(270px, 1.14fr);
    gap: clamp(42px, 7vw, 92px);
}

.dwp-nav-drawer-links {
    display: flex;
    flex-direction: column;
}

.dwp-nav-drawer-links a {
    padding: 0 0 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.35;
    transition: padding-left 0.25s ease, color 0.25s ease;
}

.dwp-nav-drawer-links a + a { margin-top: 18px; }
.dwp-nav-drawer-links a:hover,
.dwp-nav-drawer-links a:focus-visible { padding-left: 8px; color: #b9d4ff; }

.dwp-nav-drawer-image {
    width: 100%;
    height: clamp(220px, 28vh, 255px) !important;
    border-radius: 4px !important;
    object-fit: cover !important;
}

.dwp-nav-drawer-watermark {
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.055);
    font-size: clamp(8rem, 16vw, 12rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.9;
    white-space: nowrap;
}

.dwp-nav-drawer-contact {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    margin-top: 22px;
    grid-template-columns: 0.9fr 1.05fr 1.45fr;
    gap: 22px;
    font-size: 0.82rem;
}

.dwp-nav-drawer-contact > a,
.dwp-nav-drawer-contact > span {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.dwp-nav-drawer-contact svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

body.dwp-drawer-open { overflow: hidden !important; }

@keyframes dwp-drawer-content-in {
    from { transform: translateX(-14px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Hero */
.dwp-hero {
    min-height: 100svh;
    background: #000;
}

.dwp-cover-media,
.dwp-who-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dwp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.58), transparent 55%, rgba(0, 0, 0, 0.42)),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.82));
}

.dwp-hero-copy {
    position: absolute;
    top: 58%;
    right: 24px;
    left: 24px;
    z-index: 2;
    transform: translateY(-45%);
    text-align: center;
}

.dwp-hero-copy h1 {
    transform: translateY(42px);
    opacity: 0;
    color: #fff;
    font-size: clamp(5rem, 13vw, 15rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.92;
    text-indent: -0.07em;
    transition: opacity 0.85s ease 0.35s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

.dwp-hero-copy p {
    transform: translateY(35px);
    opacity: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.2rem, 3.08vw, 3.5rem);
    letter-spacing: -0.07em;
    line-height: 1;
    transition: opacity 0.85s ease 0.52s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.52s;
}

.dwp-hero-tagline {
    position: absolute;
    right: 24px;
    bottom: clamp(32px, 6vh, 64px);
    left: 24px;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.875rem, 1.25vw, 1.5rem);
    line-height: 1;
    text-align: center;
    transition: opacity 0.85s ease 0.68s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.68s;
}

.dwp-curtain {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 5;
    height: 50%;
    background: #000;
    transition: transform 1.15s cubic-bezier(0.76, 0, 0.24, 1) 0.1s;
}

.dwp-curtain-top { top: 0; transform-origin: top; }
.dwp-curtain-bottom { bottom: 0; transform-origin: bottom; }

.dwp-hero.is-ready .dwp-curtain-top { transform: translateY(-100%); }
.dwp-hero.is-ready .dwp-curtain-bottom { transform: translateY(100%); }
.dwp-hero.is-ready .dwp-hero-copy h1,
.dwp-hero.is-ready .dwp-hero-copy p,
.dwp-hero.is-ready .dwp-hero-tagline { opacity: 1; transform: translateY(0); }
.dwp-hero.is-copy-hidden .dwp-hero-copy,
.dwp-hero.is-copy-hidden .dwp-hero-tagline { transform: translateY(-20px); opacity: 0; transition: opacity 0.9s ease, transform 0.9s ease; }

/* What we do carousel */
.dwp-media-carousel {
    position: relative;
    width: 100%;
    max-height: 720px;
    flex: 1 1 auto;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 2000 / 959;
    background: #111;
}

.dwp-carousel-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    transform: translateX(2.5%);
    opacity: 0;
    transition: visibility 0s linear 0.7s, opacity 0.7s ease, transform 0.7s ease;
}

.dwp-carousel-slide.is-active {
    visibility: visible;
    z-index: 2;
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0s;
}

.dwp-carousel-slide > img,
.dwp-carousel-slide > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dwp-carousel-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: min(720px, 92%);
    margin: 0 0 clamp(14px, 2vw, 24px) clamp(14px, 2vw, 24px);
    padding: clamp(16px, 2vw, 28px);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.44), transparent);
}

.dwp-carousel-caption h3 {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.dwp-carousel-caption p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.78rem, 1.15vw, 1rem);
    line-height: 1.4;
}

.dwp-carousel-next {
    position: absolute;
    inset: 0;
    z-index: 4;
    cursor: pointer;
    background: transparent;
}

/* Businesses */
.dwp-business-grid {
    display: grid;
    width: 100%;
    min-height: 360px;
    max-height: 450px;
    flex: 1 1 auto;
    grid-template-columns: repeat(var(--dwp-business-columns, 5), minmax(0, 1fr));
    gap: 12px;
}

.dwp-business-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #0b0b0b;
}

.dwp-business-front,
.dwp-business-back {
    position: absolute;
    inset: 0;
    transition: opacity 0.7s ease;
}

.dwp-business-front {
    background-position: center;
    background-size: cover;
}

.dwp-business-front::after {
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.94));
    content: "";
}

.dwp-business-front h3 {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    font-size: clamp(0.92rem, 1.35vw, 1.125rem);
    font-weight: 500;
}

.dwp-business-back {
    display: flex;
    flex-direction: column;
    padding: clamp(12px, 1.25vw, 18px);
    border: 1px solid #fff;
    background: #000;
    opacity: 0;
}

.dwp-business-mark {
    display: flex;
    height: 40%;
    align-items: center;
    justify-content: center;
}

.dwp-business-mark img {
    width: auto;
    max-height: 110px;
    object-fit: contain;
}

.dwp-business-back > p {
    display: -webkit-box;
    min-height: 0;
    margin-block: auto;
    overflow: hidden;
    font-size: clamp(0.75rem, 0.92vw, 0.875rem);
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.dwp-business-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
}

.dwp-business-card-footer h3 {
    overflow: hidden;
    font-size: clamp(0.88rem, 1.25vw, 1.1rem);
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dwp-business-card-footer a {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: 0.3s ease;
}

.dwp-business-card-footer svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

.dwp-business-card-footer a:hover {
    transform: scale(1.1);
    background: #fff;
    color: #000;
}

.dwp-business-card:hover .dwp-business-front,
.dwp-business-card:focus-within .dwp-business-front {
    opacity: 0;
}

.dwp-business-card:hover .dwp-business-back,
.dwp-business-card:focus-within .dwp-business-back {
    opacity: 1;
}

/* Who we are */
.dwp-who {
    min-height: 100svh;
    background: #000;
}

.dwp-who-video {
    inset: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
}

.dwp-who-shade {
    position: absolute;
    inset: 16px;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 1) 8%,
            rgba(0, 0, 0, 0.6) 20%,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0) 60%,
            rgba(0, 0, 0, 0.6) 80%,
            rgba(0, 0, 0, 1) 92%,
            rgba(0, 0, 0, 1) 100%
        ),
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
    pointer-events: none;
}

.dwp-who-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 24px;
    text-align: center;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.dwp-who-copy p {
    max-width: 670px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 1.35vw, 1.125rem);
}

.dwp-pill-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
    padding: 7px 7px 7px 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    color: #000 !important;
    font-weight: 700;
}

.dwp-pill-button::before {
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--dwp-blue);
    content: "";
    transition: transform 0.5s ease;
}

.dwp-pill-button > span,
.dwp-pill-button > b {
    position: relative;
    z-index: 1;
}

.dwp-pill-button > b {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--dwp-blue);
    color: #fff;
    transition: 0.5s ease;
}

.dwp-pill-button svg {
    width: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.dwp-pill-button:hover::before { transform: scaleX(1); transform-origin: left; }
.dwp-pill-button:hover > span { color: #fff; }
.dwp-pill-button:hover > b { background: #fff; color: var(--dwp-blue); }

/* Impact and foundation */
.dwp-impact {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #111;
    padding-block: 6vh;
}

.dwp-impact-head {
    padding-bottom: clamp(28px, 5vh, 56px);
}

.dwp-stats {
    display: grid;
    margin-top: clamp(26px, 4vh, 44px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    grid-template-columns: repeat(var(--dwp-stat-columns, 4), 1fr);
}

.dwp-stats > div {
    display: flex;
    min-height: 108px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.dwp-stats > div:last-child { border-right: 0; }

.dwp-stats strong {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    line-height: 1;
}

.dwp-stats span {
    margin-top: 8px;
    color: rgba(0, 0, 0, 0.58);
    font-size: 0.875rem;
}

.dwp-foundation {
    display: grid;
    min-height: min(55vh, 700px);
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 52px);
}

.dwp-foundation-copy {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 28px;
}

.dwp-foundation-copy > div:first-child > p {
    max-width: 760px;
    margin-top: 12px;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.5;
}

.dwp-foundation-tabs {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
}

.dwp-foundation-tabs button {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    background: transparent;
    color: #a3a3a3;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    text-align: left;
    transition: color 0.3s ease;
}

.dwp-foundation-tabs button.is-active { color: #171717; }

.dwp-foundation-tabs img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    opacity: 0.32;
    transition: opacity 0.3s ease;
}

.dwp-foundation-tabs button.is-active img { opacity: 1; }

.dwp-foundation-images {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.dwp-foundation-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.dwp-foundation-images img.is-active { opacity: 1; }

/* Timeline */
.dwp-timeline-inner {
    display: flex;
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(20px, 4vh, 40px);
    padding-block: 4vh;
}

.dwp-timeline-stage {
    position: relative;
    width: min(80%, 1500px);
    max-height: 690px;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 2000 / 959;
    background: #0e0e0e;
}

.dwp-timeline-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.dwp-timeline-slide.is-active { z-index: 1; opacity: 1; }

.dwp-timeline-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    /* width: 50px;
    height: 50px; */
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
    transition: transform 0.25s ease;
}

.dwp-timeline-arrow:hover { transform: translateY(-50%) scale(1.06); }
.dwp-timeline-prev { left: 28px; }
.dwp-timeline-next { right: 28px; }

/* Insights */
.dwp-insights-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(var(--dwp-insight-columns, 4), 1fr);
    gap: 16px;
}

.dwp-insight-card a { display: block; }

.dwp-insight-image {
    display: block;
    height: min(50vh, 560px);
    overflow: hidden;
    border-radius: 4px;
    background-color: #141414;
    background-position: center;
    background-size: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.dwp-insight-card small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.dwp-insight-card h3 {
    margin-top: 5px;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    font-weight: 500;
    line-height: 1.25;
}

.dwp-insight-card:hover .dwp-insight-image { transform: scale(1.018); filter: brightness(1.08); }

/* Partners */
.dwp-partners {
    display: flex;
    align-items: center;
    background: #fff;
    color: #000;
}

.dwp-partners-inner {
    display: flex;
    width: 100%;
    min-height: 100svh;
    justify-content: center;
    flex-direction: column;
    gap: clamp(18px, 3vh, 32px);
    padding-block: 3vh;
}

.dwp-partners .dwp-centered-heading {
    padding-inline: 24px;
}

.dwp-partners .dwp-centered-heading p {
    margin-top: 14px;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    line-height: 1.25;
}

.dwp-partner-row {
    position: relative;
    width: 100%;
    min-width: 0;
}

.dwp-marquee {
    width: 100%;
    overflow: hidden;
}

.dwp-marquee-track {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: dwp-marquee 32s linear infinite;
}

.dwp-marquee-track.is-reverse { animation-direction: reverse; }
.dwp-marquee:hover .dwp-marquee-track { animation-play-state: paused; }

.dwp-logo-card {
    display: flex;
    width: clamp(170px, 15vw, 250px);
    aspect-ratio: 3 / 1;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.dwp-logo-card img {
    width: auto;
    max-width: 76%;
    height: clamp(18px, 2vw, 30px);
    object-fit: contain;
}

.dwp-partner-label {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 4;
    display: flex;
    width: clamp(215px, 20vw, 285px);
    height: 85px !important;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
    overflow: hidden;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 700;
}

.dwp-partner-label span {
    overflow: hidden;
    padding-inline: clamp(20px, 3vw, 36px);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dwp-partner-label i {
    width: 12px;
    height: 100%;
    flex: 0 0 auto;
    background: #000;
}

@keyframes dwp-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 5px)); }
}

/* Footer */
.dwp-footer {
    overflow: hidden;
    background: #000;
    color: #fff;
}

.dwp-footer > .dwp-container {
    padding-block: 6vh 3vh;
}

.dwp-footer-main {
    display: flex;
    gap: 40px;
}

.dwp-footer-about { flex: 1 1 50%; }

.dwp-footer-wordmark {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1;
}

.dwp-footer-about > p:not(.dwp-footer-wordmark) {
    max-width: 450px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.65;
}

.dwp-socials {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
}

.dwp-socials img { width: 20px; height: 20px; object-fit: contain; }

.dwp-footer-links {
    display: flex;
    flex: 1 1 50%;
    justify-content: space-evenly;
    gap: 40px;
}

.dwp-footer-links h3 { font-size: 1.1rem; }
.dwp-footer-links ul { margin-top: 12px; padding-left: 18px; color: rgba(255, 255, 255, 0.8); }
.dwp-footer-links li + li { margin-top: 7px; }
.dwp-footer a:hover { color: #fff; }

.dwp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 6vh;
    padding-top: 2vh;
    border-top: 2px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.dwp-footer-bottom ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.dwp-back-top {
    position: fixed;
    right: 32px;
    bottom: 40px;
    z-index: 80;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    transform: translateY(16px);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.82);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
    transition: 0.4s ease;
}

.dwp-back-top.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.dwp-back-top svg { width: 18px; fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }

@media (max-width: 1100px) {
    .dwp-nav { gap: 22px; font-size: 0.95rem; }
    .dwp-header-inner { gap: 28px; }
    .dwp-business-grid { overflow-x: auto; grid-auto-columns: 45%; grid-template-columns: none; grid-auto-flow: column; scroll-snap-type: x proximity; }
    .dwp-business-card { scroll-snap-align: start; }
}

@media (max-width: 820px) {
    .dwp-nav { display: none; }

    .dwp-header-inner {
        min-height: 86px;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .dwp-logo { width: 50px; }

    .dwp-menu-toggle {
        position: relative;
        z-index: 102;
        display: flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        background: transparent;
    }

    .dwp-menu-toggle span {
        width: 24px;
        height: 2px;
        background: #fff;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .dwp-header.is-open .dwp-menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .dwp-header.is-open .dwp-menu-toggle span:nth-child(2) { opacity: 0; }
    .dwp-header.is-open .dwp-menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .dwp-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        visibility: hidden;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 18px;
        transform: translateY(-12px);
        background: rgba(0, 0, 0, 0.97);
        opacity: 0;
        font-size: clamp(1.4rem, 6vw, 2rem);
        font-weight: 700;
        transition: 0.35s ease;
    }

    .dwp-header.is-open .dwp-mobile-menu { visibility: visible; transform: translateY(0); opacity: 1; }
    body.dwp-menu-open { overflow: hidden; }

    .dwp-nav-drawer {
        width: calc(100vw - 12px);
        padding: 78px 30px 24px;
        border-radius: 0 18px 18px 0;
    }

    .dwp-nav-drawer-close { top: 24px; right: 24px; }
    .dwp-nav-drawer-content { gap: 34px; }
    .dwp-nav-drawer-contact { grid-template-columns: 1fr 1fr; }
    .dwp-nav-drawer-contact > span { grid-column: 1 / -1; }

    .dwp-section-inner { min-height: auto; padding-block: 80px; }
    .dwp-what .dwp-section-inner,
    .dwp-businesses .dwp-section-inner,
    .dwp-insights .dwp-section-inner { min-height: 100svh; }

    .dwp-section-heading { align-items: flex-start; flex-direction: column; gap: 14px; }

    .dwp-media-carousel { min-height: 54vh; flex: none; aspect-ratio: auto; }
    .dwp-carousel-caption { width: calc(100% - 28px); margin: 14px; padding: 16px; }

    .dwp-business-grid { min-height: 480px; max-height: 56vh; grid-auto-columns: 78%; }

    .dwp-who-video,
    .dwp-who-shade { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); }

    .dwp-impact { padding-block: 70px; }
    .dwp-stats { grid-template-columns: 1fr 1fr; }
    .dwp-stats > div:nth-child(2) { border-right: 0; }
    .dwp-stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

    .dwp-foundation { min-height: 700px; grid-template-columns: 1fr; }
    .dwp-foundation-copy { gap: 24px; }
    .dwp-foundation-images { min-height: 340px; }

    .dwp-timeline-inner { min-height: 100svh; padding-block: 70px; }
    .dwp-timeline-stage { width: 96%; aspect-ratio: 4 / 5; }
    .dwp-timeline-slide { object-fit: cover; }
    .dwp-timeline-prev { left: 14px; }
    .dwp-timeline-next { right: 14px; }
    .dwp-timeline-arrow { width: 38px; height: 38px; }

    .dwp-insights-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .dwp-insight-image { height: auto; aspect-ratio: 4 / 3; }

    .dwp-partners-inner { min-height: auto; padding-block: 80px; }
    .dwp-logo-card { width: 170px; }
    .dwp-partner-label { width: 220px; height: 58px; }

    .dwp-footer-main { flex-direction: column; }
    .dwp-footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
    :root { --dwp-side: 22px; }
    .dwp-hero-copy { top: 56%; }
    .dwp-hero-copy h1 { font-size: clamp(4.6rem, 29vw, 8rem); }
    .dwp-carousel-caption p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
    .dwp-insight-card h3 { font-size: 0.96rem; }
    .dwp-insight-card small { font-size: 0.68rem; }
    .dwp-partner-label { width: 190px; font-size: 0.95rem; }
    .dwp-footer-links { flex-direction: column; gap: 26px; }
    .dwp-footer-bottom { align-items: flex-start; flex-direction: column; }
    .dwp-footer-bottom ul { flex-wrap: wrap; gap: 10px 18px; }
    .dwp-back-top { right: 20px; bottom: 24px; width: 44px; height: 44px; }

    .dwp-nav-drawer {
        width: 100vw;
        padding: 72px 22px 22px;
        border-radius: 0;
    }

    .dwp-nav-drawer-panel h2 { font-size: 2.75rem; }
    .dwp-nav-drawer-content { margin-top: 30px; grid-template-columns: 1fr; gap: 28px; }
    .dwp-nav-drawer-links a + a { margin-top: 14px; }
    .dwp-nav-drawer-image { height: 190px; }
    .dwp-nav-drawer-watermark { margin-top: 48px; font-size: 7.5rem; }
    .dwp-nav-drawer-contact { grid-template-columns: 1fr; gap: 12px; }
    .dwp-nav-drawer-contact > span { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .dwp-body *, .dwp-body *::before, .dwp-body *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
    .dwp-reveal { opacity: 1; transform: none; }
}

/* Fix WordPress theme pink button hover conflict */
.dwp-body .dwp-carousel-next,
.dwp-body .dwp-carousel-next:hover,
.dwp-body .dwp-carousel-next:focus,
.dwp-body .dwp-carousel-next:active,

.dwp-body .dwp-timeline-arrow,
.dwp-body .dwp-timeline-arrow:hover,
.dwp-body .dwp-timeline-arrow:focus,
.dwp-body .dwp-timeline-arrow:active,

.dwp-body .dwp-foundation-tabs button,
.dwp-body .dwp-foundation-tabs button:hover,
.dwp-body .dwp-foundation-tabs button:focus,
.dwp-body .dwp-foundation-tabs button:active,

.dwp-body .dwp-menu-toggle,
.dwp-body .dwp-menu-toggle:hover,
.dwp-body .dwp-menu-toggle:focus,
.dwp-body .dwp-menu-toggle:active {
    border-color: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

/* Popup ke right-side backdrop ka correct dark color */
.dwp-body .dwp-nav-drawer-backdrop,
.dwp-body .dwp-nav-drawer-backdrop:hover,
.dwp-body .dwp-nav-drawer-backdrop:focus,
.dwp-body .dwp-nav-drawer-backdrop:active {
    border-color: transparent !important;
    background: rgba(0, 0, 0, 0.66) !important;
    box-shadow: none !important;
}

/* Popup close button */
.dwp-body .dwp-nav-drawer-close,
.dwp-body .dwp-nav-drawer-close:focus,
.dwp-body .dwp-nav-drawer-close:active {
    background: transparent !important;
    box-shadow: none !important;
}

.dwp-body .dwp-nav-drawer-close:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Back-to-top button */
.dwp-body .dwp-back-top,
.dwp-body .dwp-back-top:hover,
.dwp-body .dwp-back-top:focus,
.dwp-body .dwp-back-top:active {
    background: rgba(0, 0, 0, 0.82) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20) !important;
}

/* Updated business-card hover design */
.dwp-business-back {
    padding: 20px 16px 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.9);
    background: #000;
}

/* Hover logo */
.dwp-business-mark {
    height: 105px;
    flex: 0 0 105px;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
}

.dwp-business-mark img {
    width: auto;
    max-width: 58%;
    max-height: 65px;
    object-fit: contain;
}

/* Complete hover description */
.dwp-business-back > p {
    display: block !important;
    min-height: 0;
    margin: 16px 0 0 !important;
    overflow: visible !important;
    color: #fff;
    font-size: clamp(0.72rem, 0.82vw, 0.875rem);
    line-height: 1.25;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset !important;
}

/* Hide repeated business title on hover */
.dwp-business-card-footer {
    margin-top: auto;
    justify-content: flex-end;
    padding-top: 14px;
}

.dwp-business-card-footer h3 {
    display: none !important;
}

/* Bottom-right circular arrow */
.dwp-business-card-footer a {
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent !important;
    color: #fff;
}

.dwp-business-card-footer a:hover {
    transform: scale(1.08);
    background: #fff !important;
    color: #000;
}

/* Smooth front-to-back transition */
.dwp-business-front,
.dwp-business-back {
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.dwp-business-card:hover .dwp-business-front,
.dwp-business-card:focus-within .dwp-business-front {
    visibility: hidden;
    opacity: 0;
}

.dwp-business-card:hover .dwp-business-back,
.dwp-business-card:focus-within .dwp-business-back {
    visibility: visible;
    opacity: 1;
}

/* Full-screen mobile navigation */
@media (max-width: 820px) {

    .dwp-header.is-open {
        height: 100dvh;
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .dwp-mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 101;

        display: flex;
        visibility: hidden;
        width: 100vw;
        height: 100dvh;
        min-height: 100svh;
        overflow-y: auto;

        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;

        padding: 105px 25px 45px;

        background:
            linear-gradient(
                145deg,
                rgba(0, 0, 0, 0.99) 0%,
                rgba(0, 4, 10, 0.99) 60%,
                rgba(7, 28, 58, 0.98) 100%
            );

        transform: translateX(100%);
        opacity: 0;

        font-size: 17px;
        font-weight: 600;
        line-height: 1.3;

        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.3s ease,
            visibility 0s linear 0.42s;
    }

    .dwp-header.is-open .dwp-mobile-menu {
        visibility: visible;
        transform: translateX(0);
        opacity: 1;
        transition-delay: 0s;
    }

    /* Menu links */
    .dwp-mobile-menu a {
        display: block;
        width: 100%;
        padding: 10px 0;

        color: rgba(255, 255, 255, 0.82) !important;
        text-align: left;
        text-decoration: none;

        transition:
            color 0.25s ease,
            padding-left 0.25s ease;
    }

    .dwp-mobile-menu a:hover,
    .dwp-mobile-menu a:focus {
        padding-left: 7px;
        background: transparent !important;
        color: #ffffff !important;
    }

    /* Logo remains visible above overlay */
    .dwp-header.is-open .dwp-logo {
        position: fixed;
        top: 18px;
        left: var(--dwp-side);
        z-index: 103;
        width: 50px;
    }

    /* Hamburger becomes close icon */
    .dwp-header.is-open .dwp-menu-toggle {
        position: fixed;
        top: 22px;
        right: var(--dwp-side);
        z-index: 103;
        background: transparent !important;
    }

    .dwp-header.is-open .dwp-menu-toggle span {
        background: #ffffff;
    }

    body.dwp-menu-open {
        overflow: hidden !important;
        touch-action: none;
    }
}

/* Who We Are — full-section video and shade */
.dwp-who .dwp-who-video {
    position: absolute;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* Shade covers complete section */
.dwp-who .dwp-who-shade {
    position: absolute;
    inset: 0 !important;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.85) 8%,
            rgba(0, 0, 0, 0.55) 20%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0.60) 80%,
            rgba(0, 0, 0, 0.95) 92%,
            rgba(0, 0, 0, 1) 100%
        ),
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.10) 25%,
            rgba(0, 0, 0, 0.10) 75%,
            rgba(0, 0, 0, 0.35) 100%
        );
}

/* Content remains above shade */
.dwp-who .dwp-who-copy {
    position: relative;
    z-index: 2;
}

/* Timeline mobile height and image fix */
@media (max-width: 820px) {

    .dwp-timeline .dwp-timeline-inner {
        min-height: 100svh;
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .dwp-timeline .dwp-timeline-stage {
        position: relative;
        width: calc(100% - 48px) !important;
        max-width: 420px;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: hidden;
        border-radius: 11px;
        aspect-ratio: 4 / 5 !important;
        background: #0e0e0e;
    }

    /* Works when timeline slide itself is an image */
    .dwp-timeline .dwp-timeline-slide {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    /* Also works if the slide has an image inside a wrapper */
    .dwp-timeline .dwp-timeline-slide > img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    /* Timeline arrows */
    .dwp-timeline .dwp-timeline-arrow {
        top: 50% !important;
        display: grid !important;
        width: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        place-items: center;
        transform: translateY(-50%);
        border: 0 !important;
        border-radius: 50%;
        background: transparent !important;
        box-shadow: none !important;
    }

    .dwp-timeline .dwp-timeline-arrow img {
        display: block !important;
        width: 38px !important;
        height: 38px !important;
        max-width: none !important;
        object-fit: contain !important;
    }

    .dwp-timeline .dwp-timeline-prev {
        left: 14px !important;
    }

    .dwp-timeline .dwp-timeline-next {
        right: 14px !important;
    }
    .dwp-hero{
        min-height: 50svh;
    }
}