:root {
    --jdps-bg: #f7f3ee;
    --jdps-bg-soft: #fcfaf7;
    --jdps-surface: rgba(255, 255, 255, 0.76);
    --jdps-surface-strong: rgba(255, 255, 255, 0.9);
    --jdps-ink: #1c241f;
    --jdps-muted: #647066;
    --jdps-line: rgba(28, 36, 31, 0.12);
    --jdps-accent: #a46f47;
    --jdps-accent-soft: #d8c0a9;
    --jdps-forest: #24372d;
    --jdps-forest-soft: #31493c;
    --jdps-shadow: 0 26px 80px rgba(20, 26, 22, 0.10);
    --jdps-shadow-soft: 0 16px 40px rgba(20, 26, 22, 0.08);
    --jdps-radius: 28px;
    --jdps-radius-sm: 18px;
    --jdps-container: min(1240px, calc(100vw - 48px));
    --jdps-header-space: 146px;
    --jdps-transition: 280ms cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--jdps-ink);
    background:
        radial-gradient(circle at top left, rgba(164, 111, 71, 0.11), transparent 30%),
        radial-gradient(circle at top right, rgba(36, 55, 45, 0.10), transparent 24%),
        linear-gradient(180deg, #fbf8f4 0%, #f4efe9 100%);
    min-height: 100vh;
    overflow-x: hidden;
}
body.jdps-drawer-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.jdps-container { width: var(--jdps-container); margin: 0 auto; }
.jdps-main { padding-bottom: 112px; }
.jdps-page { padding-top: calc(var(--jdps-header-space) + 24px); }
.jdps-page--hero { padding-top: 0; }

.jdps-topline {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 70;
    background: rgba(247, 243, 238, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(28, 36, 31, 0.08);
}
.jdps-topline__inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--jdps-muted);
}
.jdps-topline__meta { display: flex; gap: 18px; flex-wrap: wrap; }
.jdps-topline__meta a:hover { color: var(--jdps-accent); }

.jdps-header {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 69;
    padding: 18px 0 0;
    transition: transform var(--jdps-transition), padding var(--jdps-transition);
}
.jdps-header.is-scrolled { padding-top: 10px; }
.jdps-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 82px;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(28, 36, 31, 0.09);
    box-shadow: var(--jdps-shadow-soft);
}
.jdps-logo img { height: 54px; width: auto; }
.jdps-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.jdps-nav li { position: relative; }
.jdps-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(28, 36, 31, 0.78);
    transition: color var(--jdps-transition), background var(--jdps-transition), transform var(--jdps-transition);
}
.jdps-nav a:hover, .jdps-nav a.is-active {
    color: var(--jdps-ink);
    background: rgba(36, 55, 45, 0.08);
}
.jdps-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 230px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(28, 36, 31, 0.09);
    box-shadow: var(--jdps-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--jdps-transition);
}
.jdps-dropdown a, .jdps-dropdown span {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    border-radius: 0;
    background: none !important;
    min-height: auto;
}
.jdps-dropdown span { color: var(--jdps-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }
.has-dropdown:hover .jdps-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.jdps-dropdown--wide {
    min-width: 320px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.jdps-header__cta { display: flex; align-items: center; gap: 12px; }
.jdps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--jdps-forest);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform var(--jdps-transition), box-shadow var(--jdps-transition), background var(--jdps-transition), border-color var(--jdps-transition), color var(--jdps-transition);
    box-shadow: 0 14px 30px rgba(36, 55, 45, 0.16);
}
.jdps-button:hover { transform: translateY(-2px); color: #fff; }
.jdps-button--ghost {
    background: rgba(36, 55, 45, 0.08);
    color: var(--jdps-ink);
    border-color: rgba(36, 55, 45, 0.12);
    box-shadow: none;
}
.jdps-button--ghost:hover { background: rgba(36, 55, 45, 0.12); color: var(--jdps-ink); }
.jdps-button--light {
    background: rgba(255,255,255,0.92);
    color: var(--jdps-ink);
    box-shadow: 0 18px 38px rgba(20,26,22,.10);
}
.jdps-button--outline {
    background: transparent;
    color: var(--jdps-ink);
    border-color: rgba(255,255,255,0.42);
    box-shadow: none;
}
.jdps-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(28,36,31,.10);
    background: rgba(255,255,255,.88);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.jdps-menu-toggle span { width: 18px; height: 2px; border-radius: 999px; background: var(--jdps-ink); display: block; }
.jdps-god-blessing {
    position: fixed;
    top: 130px;
    left: 50%;
    z-index: 66;
    transform: translateX(-50%);
    pointer-events: none;
}
.jdps-god-blessing__frame {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 12px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(164, 111, 71, 0.34);
    box-shadow: var(--jdps-shadow-soft);
}
.jdps-god-blessing img {
    width: 52px;
    height: 72px;
    object-fit: contain;
    border: 1px solid rgba(164, 111, 71, 0.85);
    background: rgba(255,255,255,.85);
}
.jdps-god-blessing small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--jdps-accent);
}

.jdps-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(19, 25, 22, 0.26);
    opacity: 0;
    visibility: hidden;
    transition: var(--jdps-transition);
}
.jdps-mobile-drawer.is-open { opacity: 1; visibility: visible; }
.jdps-mobile-drawer__panel {
    margin-left: auto;
    width: min(420px, 100vw);
    height: 100%;
    padding: 26px;
    background: #faf7f2;
    transform: translateX(100%);
    transition: var(--jdps-transition);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.jdps-mobile-drawer.is-open .jdps-mobile-drawer__panel { transform: translateX(0); }
.jdps-mobile-drawer__top { display: flex; justify-content: space-between; align-items: center; }
.jdps-mobile-drawer__top img { height: 48px; width: auto; }
.jdps-mobile-close {
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(28,36,31,.12); background: #fff; font-size: 28px; line-height: 1; cursor: pointer;
}
.jdps-mobile-nav { display: grid; gap: 10px; }
.jdps-mobile-nav > a, .jdps-mobile-nav summary {
    display: block;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(28,36,31,.08);
    font-weight: 700;
    cursor: pointer;
}
.jdps-mobile-nav details { border-radius: 18px; background: rgba(255,255,255,.7); border: 1px solid rgba(28,36,31,.08); }
.jdps-mobile-nav summary { list-style: none; }
.jdps-mobile-nav summary::-webkit-details-marker { display: none; }
.jdps-mobile-subnav { display: grid; padding: 0 18px 18px; gap: 8px; }
.jdps-mobile-subnav a { color: var(--jdps-muted); }
.jdps-mobile-drawer__bottom { margin-top: auto; display: grid; gap: 10px; }
.jdps-mobile-drawer__bottom a { padding: 14px 18px; border-radius: 18px; background: var(--jdps-forest); color: #fff; font-weight: 700; text-align: center; }

.jdps-section { padding: 94px 0; }
.jdps-section--compact { padding: 76px 0; }
.jdps-shell {
    background: var(--jdps-surface);
    border: 1px solid rgba(255,255,255,0.54);
    box-shadow: var(--jdps-shadow);
    border-radius: calc(var(--jdps-radius) + 8px);
    backdrop-filter: blur(18px);
}
.jdps-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--jdps-accent);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
}
.jdps-eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(164,111,71,.5);
}
.jdps-heading {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4.85rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    font-weight: 600;
    max-width: 11ch;
}
.jdps-heading--small {
    font-size: clamp(2rem, 3vw, 3.2rem);
    max-width: none;
}
.jdps-heading[data-parallax] { will-change: transform; }
.jdps-lead {
    margin: 0;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.82;
    color: var(--jdps-muted);
}
.jdps-stack { display: grid; gap: 22px; }
.jdps-grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: end; }
.jdps-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.jdps-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.jdps-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: end;
    padding: calc(var(--jdps-header-space) + 28px) 0 46px;
}
.jdps-hero__slides, .jdps-hero__slide {
    position: absolute;
    inset: 0;
}
.jdps-hero__slide {
    opacity: 0;
    transition: opacity 900ms ease;
}
.jdps-hero__slide.is-active { opacity: 1; }
.jdps-hero__slide img {
    width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 6.5s ease;
}
.jdps-hero__slide.is-active img { transform: scale(1); }
.jdps-hero__overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(21, 28, 24, 0.12) 0%, rgba(21, 28, 24, 0.52) 58%, rgba(21, 28, 24, 0.82) 100%),
        linear-gradient(90deg, rgba(21,28,24,.72) 0%, rgba(21,28,24,.20) 48%, rgba(21,28,24,.54) 100%);
}
.jdps-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: end;
}
.jdps-hero__text { display: grid; gap: 18px; }
.jdps-hero__text .jdps-eyebrow { color: rgba(255,255,255,.78); }
.jdps-hero__text .jdps-eyebrow::before { background: rgba(255,255,255,.38); }
.jdps-hero__meta {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px;
}
.jdps-hero__meta span {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,.86);
}
.jdps-hero__panel {
    padding: 28px;
    border-radius: 32px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
    display: grid;
    gap: 18px;
}
.jdps-hero__panel h3 { margin: 0; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.64); }
.jdps-discovery-list { display: grid; gap: 12px; }
.jdps-discovery-list a {
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
    padding: 14px 16px; border-radius: 20px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.08);
    font-size: 14px; font-weight: 700; color: rgba(255,255,255,.92);
}
.jdps-discovery-list a span { color: rgba(255,255,255,.62); font-weight: 500; }
.jdps-hero__dots { display: flex; gap: 10px; }
.jdps-hero__dots button {
    width: 11px; height: 11px; border-radius: 50%; border: 0; background: rgba(255,255,255,.35); padding: 0;
}
.jdps-hero__dots button.is-active { background: #fff; transform: scale(1.15); }

.jdps-category-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: -42px; position: relative; z-index: 2; }
.jdps-category-card {
    padding: 22px;
    border-radius: 30px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.62);
    box-shadow: var(--jdps-shadow-soft);
    display: grid;
    gap: 8px;
}
.jdps-category-card span { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--jdps-accent); font-weight: 800; }
.jdps-category-card h3 { margin: 0; font-size: 18px; }
.jdps-category-card p { margin: 0; font-size: 13px; line-height: 1.7; color: var(--jdps-muted); }

.jdps-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: var(--jdps-surface-strong);
    border: 1px solid rgba(255,255,255,.62);
    box-shadow: var(--jdps-shadow-soft);
}
.jdps-card__media {
    position: relative;
    aspect-ratio: 1 / 1.08;
    overflow: hidden;
}
.jdps-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms ease; }
.jdps-card:hover .jdps-card__media img { transform: scale(1.04); }
.jdps-card__label {
    position: absolute; top: 18px; left: 18px;
    display: inline-flex; align-items: center; min-height: 34px;
    padding: 0 12px; border-radius: 999px;
    background: #FFA500 !important; color: var(--jdps-ink);
    font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800;
}
.jdps-card__body { padding: 24px; display: grid; gap: 16px; }
.jdps-card__title { margin: 0; font-size: 22px; line-height: 1.16; }
.jdps-card__meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--jdps-muted); font-size: 13px; }
.jdps-card__meta span {
    padding: 8px 10px; border-radius: 999px; background: rgba(36,55,45,.06); border: 1px solid rgba(36,55,45,.08);
}
.jdps-card__body p { margin: 0; color: var(--jdps-muted); font-size: 14px; line-height: 1.75; }
.jdps-card__footer { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.jdps-link {
    display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--jdps-accent);
}
.jdps-link::after { content: '→'; transition: transform var(--jdps-transition); }
.jdps-link:hover::after { transform: translateX(4px); }

.jdps-showcase {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
}
.jdps-showcase__media { min-height: 560px; border-radius: 34px; overflow: hidden; position: relative; }
.jdps-showcase__media img { width: 100%; height: 100%; object-fit: fill; }
.jdps-showcase__copy { padding: 42px; }
.jdps-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.jdps-stat {
    padding: 18px 16px;
    border-radius: 22px;
    background: rgba(36,55,45,.06);
    border: 1px solid rgba(36,55,45,.08);
}
.jdps-stat strong { display: block; font-size: 22px; }
.jdps-stat span { font-size: 12px; color: var(--jdps-muted); text-transform: uppercase; letter-spacing: .12em; }

.jdps-scroller {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 360px);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.jdps-scroller::-webkit-scrollbar { display: none; }

.jdps-agent-card { padding: 18px; display: grid; gap: 16px; }
.jdps-agent-card__top { display: grid; grid-template-columns: 108px 1fr; gap: 16px; align-items: center; }
.jdps-agent-card__top img { width: 108px; height: 124px; object-fit: cover; border-radius: 24px; }
.jdps-agent-card__top span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--jdps-accent); font-weight: 800; }
.jdps-agent-card__top h3 { margin: 2px 0 8px; font-size: 24px; }
.jdps-agent-card__top p { margin: 0; font-size: 13px; line-height: 1.7; color: var(--jdps-muted); }
.jdps-agent-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.jdps-agent-card__actions a {
    min-height: 42px; padding: 0 16px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(36,55,45,.08); background: rgba(36,55,45,.06); font-size: 13px; font-weight: 700;
}

.jdps-logo-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(152px, 1fr);
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.jdps-logo-strip::-webkit-scrollbar { display: none; }
.jdps-logo-item {
    min-height: 116px; border-radius: 24px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.55); box-shadow: var(--jdps-shadow-soft);
}
.jdps-logo-item img { max-width: 140px; max-height: 70px; object-fit: contain; filter: saturate(.9) contrast(.95); }

.jdps-testimonial {
    padding: 26px;
    display: grid;
    gap: 16px;
}
.jdps-testimonial__top { display: flex; align-items: center; gap: 12px; }
.jdps-testimonial__top img { width: 68px; height: 68px; object-fit: cover; border-radius: 20px; }
.jdps-testimonial__top strong { display: block; font-size: 18px; }
.jdps-testimonial__top span { font-size: 12px; color: var(--jdps-muted); text-transform: uppercase; letter-spacing: .12em; }
.jdps-testimonial p { margin: 0; color: var(--jdps-muted); font-size: 14px; line-height: 1.8; }

.jdps-blog-card { display: grid; gap: 0; }
.jdps-blog-card .jdps-card__media { aspect-ratio: 1 / .72; }
.jdps-blog-card__date { color: var(--jdps-muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }

.jdps-page-hero {
    padding: calc(var(--jdps-header-space) + 46px) 0 34px;
}
.jdps-page-hero__inner {
    padding: 48px;
    min-height: 360px;
    border-radius: 42px;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: grid;
    align-items: end;
    background: linear-gradient(140deg, rgba(36,55,45,.82), rgba(164,111,71,.68));
}
.jdps-page-hero__inner > img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: soft-light; opacity: .42;
}
.jdps-page-hero__content { position: relative; z-index: 1; max-width: 760px; display: grid; gap: 18px; }
.jdps-breadcrumbs { display: flex; gap: 10px; flex-wrap: wrap; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.75); }
.jdps-breadcrumbs a { color: rgba(255,255,255,.88); }

.jdps-filter-bar {
    display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none;
}
.jdps-filter-bar a {
    min-height: 42px; padding: 0 16px; border-radius: 999px; display: inline-flex; align-items: center; background: rgba(36,55,45,.06); border: 1px solid rgba(36,55,45,.08); color: var(--jdps-muted); font-size: 13px; font-weight: 700;
}
.jdps-filter-bar a.is-active, .jdps-filter-bar a:hover { background: var(--jdps-forest); color: #fff; }
.jdps-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.jdps-empty-state {
    padding: 54px; border-radius: 32px; background: rgba(255,255,255,.78); text-align: center; color: var(--jdps-muted); box-shadow: var(--jdps-shadow-soft);
}

.jdps-detail-shell { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 24px; }
.jdps-gallery { display: grid; gap: 16px; }
.jdps-gallery__main {
    border-radius: 32px; overflow: hidden; min-height: 520px; background: rgba(255,255,255,.78); box-shadow: var(--jdps-shadow-soft);
}
.jdps-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.jdps-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.jdps-gallery__thumbs button { border: 0; padding: 0; border-radius: 20px; overflow: hidden; background: transparent; cursor: pointer; }
.jdps-gallery__thumbs img { width: 100%; height: 116px; object-fit: cover; border-radius: 20px; }
.jdps-sticky-card {
    position: sticky; top: 132px; align-self: start; padding: 28px; display: grid; gap: 20px;
}
.jdps-badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.jdps-badge-row span {
    min-height: 34px; padding: 0 12px; border-radius: 999px; display: inline-flex; align-items: center; background: rgba(36,55,45,.08); border: 1px solid rgba(36,55,45,.08); font-size: 12px; font-weight: 700; color: var(--jdps-ink);
}
.jdps-detail-facts { display: grid; gap: 12px; }
.jdps-detail-facts div {
    display: flex; justify-content: space-between; gap: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--jdps-line);
}
.jdps-detail-facts div:last-child { border-bottom: 0; padding-bottom: 0; }
.jdps-detail-facts span { color: var(--jdps-muted); }
.jdps-detail-block { padding: 28px; }
.jdps-detail-block h3 { margin: 0 0 14px; font-size: 24px; }
.jdps-detail-block p { margin: 0; color: var(--jdps-muted); line-height: 1.88; }
.jdps-chip-list { display: flex; flex-wrap: wrap; gap: 10px; }
.jdps-chip-list span {
    min-height: 40px; padding: 0 16px; border-radius: 999px; display: inline-flex; align-items: center; background: rgba(36,55,45,.06); border: 1px solid rgba(36,55,45,.08); font-size: 13px; color: var(--jdps-ink);
}
.jdps-table-wrap { overflow-x: auto; }
.jdps-table {
    width: 100%; border-collapse: collapse; min-width: 480px;
}
.jdps-table th, .jdps-table td { padding: 16px; border-bottom: 1px solid var(--jdps-line); font-size: 14px; }
.jdps-table th { text-align: left; color: var(--jdps-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.jdps-video iframe {
    width: 100%; min-height: 420px; border: 0; border-radius: 30px; box-shadow: var(--jdps-shadow-soft);
}

.jdps-about-grid {
    display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: center;
}
.jdps-about-grid__media { min-height: 620px; border-radius: 36px; overflow: hidden; box-shadow: var(--jdps-shadow); }
.jdps-about-grid__media img { width: 100%; height: 100%; object-fit: cover; }
.jdps-office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.jdps-office-card, .jdps-pillars article {
    padding: 24px; border-radius: 28px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.6); box-shadow: var(--jdps-shadow-soft);
}
.jdps-office-card span, .jdps-pillars span { font-size: 11px; color: var(--jdps-accent); text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.jdps-office-card h3, .jdps-pillars h3 { margin: 10px 0 12px; font-size: 22px; }
.jdps-office-card p, .jdps-pillars p { margin: 0; font-size: 14px; line-height: 1.8; color: var(--jdps-muted); }
.jdps-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.jdps-contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; }
.jdps-form-shell { padding: 30px; }
.jdps-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.jdps-form-grid .full { grid-column: 1 / -1; }
.jdps-field {
    width: 100%; min-height: 56px; border-radius: 18px; border: 1px solid rgba(36,55,45,.10); background: rgba(255,255,255,.72); padding: 0 18px; color: var(--jdps-ink);
}
textarea.jdps-field { min-height: 160px; padding: 16px 18px; resize: vertical; }
.jdps-form-note { font-size: 12px; color: var(--jdps-muted); line-height: 1.7; }
.jdps-map-shell iframe { width: 100%; min-height: 100%; border: 0; border-radius: 32px; box-shadow: var(--jdps-shadow); }

.jdps-profile-hero {
    display: grid; grid-template-columns: .82fr 1.18fr; gap: 26px; align-items: stretch;
}
.jdps-profile-hero__media { min-height: 680px; border-radius: 40px; overflow: hidden; box-shadow: var(--jdps-shadow); }
.jdps-profile-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.jdps-profile-hero__copy { padding: 38px; display: grid; gap: 22px; }
.jdps-profile-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.jdps-profile-meta span { min-height: 34px; padding: 0 12px; border-radius: 999px; display: inline-flex; align-items: center; background: rgba(36,55,45,.08); font-size: 12px; font-weight: 700; }
.jdps-profile-contact {
    display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 20px; border-radius: 26px; background: rgba(36,55,45,.05); border: 1px solid rgba(36,55,45,.08);
}
.jdps-profile-contact__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.jdps-profile-contact__qr img { width: 92px; height: 92px; object-fit: contain; border-radius: 16px; background: rgba(255,255,255,.72); padding: 8px; border: 1px solid rgba(36,55,45,.08); }
.jdps-profile-story { display: grid; gap: 18px; }
.jdps-profile-story p { margin: 0; color: var(--jdps-muted); line-height: 1.9; }

.jdps-footer-shell {
    padding: 36px 0 108px;
    background: linear-gradient(180deg, rgba(26,33,29,.96), rgba(20,25,22,.98));
    color: rgba(255,255,255,.78);
}
.jdps-footer__top { display: grid; grid-template-columns: 1fr 1.5fr; gap: 26px; align-items: start; }
.jdps-footer__brand { padding: 28px; border-radius: 32px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); }
.jdps-footer__brand img { width: 250px; max-width: 100%; margin-bottom: 22px; filter: brightness(0) invert(1); }
.jdps-footer__brand p { margin: 0; line-height: 1.85; font-size: 14px; }
.jdps-footer__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.jdps-footer__actions a { min-height: 40px; padding: 0 14px; border-radius: 999px; display: inline-flex; align-items: center; background: rgba(255,255,255,.08); }
.jdps-footer__office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.jdps-footer-card {
    padding: 24px; border-radius: 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.jdps-footer-card span { display: block; margin-bottom: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.42); font-weight: 800; }
.jdps-footer-card h4 { margin: 0 0 10px; color: #fff; }
.jdps-footer-card p { margin: 0; font-size: 13px; line-height: 1.8; }
.jdps-footer-card a { color: #fff; }
.jdps-visitor-counter {
    margin: 30px auto 20px; width: fit-content; min-width: 210px; padding: 16px 22px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); text-align: center;
}
.jdps-visitor-counter span { display: block; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.48); font-weight: 800; }
.jdps-visitor-counter strong { display: block; margin-top: 6px; font-size: 28px; color: #fff; }
.jdps-footer__bottom {
    display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px;
}
.jdps-footer__bottom a { color: #fff; }

.jdps-mobile-bottom-nav {
    position: fixed; left: 50%; bottom: 14px; z-index: 65; transform: translateX(-50%);
    width: min(540px, calc(100vw - 24px));
    display: none; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 10px; border-radius: 28px; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border: 1px solid rgba(28,36,31,.08); box-shadow: 0 18px 46px rgba(20,26,22,.12);
}
.jdps-mobile-bottom-nav a { display: grid; justify-items: center; gap: 6px; padding: 8px 4px; font-size: 11px; color: var(--jdps-muted); font-weight: 700; }
.jdps-mobile-bottom-nav i { font-size: 16px; color: var(--jdps-forest); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
    .jdps-grid-3, .jdps-listing-grid, .jdps-office-grid, .jdps-pillars, .jdps-footer__office-grid, .jdps-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .jdps-grid-2, .jdps-showcase, .jdps-about-grid, .jdps-contact-grid, .jdps-detail-shell, .jdps-profile-hero, .jdps-footer__top, .jdps-hero__content { grid-template-columns: 1fr; }
    .jdps-showcase__media, .jdps-about-grid__media, .jdps-profile-hero__media { min-height: 440px; }
    .jdps-sticky-card { position: static; }
}

@media (max-width: 991px) {
    :root { --jdps-container: min(100vw - 30px, 1240px); --jdps-header-space: 130px; }
    .jdps-nav, .jdps-header__cta .jdps-button--ghost { display: none; }
    .jdps-menu-toggle { display: inline-flex; }
    .jdps-category-strip { grid-template-columns: repeat(2, 1fr); }
    .jdps-hero { min-height: auto; padding-bottom: 28px; }
    .jdps-hero__panel { order: -1; }
    .jdps-gallery__main { min-height: 380px; }
    .jdps-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
    .jdps-footer-shell { padding-bottom: 120px; }
    .jdps-mobile-bottom-nav { display: grid; }
}

@media (max-width: 767px) {
    :root { --jdps-header-space: 124px; }
    .jdps-topline__copy { display: none; }
    .jdps-topline__inner { justify-content: center; }
    .jdps-header__inner { grid-template-columns: 1fr auto; min-height: 72px; padding: 12px 16px; border-radius: 26px; }
    .jdps-logo img { height: 44px; }
    .jdps-god-blessing { top: 120px; }
    .jdps-section { padding: 74px 0; }
    .jdps-page-hero { padding-top: calc(var(--jdps-header-space) + 30px); }
    .jdps-page-hero__inner, .jdps-showcase__copy, .jdps-detail-block, .jdps-form-shell, .jdps-profile-hero__copy { padding: 26px; }
    .jdps-heading { font-size: clamp(2.2rem, 9vw, 3.5rem); max-width: none; }
    .jdps-category-strip, .jdps-grid-3, .jdps-grid-4, .jdps-listing-grid, .jdps-office-grid, .jdps-pillars, .jdps-footer__office-grid, .jdps-form-grid { grid-template-columns: 1fr; }
    .jdps-card__media { aspect-ratio: 1 / 1.16; }
    .jdps-hero__meta { gap: 8px; }
    .jdps-hero__meta span { font-size: 11px; }
    .jdps-hero__panel { padding: 20px; border-radius: 24px; }
    .jdps-stat-row { grid-template-columns: 1fr; }
    .jdps-gallery__thumbs { grid-template-columns: repeat(2, 1fr); }
    .jdps-video iframe { min-height: 280px; }
    .jdps-profile-contact { grid-template-columns: 1fr; }
    .jdps-profile-contact__qr { justify-self: start; }
    .jdps-footer__bottom { justify-content: center; text-align: center; }
}

/* JDPS focused refinement requested after premium rebuild */
.jdps-god-blessing--home {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 2;
    display: flex;
    justify-content: center;
    pointer-events: none;
    margin: calc(var(--jdps-header-space) + 10px) auto 18px;
}
.jdps-god-blessing--home .jdps-god-blessing__frame {
    gap: 5px;
    padding: 7px 8px 8px;
    border-color: rgba(164, 111, 71, 0.48);
    box-shadow: 0 10px 34px rgba(20, 26, 22, 0.08);
    background: rgba(255,255,255,0.72);
}
.jdps-god-blessing--home img {
    width: 40px;
    height: 55px;
    border-radius: 0;
}
.jdps-god-blessing--home small {
    font-size: 8px;
    letter-spacing: .1em;
}
.jdps-god-blessing--home + .jdps-main .jdps-hero {
    min-height: calc(100svh - var(--jdps-header-space) - 82px);
    padding-top: 28px;
}
.jdps-hero__content--focused {
    grid-template-columns: minmax(0, 760px);
    align-items: end;
}
.jdps-hero-lines {
    position: relative;
    min-height: 1.08em;
    max-width: 12ch;
}
.jdps-hero-line {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 700ms ease, transform 700ms ease;
}
.jdps-hero-line.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}
.jdps-hero-copy-wrap {
    position: relative;
    min-height: 62px;
}
.jdps-hero-copy {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 700ms ease, transform 700ms ease;
}
.jdps-hero-copy.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}
.jdps-hero__dots--inline {
    margin-top: 4px;
}
.jdps-card {
    transform-style: preserve-3d;
    transition: transform 420ms cubic-bezier(.22,.61,.36,1), box-shadow 420ms ease, border-color 420ms ease;
}
.jdps-card:hover {
    transform: translateY(-8px) rotateX(1.4deg) rotateY(-1.2deg);
    box-shadow: 0 30px 90px rgba(20, 26, 22, 0.16);
    border-color: rgba(164,111,71,.22);
}
.jdps-card__hover {
    position: absolute;
    inset: auto 16px 16px 16px;
    z-index: 2;
    display: grid;
    gap: 4px;
    padding: 15px 16px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(180deg, rgba(20,26,22,.16), rgba(20,26,22,.72));
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 360ms ease, transform 360ms ease;
}
.jdps-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(16,22,18,.66) 100%);
    opacity: 0;
    transition: opacity 360ms ease;
}
.jdps-card:hover .jdps-card__hover,
.jdps-card:focus-within .jdps-card__hover {
    opacity: 1;
    transform: translateY(0);
}
.jdps-card:hover .jdps-card__media::after,
.jdps-card:focus-within .jdps-card__media::after {
    opacity: 1;
}
.jdps-card__hover strong {
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.jdps-card__hover em {
    font-style: normal;
    font-size: 12px;
    color: rgba(255,255,255,.78);
    text-transform: uppercase;
    letter-spacing: .12em;
}
.jdps-logo-marquee,
.jdps-insights-slider {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.jdps-logo-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: jdpsMarquee 32s linear infinite;
}
.jdps-logo-marquee:hover .jdps-logo-track,
.jdps-insights-slider:hover .jdps-insights-track {
    animation-play-state: paused;
}
.jdps-logo-track .jdps-logo-item {
    flex: 0 0 172px;
}
.jdps-insights-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: jdpsMarquee 34s linear infinite;
}
.jdps-insights-track .jdps-blog-card {
    flex: 0 0 350px;
}
@keyframes jdpsMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .jdps-logo-track,
    .jdps-insights-track { animation: none; }
}
@media (hover: none) {
    .jdps-card__hover {
        opacity: 1;
        transform: translateY(0);
    }
    .jdps-card__media::after { opacity: 1; }
    .jdps-card:hover { transform: none; }
}
@media (max-width: 991px) {
    .jdps-god-blessing--home {
        margin-top: calc(var(--jdps-header-space) + 8px);
        margin-bottom: 14px;
    }
    .jdps-god-blessing--home + .jdps-main .jdps-hero {
        min-height: calc(100svh - var(--jdps-header-space) - 70px);
    }
    .jdps-insights-track .jdps-blog-card { flex-basis: 310px; }
}
@media (max-width: 575px) {
    .jdps-god-blessing--home img { width: 34px; height: 47px; }
    .jdps-god-blessing--home .jdps-god-blessing__frame { padding: 6px 7px; }
    .jdps-hero-copy-wrap { min-height: 96px; }
    .jdps-logo-track .jdps-logo-item { flex-basis: 142px; }
    .jdps-insights-track .jdps-blog-card { flex-basis: 282px; }
}

/* JDPS refinement v3: overlay header, flowing hero, bigger god photo, animated index showcases */
.jdps-header {
    z-index: 80;
    padding-top: 14px;
}
.jdps-header__inner {
    box-shadow: 0 22px 70px rgba(20, 26, 22, 0.18);
}
.jdps-header.is-scrolled .jdps-header__inner {
    box-shadow: 0 16px 42px rgba(20, 26, 22, 0.16);
}
.jdps-main.jdps-page {
    padding-top: 0 !important;
}
.jdps-page-hero {
    padding: 42px 0 34px !important;
}
.jdps-page-hero__inner {
    min-height: 430px;
    align-items: end;
    box-shadow: 0 28px 90px rgba(20, 26, 22, 0.16);
}
.jdps-page-hero__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 14, 0.20) 0%, rgba(11, 18, 14, 0.38) 45%, rgba(11, 18, 14, 0.72) 100%);
    z-index: 0;
    pointer-events: none;
}
.jdps-page-hero__inner > img {
    mix-blend-mode: normal;
    opacity: .86;
    filter: saturate(.92) contrast(1.02);
}
.jdps-page-hero__content {
    z-index: 2;
    padding-top: 120px;
}
.jdps-page-hero .jdps-heading,
.jdps-page-hero .jdps-breadcrumbs,
.jdps-page-hero .jdps-breadcrumbs a,
.jdps-page-hero .jdps-eyebrow {
    color: #fff;
}
.jdps-page-hero .jdps-lead {
    color: rgba(255,255,255,.88);
    text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.jdps-page-hero .jdps-eyebrow::before {
    background: rgba(255,255,255,.46);
}
.jdps-page--hero .jdps-hero {
    margin-top: 42px;
    min-height: calc(100svh - 42px);
    padding: 166px 0 64px;
}
.jdps-page--hero .jdps-hero__content {
    padding-top: 86px;
}
.jdps-god-blessing--home {
    position: absolute !important;
    top: 122px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 3;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.jdps-god-blessing--home .jdps-god-blessing__frame {
    gap: 7px;
    padding: 9px 10px 10px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(164, 111, 71, .55);
    box-shadow: 0 20px 62px rgba(20, 26, 22, .22);
    backdrop-filter: blur(16px);
}
.jdps-god-blessing--home img {
    width: 60px !important;
    height: 82px !important;
    border-radius: 0;
    object-fit: contain;
    border: 1px solid rgba(164,111,71,.88);
}
.jdps-god-blessing--home small {
    font-size: 9px;
    letter-spacing: .12em;
}
.jdps-god-blessing--home + .jdps-main .jdps-hero {
    min-height: calc(100svh - 42px);
    padding-top: 166px;
}

/* Animated project/property showcases on the homepage */
.jdps-index-carousel-shell {
    position: relative;
    overflow: hidden !important;
    display: block !important;
    padding: 8px 0 16px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.jdps-index-carousel-shell::-webkit-scrollbar { display: none; }
.jdps-index-carousel-track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: jdpsIndexShowcase 38s linear infinite;
    will-change: transform;
}
.jdps-index-carousel-shell:hover .jdps-index-carousel-track {
    animation-play-state: paused;
}
.jdps-index-carousel-track .jdps-card {
    flex: 0 0 clamp(300px, calc((min(1240px, 100vw - 48px) - 44px) / 3), 392px);
    width: clamp(300px, calc((min(1240px, 100vw - 48px) - 44px) / 3), 392px);
}
@keyframes jdpsIndexShowcase {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Stronger bottom vignette hover for project/property tiles */
.jdps-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 112%, rgba(0,0,0,.92) 0%, rgba(0,0,0,.70) 34%, rgba(0,0,0,.20) 64%, transparent 100%), linear-gradient(180deg, transparent 36%, rgba(7,11,9,.82) 100%);
    opacity: 0;
    transition: opacity 420ms ease;
    z-index: 1;
}
.jdps-card__hover {
    inset: auto 0 0 0;
    padding: 52px 24px 24px;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    z-index: 2;
    gap: 8px;
}
.jdps-card__hover strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: .98;
    letter-spacing: -.03em;
    color: #fff;
    text-shadow: 0 10px 28px rgba(0,0,0,.38);
}
.jdps-card__hover em {
    font-size: 13px;
    color: rgba(255,255,255,.84);
    letter-spacing: .16em;
    text-shadow: 0 6px 18px rgba(0,0,0,.32);
}
.jdps-card:hover .jdps-card__media::after,
.jdps-card:focus-within .jdps-card__media::after {
    opacity: 1;
}
.jdps-card:hover .jdps-card__hover,
.jdps-card:focus-within .jdps-card__hover {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .jdps-index-carousel-track { animation: none; }
}
@media (max-width: 991px) {
    .jdps-page--hero .jdps-hero {
        padding-top: 154px;
        min-height: calc(100svh - 42px);
    }
    .jdps-god-blessing--home {
        top: 112px !important;
    }
    .jdps-god-blessing--home img {
        width: 52px !important;
        height: 72px !important;
    }
    .jdps-index-carousel-track .jdps-card {
        flex-basis: min(78vw, 340px);
        width: min(78vw, 340px);
    }
}
@media (max-width: 767px) {
    .jdps-page-hero { padding-top: 42px !important; }
    .jdps-page-hero__inner {
        min-height: 360px;
        border-radius: 32px;
    }
    .jdps-page-hero__content { padding-top: 104px; }
    .jdps-page--hero .jdps-hero {
        padding-top: 146px;
    }
    .jdps-god-blessing--home {
        top: 104px !important;
    }
    .jdps-god-blessing--home img {
        width: 46px !important;
        height: 64px !important;
    }
    .jdps-god-blessing--home small { font-size: 7px; }
    .jdps-card__hover strong { font-size: 26px; }
}
@media (max-width: 575px) {
    .jdps-page--hero .jdps-hero { padding-top: 138px; }
    .jdps-index-carousel-track .jdps-card {
        flex-basis: 82vw;
        width: 82vw;
    }
}

/* JDPS refinement v4: slower motion, cleaner god photo, uniform inner-page spacing */
.jdps-hero__slide {
    transition: opacity 1400ms ease;
}
.jdps-hero__slide img {
    transition: transform 11s ease;
}
.jdps-hero-line,
.jdps-hero-copy {
    transition-duration: 1050ms;
}
.jdps-index-carousel-track {
    animation-duration: 58s !important;
}
.jdps-logo-track {
    animation-duration: 54s !important;
}
.jdps-insights-track {
    animation-duration: 56s !important;
}

/* Remove the outer square/card over the god image while keeping a neat text label below */
.jdps-god-blessing--home .jdps-god-blessing__frame {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    padding: 0 !important;
    gap: 8px !important;
}
.jdps-god-blessing--home img {
    width: 78px !important;
    height: 108px !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 1.5px solid rgba(164,111,71,.92) !important;
    box-shadow: 0 16px 42px rgba(20,26,22,.18) !important;
}
.jdps-god-blessing--home small {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 150px;
    margin: 0 auto;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    color: var(--jdps-accent) !important;
    font-size: 9px !important;
    font-weight: 800;
    letter-spacing: .12em !important;
    text-align: center;
    box-shadow: 0 10px 28px rgba(20,26,22,.12);
}

/* Inner pages: start the hero uniformly after the fixed menubar */
.jdps-main.jdps-page {
    padding-top: calc(var(--jdps-header-space) + 18px) !important;
}
.jdps-page-hero {
    padding: 0 0 34px !important;
}
.jdps-page-hero__inner {
    min-height: 380px;
}
.jdps-page-hero__content {
    padding-top: 0 !important;
}
.jdps-page-hero .jdps-lead {
    color: rgba(255,255,255,.92) !important;
    text-shadow: 0 2px 18px rgba(0,0,0,.38);
}

@media (max-width: 991px) {
    .jdps-god-blessing--home img {
        width: 68px !important;
        height: 94px !important;
    }
    .jdps-main.jdps-page {
        padding-top: calc(var(--jdps-header-space) + 14px) !important;
    }
}
@media (max-width: 767px) {
    .jdps-god-blessing--home {
        top: 102px !important;
    }
    .jdps-god-blessing--home img {
        width: 58px !important;
        height: 80px !important;
    }
    .jdps-page-hero__inner {
        min-height: 330px;
    }
}

/* ==========================================================
   JDPS FINAL PREMIUM COLOR SYSTEM
   Warm ivory + charcoal + JDPS orange + deep brown.
   This layer keeps the existing structure/security intact and
   refines the visual tone consistently across public pages.
   ========================================================== */
:root {
    --jdps-ivory: #F7F3EA;
    --jdps-charcoal: #171717;
    --jdps-deep-green: #2A1A12; /* JDPS dark brown */
    --jdps-bronze: #EC691F; /* JDPS orange */
    --jdps-soft-beige: #F0DED2;
    --jdps-muted-grey: #6F6F6F;
    --jdps-white: #FFFFFF;

    --jdps-bg: var(--jdps-ivory);
    --jdps-bg-soft: #FFFCF6;
    --jdps-surface: rgba(255, 255, 255, 0.82);
    --jdps-surface-strong: rgba(255, 255, 255, 0.96);
    --jdps-ink: var(--jdps-charcoal);
    --jdps-muted: var(--jdps-muted-grey);
    --jdps-line: rgba(236, 105, 31, 0.15);
    --jdps-accent: var(--jdps-bronze);
    --jdps-accent-soft: #FFD5BF;
    --jdps-forest: var(--jdps-deep-green);
    --jdps-forest-soft: #4A2617;
    --jdps-shadow: 0 26px 78px rgba(42, 26, 18, 0.13);
    --jdps-shadow-soft: 0 16px 42px rgba(42, 26, 18, 0.10);
}

html {
    background: var(--jdps-ivory);
}

body {
    color: var(--jdps-charcoal);
    background:
        radial-gradient(circle at 12% 0%, rgba(236, 105, 31, 0.18), transparent 34%),
        radial-gradient(circle at 88% 6%, rgba(42, 26, 18, 0.16), transparent 28%),
        linear-gradient(180deg, #FFFDF8 0%, #F7F3EA 42%, #EFE6D7 100%) !important;
}

::selection {
    background: rgba(236, 105, 31, 0.26);
    color: var(--jdps-charcoal);
}

.jdps-topline {
    background: rgba(42, 26, 18, 0.94) !important;
    border-bottom-color: rgba(255, 255, 255, 0.10) !important;
}

.jdps-topline__inner,
.jdps-topline__meta a {
    color: rgba(255, 255, 255, 0.78) !important;
}

.jdps-topline__meta a:hover {
    color: #D3D3D3 !important;
}

.jdps-topline__meta a:hover i {
    color: #D3D3D3 !important;
}

.jdps-header__inner {
    background: rgba(255, 255, 255, 0.90) !important;
    border-color: rgba(240, 222, 210, 0.84) !important;
    box-shadow: 0 24px 70px rgba(42, 26, 18, 0.18) !important;
}

.jdps-header.is-scrolled .jdps-header__inner {
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 18px 46px rgba(42, 26, 18, 0.16) !important;
}

.jdps-nav a {
    color: rgba(23, 23, 23, 0.76) !important;
}

.jdps-nav a:hover,
.jdps-nav a.is-active {
    color: var(--jdps-deep-green) !important;
    background: rgba(236, 105, 31, 0.14) !important;
}

.jdps-dropdown {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(240, 222, 210, 0.92) !important;
    box-shadow: 0 26px 70px rgba(42, 26, 18, 0.15) !important;
}

.jdps-dropdown span,
.jdps-eyebrow,
.jdps-link,
.jdps-agent-card__top span,
.jdps-office-card span,
.jdps-pillars span {
    color: var(--jdps-bronze) !important;
}

.jdps-eyebrow::before {
    background: rgba(236, 105, 31, 0.58) !important;
}

.jdps-button {
    background: linear-gradient(135deg, #2A1A12 0%, #5A2B16 100%) !important;
    color: #FFFFFF !important;
    border-color: rgba(236, 105, 31, 0.42) !important;
    box-shadow: 0 16px 34px rgba(42, 26, 18, 0.22) !important;
}

.jdps-button:hover {
    background: linear-gradient(135deg, #EC691F 0%, #FF8A42 100%) !important;
    color: #171717 !important;
    box-shadow: 0 18px 42px rgba(236, 105, 31, 0.28) !important;
}

.jdps-button--ghost {
    background: rgba(42, 26, 18, 0.08) !important;
    color: var(--jdps-deep-green) !important;
    border-color: rgba(42, 26, 18, 0.13) !important;
    box-shadow: none !important;
}

.jdps-button--ghost:hover {
    background: rgba(236, 105, 31, 0.16) !important;
    color: var(--jdps-charcoal) !important;
}

.jdps-button--light {
    background: rgba(255, 255, 255, 0.94) !important;
    color: var(--jdps-deep-green) !important;
    border-color: rgba(240, 222, 210, 0.72) !important;
}

.jdps-hero__overlay {
    background:
        linear-gradient(180deg, rgba(42, 26, 18, 0.08) 0%, rgba(42, 26, 18, 0.42) 54%, rgba(42, 26, 18, 0.84) 100%),
        linear-gradient(90deg, rgba(42, 26, 18, 0.78) 0%, rgba(42, 26, 18, 0.20) 48%, rgba(23, 23, 23, 0.42) 100%) !important;
}

.jdps-hero__text .jdps-eyebrow,
.jdps-hero__text .jdps-lead,
.jdps-page-hero .jdps-lead {
    color: rgba(255, 255, 255, 0.88) !important;
}

.jdps-hero__dots button.is-active {
    background: var(--jdps-accent-soft) !important;
}

.jdps-shell,
.jdps-card,
.jdps-office-card,
.jdps-pillars article,
.jdps-form-shell,
.jdps-sticky-card,
.jdps-detail-block,
.jdps-testimonial,
.jdps-blog-card,
.jdps-agent-card {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(240, 222, 210, 0.80) !important;
    box-shadow: 0 18px 46px rgba(42, 26, 18, 0.10) !important;
}

.jdps-card:hover,
.jdps-agent-card:hover,
.jdps-blog-card:hover {
    border-color: rgba(236, 105, 31, 0.42) !important;
    box-shadow: 0 30px 88px rgba(42, 26, 18, 0.16) !important;
}

.jdps-card__label,
.jdps-badge-row span,
.jdps-chip-list span,
.jdps-profile-meta span,
.jdps-card__meta span,
.jdps-stat {
    background: rgba(247, 243, 234, 0.84) !important;
    border-color: rgba(240, 222, 210, 0.90) !important;
}
.jdps-card__label {
    background: #FFA500 !important;
    color: #ffffff !important;
    border: 1px solid #FFA500 !important;
}

.jdps-card__media::after {
    background:
        radial-gradient(circle at 50% 112%, rgba(42, 26, 18, .96) 0%, rgba(42, 26, 18, .74) 36%, rgba(42, 26, 18, .24) 66%, transparent 100%),
        linear-gradient(180deg, transparent 36%, rgba(42, 26, 18, .86) 100%) !important;
}

.jdps-card__hover strong {
    color: #FFFFFF !important;
}

.jdps-card__hover em {
    color: rgba(240, 222, 210, 0.92) !important;
}

.jdps-showcase__media,
.jdps-gallery__main,
.jdps-about-grid__media,
.jdps-profile-hero__media,
.jdps-map-shell iframe,
.jdps-page-hero__inner {
    box-shadow: 0 28px 86px rgba(42, 26, 18, 0.16) !important;
}

.jdps-page-hero__inner::after {
    background:
        linear-gradient(180deg, rgba(42, 26, 18, 0.18) 0%, rgba(42, 26, 18, 0.40) 44%, rgba(42, 26, 18, 0.76) 100%) !important;
}

.jdps-filter-bar {
    background: rgba(255, 255, 255, 0.74) !important;
    border-color: rgba(240, 222, 210, 0.86) !important;
}

.jdps-filter-bar a {
    color: var(--jdps-muted-grey) !important;
}

.jdps-filter-bar a.is-active,
.jdps-filter-bar a:hover {
    background: var(--jdps-deep-green) !important;
    color: #FFFFFF !important;
}

.jdps-table th {
    color: var(--jdps-bronze) !important;
}

.jdps-table th,
.jdps-table td {
    border-color: rgba(42, 26, 18, 0.12) !important;
}

.jdps-field {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(240, 222, 210, 0.92) !important;
    color: var(--jdps-charcoal) !important;
}

.jdps-field:focus {
    border-color: rgba(236, 105, 31, 0.82) !important;
    box-shadow: 0 0 0 4px rgba(236, 105, 31, 0.14) !important;
    outline: none !important;
}

.jdps-logo-item {
    background: rgba(255, 255, 255, 0.88) !important;
    border-color: rgba(240, 222, 210, 0.80) !important;
}

.jdps-god-blessing--home img {
    border-color: rgba(236, 105, 31, 0.95) !important;
    box-shadow: 0 18px 46px rgba(42, 26, 18, 0.22) !important;
}

.jdps-god-blessing--home small {
    background: rgba(255, 255, 255, 0.88) !important;
    color: var(--jdps-bronze) !important;
    border: 1px solid rgba(240, 222, 210, 0.88) !important;
}

.jdps-footer-shell {
    background:
        radial-gradient(circle at 16% 0%, rgba(236, 105, 31, 0.20), transparent 34%),
        linear-gradient(135deg, #160D09 0%, #2A1A12 58%, #171717 100%) !important;
    color: rgba(255, 255, 255, 0.76) !important;
}

.jdps-footer__brand,
.jdps-footer-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(240, 222, 210, 0.13) !important;
}

.jdps-footer-card span,
.jdps-visitor-counter span {
    color: rgba(255, 138, 66, 0.76) !important;
}

.jdps-footer-card h4,
.jdps-footer-card a,
.jdps-footer__bottom a,
.jdps-visitor-counter strong {
    color: #FFFFFF !important;
}

.jdps-footer__actions a {
    background: rgba(236, 105, 31, 0.16) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(236, 105, 31, 0.24);
}

.jdps-footer__actions a:hover {
    background: rgba(236, 105, 31, 0.34) !important;
}

.jdps-mobile-drawer__panel {
    background:
        radial-gradient(circle at top right, rgba(236, 105, 31, 0.18), transparent 36%),
        linear-gradient(180deg, #FFFDF8 0%, #F7F3EA 100%) !important;
}

.jdps-mobile-nav > a,
.jdps-mobile-nav summary,
.jdps-mobile-nav details {
    background: rgba(255, 255, 255, 0.82) !important;
    border-color: rgba(240, 222, 210, 0.82) !important;
    color: var(--jdps-deep-green) !important;
}

.jdps-mobile-drawer__bottom a {
    background: var(--jdps-deep-green) !important;
    color: #FFFFFF !important;
}

.jdps-mobile-bottom-nav {
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(240, 222, 210, 0.92) !important;
    box-shadow: 0 18px 48px rgba(42, 26, 18, 0.18) !important;
}

.jdps-mobile-bottom-nav a {
    color: var(--jdps-muted-grey) !important;
}

.jdps-mobile-bottom-nav i {
    color: var(--jdps-deep-green) !important;
}

@media (max-width: 767px) {
    body {
        background:
            radial-gradient(circle at 12% 0%, rgba(236, 105, 31, 0.14), transparent 34%),
            linear-gradient(180deg, #FFFDF8 0%, #F7F3EA 100%) !important;
    }

    .jdps-header__inner {
        background: rgba(255, 255, 255, 0.94) !important;
    }
}


/* ==========================================================
   JDPS ORANGE BRAND FINAL OVERRIDE
   ========================================================== */
:root {
    --jdps-orange: #EC691F;
    --jdps-orange-dark: #B94C13;
    --jdps-orange-soft: #FFF1E8;
    --jdps-ivory: #FAF7F2;
    --jdps-charcoal: #171717;
    --jdps-deep-green: #2A1A12;
    --jdps-bronze: #EC691F;
    --jdps-soft-beige: #F0DED2;
    --jdps-accent: #EC691F;
    --jdps-accent-soft: #FFD5BF;
    --jdps-forest: #2A1A12;
    --jdps-forest-soft: #4A2617;
    --jdps-bg: #FAF7F2;
    --jdps-bg-soft: #FFFDFC;
    --jdps-line: rgba(236, 105, 31, 0.14);
}
body {
    background:
        radial-gradient(circle at 11% 0%, rgba(236, 105, 31, 0.14), transparent 34%),
        radial-gradient(circle at 90% 6%, rgba(42, 26, 18, 0.10), transparent 28%),
        linear-gradient(180deg, #FFFDFC 0%, #FAF7F2 44%, #F4E8DE 100%) !important;
}
.jdps-topline { background: rgba(42, 26, 18, 0.94) !important; }
.jdps-topline__meta a:hover {
  color: #D3D3D3 !important;
}

.jdps-topline__meta a:hover i {
  color: #D3D3D3 !important;
}

.jdps-eyebrow,
.jdps-link,
.jdps-agent-card__top span,
.jdps-office-card span,
.jdps-pillars span,
.jdps-table th,
.jdps-footer-card span,
.jdps-visitor-counter span {
  color: var(--jdps-orange) !important;
}
.jdps-nav a:hover, .jdps-nav a.is-active { color: var(--jdps-orange-dark) !important; background: rgba(236, 105, 31, 0.12) !important; }
.jdps-button { background: linear-gradient(135deg, var(--jdps-orange) 0%, var(--jdps-orange-dark) 100%) !important; border-color: rgba(236, 105, 31, 0.54) !important; box-shadow: 0 16px 34px rgba(236, 105, 31, 0.22) !important; }
.jdps-button:hover { background: linear-gradient(135deg, #2A1A12 0%, #5A2B16 100%) !important; color: #FFFFFF !important; box-shadow: 0 18px 42px rgba(42, 26, 18, 0.26) !important; }
.jdps-button--ghost { background: rgba(236, 105, 31, 0.08) !important; color: var(--jdps-orange-dark) !important; border-color: rgba(236, 105, 31, 0.18) !important; }
.jdps-button--ghost:hover, .jdps-filter-bar a.is-active, .jdps-filter-bar a:hover, .jdps-mobile-drawer__bottom a { background: var(--jdps-orange) !important; color: #FFFFFF !important; }
.jdps-card:hover, .jdps-agent-card:hover, .jdps-blog-card:hover, .jdps-logo-item:hover { border-color: rgba(236, 105, 31, 0.42) !important; }
.jdps-card__media::after { background: radial-gradient(circle at 50% 112%, rgba(42, 26, 18, .98) 0%, rgba(42, 26, 18, .75) 36%, rgba(236, 105, 31, .22) 67%, transparent 100%), linear-gradient(180deg, transparent 36%, rgba(42, 26, 18, .88) 100%) !important; }
.jdps-page-hero__inner::after, .jdps-hero__overlay { background: linear-gradient(180deg, rgba(42, 26, 18, 0.06) 0%, rgba(42, 26, 18, 0.34) 54%, rgba(42, 26, 18, 0.82) 100%), linear-gradient(90deg, rgba(42, 26, 18, 0.78) 0%, rgba(42, 26, 18, 0.18) 48%, rgba(23, 23, 23, 0.42) 100%) !important; }
.jdps-god-blessing--home img { border-color: rgba(236, 105, 31, 0.96) !important; }
.jdps-god-blessing--home small { color: var(--jdps-orange-dark) !important; }
.jdps-footer-shell { background: radial-gradient(circle at 16% 0%, rgba(236, 105, 31, 0.18), transparent 34%), linear-gradient(135deg, #160D09 0%, #2A1A12 58%, #171717 100%) !important; }
.jdps-mobile-bottom-nav i { color: var(--jdps-orange) !important; }
@media (max-width: 767px) { body { background: radial-gradient(circle at 12% 0%, rgba(236, 105, 31, 0.12), transparent 34%), linear-gradient(180deg, #FFFDFC 0%, #FAF7F2 100%) !important; } }


/* === JDPS task patch: SVG logos, equal tile sizing, smaller hero text area === */
.jdps-footer__brand img {
    filter: none !important;
}

.jdps-listing-grid {
    align-items: stretch;
}

.jdps-listing-grid > .jdps-card,
.jdps-index-carousel-track > .jdps-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.jdps-card__body {
    flex: 1 1 auto;
    align-content: start;
}

.jdps-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    min-height: 2.4em;
}

.jdps-card__meta {
    min-height: 44px;
    align-items: flex-start;
}

.jdps-card__body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: 5.3em;
}

.jdps-card__footer {
    margin-top: auto;
}

.jdps-hero__content--focused {
    grid-template-columns: minmax(0, 456px) !important;
}

.jdps-hero__text,
.jdps-hero-copy-wrap {
    width: min(456px, 100%);
    max-width: 100%;
}

.jdps-hero__text {
    gap: 12px;
}

@media (max-width: 767px) {
    .jdps-hero__content--focused {
        grid-template-columns: 1fr !important;
    }

    .jdps-hero__text,
    .jdps-hero-copy-wrap {
        width: 100%;
    }
}


/* JDPS public mobile repair patch */
.jdps-logo{display:inline-flex;align-items:center;min-width:0;max-width:100%;}
.jdps-logo img{display:block;width:auto;max-width:min(240px,58vw);height:auto;max-height:58px;object-fit:contain;}
.jdps-mobile-bottom-nav i{width:18px;height:18px;}

@media (max-width: 767px){
  .jdps-header__inner{grid-template-columns:minmax(0,1fr) auto;gap:12px;}
  .jdps-logo{max-width:calc(100% - 52px);}
  .jdps-logo img{max-width:min(180px,54vw);max-height:42px;}
  .jdps-hero{padding-top:calc(var(--jdps-header-space) + 22px);padding-bottom:112px;align-items:flex-end;}
  .jdps-hero__content{min-height:min(68vh,520px);align-items:end;}
  .jdps-hero__content--focused{grid-template-columns:minmax(0,340px) !important;justify-content:flex-start;}
  .jdps-hero__text,
  .jdps-hero-copy-wrap{width:min(84vw,340px) !important;max-width:100% !important;}
  .jdps-hero__text{gap:10px;padding:14px 16px;border-radius:18px;box-shadow:0 16px 42px rgba(25,25,25,.12);margin-top:auto;}
  .jdps-hero__text .jdps-heading{font-size:clamp(1.95rem,8.6vw,2.7rem);line-height:1.02;}
  .jdps-hero-copy{font-size:14px;line-height:1.6;}
  .jdps-header__cta{display:grid;grid-template-columns:1fr;gap:10px;}
  .jdps-header__cta .jdps-button{width:100%;justify-content:center;}
  .jdps-hero__dots--inline{justify-content:flex-start;}
  .jdps-mobile-bottom-nav{bottom:10px;width:min(520px,calc(100vw - 16px));padding:8px;gap:4px;}
  .jdps-mobile-bottom-nav a{gap:4px;padding:7px 2px;font-size:10px;}
}

@media (max-width: 420px){
  .jdps-hero__content--focused{grid-template-columns:minmax(0,300px) !important;}
  .jdps-hero__text,
  .jdps-hero-copy-wrap{width:min(82vw,300px) !important;}
  .jdps-hero__text{padding:12px 14px;}
}


.jdps-logo picture,
.jdps-mobile-drawer__top picture,
.jdps-footer__brand picture{
  display:block;
  line-height:0;
}

.jdps-logo picture img,
.jdps-mobile-drawer__top picture img,
.jdps-footer__brand picture img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  object-fit:contain;
}

.jdps-logo img{
  max-width:min(240px,58vw);
  max-height:58px;
}

@media (max-width: 767px){
  .jdps-logo{
    max-width:calc(100% - 52px);
  }

  .jdps-logo img{
    width:auto !important;
    height:42px !important;
    max-width:170px !important;
    max-height:42px !important;
    object-fit:contain !important;
  }

  .jdps-mobile-drawer__top img{
    width:auto !important;
    height:38px !important;
    max-width:160px !important;
    max-height:38px !important;
    object-fit:contain !important;
  }

  .jdps-footer__brand img{
    width:auto !important;
    height:40px !important;
    max-width:180px !important;
    max-height:40px !important;
    object-fit:contain !important;
  }
}

@media (max-width: 576px){
  .jdps-logo img{
    height:36px !important;
    max-width:145px !important;
    max-height:36px !important;
  }

  .jdps-mobile-drawer__top img{
    height:34px !important;
    max-width:145px !important;
    max-height:34px !important;
  }
}

@media (max-width: 767px){
  .jdps-hero__text .jdps-header__cta{
    display:none !important;
  }
}

@media (max-width: 767px){
  .jdps-logo img,
  .brand-logo img,
  header .menu .brand-logo img{
    width: auto !important;
    height: 52px !important;
    max-width: 210px !important;
    max-height: 52px !important;
    object-fit: contain !important;
  }

  .jdps-logo,
  .brand-logo{
    max-width: 220px !important;
    width: auto !important;
    flex: 0 0 auto !important;
  }
}

.jdps-god-blessing--home img{
  border: 6px solid #FFA500 !important;
  box-sizing: border-box !important;
}

.jdps-god-blessing--home .jdps-god-blessing__frame{
  border: 6px solid #ffa500 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.jdps-god-blessing--home img{
  border: none !important;
}

.jdps-god-blessing--home .jdps-god-blessing__frame{
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  padding: 1px !important;
  border: 4px solid #FFA500 !important;
  border-radius: 0px !important;
  line-height: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.jdps-god-blessing--home img{
  display: block !important;
  width: 78px !important;
  height: 108px !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: none !important;
  border: none !important;
}

@media (max-width: 767px){
  .jdps-god-blessing--home img{
    width: 58px !important;
    height: 80px !important;
  }
}

.jdps-showcase__media{
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
}

.jdps-showcase__media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==========================================================
   JDPS April 2026 refinement pack
   ========================================================== */
.jdps-topline__meta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.jdps-topline__meta-link i {
    font-size: 13px;
    color: var(--jdps-accent);
}
.jdps-topline__meta-link--wa i {
    color: #25D366 !important;
}
.jdps-topline__meta-link span {
    display: inline-block;
}

.jdps-mobile-nav summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.jdps-mobile-nav summary::after {
    content: '\25BE';
    font-size: 15px;
    color: var(--jdps-accent);
    transition: transform var(--jdps-transition);
}
.jdps-mobile-nav details[open] summary::after {
    transform: rotate(180deg);
}

.jdps-page--hero .jdps-hero {
    padding-top: 138px;
    padding-bottom: 34px;
}
.jdps-hero__dots--floating {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.24);
}
.jdps-hero__dots--floating button {
    background: rgba(255,255,255,.46);
}
.jdps-hero__dots--floating button.is-active {
    background: #fff;
}

.jdps-card__rera {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.5;
    color: #141414;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.jdps-card__meta--strong {
    color: #202020 !important;
    font-size: 14px;
    font-weight: 800;
}
.jdps-card__meta--strong span {
    color: #202020 !important;
    background: rgba(236,105,31,.10) !important;
    border-color: rgba(236,105,31,.20) !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.jdps-consultancy-slider {
    position: relative;
    padding: 26px;
    overflow: hidden;
}
.jdps-consultancy-track {
    position: relative;
    min-height: 520px;
}
.jdps-consultancy-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 26px;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px);
    transition: opacity 650ms ease, transform 650ms ease, visibility 650ms ease;
}
.jdps-consultancy-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.jdps-consultancy-slide__content {
    padding: 24px;
    display: grid;
    gap: 18px;
}
.jdps-consultancy-slide__content h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 3vw, 3.5rem);
    line-height: .94;
    color: var(--jdps-ink);
}
.jdps-consultancy-slide__content p {
    margin: 0;
    color: var(--jdps-muted);
    line-height: 1.9;
    font-size: 15px;
}
.jdps-consultancy-slide__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(236,105,31,.10);
    border: 1px solid rgba(236,105,31,.18);
    color: var(--jdps-deep-green);
    font-weight: 800;
}
.jdps-consultancy-slide__phone i { color: var(--jdps-accent); }
.jdps-consultancy-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.jdps-consultancy-slide__media {
    min-height: 468px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--jdps-shadow);
}
.jdps-consultancy-slide__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(18,12,8,.18));
}
.jdps-consultancy-slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.jdps-consultancy-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
}
.jdps-consultancy-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}
.jdps-consultancy-dots button,
.jdps-consultancy-arrow {
    border: 0;
    cursor: pointer;
}
.jdps-consultancy-dots button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(42,26,18,.22);
}
.jdps-consultancy-dots button.is-active {
    background: var(--jdps-accent);
    transform: scale(1.15);
}
.jdps-consultancy-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(236,105,31,.12);
    color: var(--jdps-deep-green);
    font-size: 18px;
    box-shadow: var(--jdps-shadow-soft);
}

.jdps-logo-marquee {
    padding: 10px 0 6px;
}
.jdps-logo-track {
    gap: 24px;
}
.jdps-logo-track .jdps-logo-item {
    flex: 0 0 228px;
    min-height: 152px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    animation: jdpsBrandFloat 5.4s ease-in-out infinite;
}
.jdps-logo-track .jdps-logo-item:nth-child(2n) { animation-delay: .8s; }
.jdps-logo-track .jdps-logo-item:nth-child(3n) { animation-delay: 1.6s; }
.jdps-logo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236,105,31,.18), rgba(255,255,255,0) 38%, rgba(42,26,18,.10) 100%);
    opacity: .9;
}
.jdps-logo-item img {
    max-width: 176px;
    max-height: 94px;
    position: relative;
    z-index: 1;
}
@keyframes jdpsBrandFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.jdps-footer__brand-subtitle {
    margin: -6px 0 18px;
    color: rgba(255,255,255,.92);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
}
.jdps-footer__brand img {
    filter: none !important;
}
.jdps-footer__brand p,
.jdps-footer-card p,
.jdps-footer__bottom,
.jdps-footer__actions a,
.jdps-visitor-counter span,
.jdps-footer-card a {
    font-size: 15px !important;
}
.jdps-footer-card h4 {
    font-size: 22px;
}
.jdps-visitor-counter strong {
    font-size: 32px;
}

.jdps-welcome-overlay,
.jdps-music-popup {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .55s ease;
}
.jdps-welcome-overlay.is-visible,
.jdps-music-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.jdps-welcome-overlay {
    background: radial-gradient(circle at center, rgba(255,255,255,.98) 0%, rgba(247,243,234,.96) 38%, rgba(42,26,18,.18) 100%);
}
.jdps-welcome-overlay__inner {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 40px 34px;
}
.jdps-welcome-overlay__shine {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(236,105,31,.18), transparent 56%);
    filter: blur(18px);
    animation: jdpsPulseGlow 2.2s ease-in-out infinite;
}
.jdps-welcome-overlay__inner img {
    width: min(320px, 72vw);
    position: relative;
    z-index: 1;
    animation: jdpsWelcomeRise 1.05s cubic-bezier(.22,.61,.36,1);
}
.jdps-welcome-overlay__subtitle {
    position: relative;
    z-index: 1;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--jdps-accent);
}
.jdps-music-popup {
    background: rgba(14,10,8,.42);
    backdrop-filter: blur(10px);
}
.jdps-music-popup__box {
    width: min(540px, 100%);
    padding: 34px;
    border-radius: 34px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(236,105,31,.18);
    box-shadow: 0 32px 90px rgba(42,26,18,.22);
    display: grid;
    gap: 18px;
    text-align: center;
}
.jdps-music-popup__box h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: .95;
}
.jdps-music-popup__box p {
    margin: 0;
    color: var(--jdps-muted);
    line-height: 1.8;
}
.jdps-music-popup__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
@keyframes jdpsWelcomeRise {
    from { opacity: 0; transform: translateY(26px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes jdpsPulseGlow {
    0%,100% { transform: scale(.96); opacity: .72; }
    50% { transform: scale(1.04); opacity: 1; }
}

@media (max-width: 991px) {
    .jdps-consultancy-slide {
        grid-template-columns: 1fr;
    }
    .jdps-consultancy-slide__media {
        min-height: 360px;
        order: -1;
    }
    .jdps-logo-track .jdps-logo-item {
        flex-basis: 188px;
        min-height: 132px;
    }
}
@media (max-width: 767px) {
    .jdps-topline__meta {
        justify-content: center;
        gap: 12px;
    }
    .jdps-topline__meta-link span {
        font-size: 11px;
    }
    .jdps-page--hero .jdps-hero {
        padding-top: 124px;
        min-height: 72svh;
    }
    .jdps-hero__dots--floating {
        bottom: 18px;
    }
    .jdps-consultancy-slider {
        padding: 18px;
    }
    .jdps-consultancy-track {
        min-height: 640px;
    }
    .jdps-consultancy-slide__content {
        padding: 10px 4px 0;
    }
    .jdps-consultancy-slide__media {
        min-height: 280px;
    }
    .jdps-footer__brand-subtitle {
        font-size: 13px;
        letter-spacing: .1em;
    }
    .jdps-music-popup__box {
        padding: 26px 22px;
    }
}

/* JDPS final consistency updates - April 2026 */
.jdps-topline__meta-link--phone i,
.jdps-topline__meta-link--mail i,
.jdps-topbar__right a i.fa-phone-alt,
.jdps-topbar__right a i.fa-envelope,
.jdps-topbar__right a .fa-phone-alt,
.jdps-topbar__right a .fa-envelope {
    color: #ffffff !important;
    opacity: 1 !important;
}
.jdps-profile-contact__qr img {
    border-radius: 0 !important;
    object-fit: contain !important;
}
.jdps-footer__brand img,
.jdps-footer__bottom img {
    filter: none !important;
}
.loader-wrapper .loader-text h3,
.loader-wrapper .loader-text .h3 {
    display: none !important;
}


/* JDPS requested updates - topbar readability and brand logo slider contrast */
.jdps-topline__copy {
    font-size: 13px !important;
    font-weight: 700 !important;
}
.jdps-topline__meta,
.jdps-topline__meta a,
.jdps-topline__meta-link,
.jdps-topline__meta-link span {
    font-size: 14px !important;
    font-weight: 800 !important;
}
.jdps-topline__meta-link i,
.jdps-topline__meta-link--phone i,
.jdps-topline__meta-link--mail i,
.jdps-topline__meta-link--wa i {
    font-size: 15px !important;
    color: #ffffff !important;
    opacity: 1 !important;
}
.jdps-topbar__left a,
.jdps-topbar__right a {
    font-size: 14px !important;
    font-weight: 700 !important;
}
.jdps-topbar__left a i,
.jdps-topbar__right a i {
    font-size: 15px !important;
    color: #ffffff !important;
    opacity: 1 !important;
}
.jdps-logo-item,
.jdps-logo-track .jdps-logo-item,
.brand-slider .logo-box {
    background: #fff1e2 !important;
    border: 1px solid rgba(236,105,31,.28) !important;
    box-shadow: 0 14px 34px rgba(25,25,25,.08) !important;
}
.jdps-logo-item::before,
.jdps-logo-track .jdps-logo-item::before {
    background: transparent !important;
    opacity: 0 !important;
}
.jdps-logo-item:hover,
.jdps-logo-track .jdps-logo-item:hover,
.brand-slider .logo-box:hover {
    background: #fff1e2 !important;
    border-color: rgba(236,105,31,.28) !important;
    box-shadow: 0 14px 34px rgba(25,25,25,.08) !important;
}
.jdps-logo-item img,
.jdps-logo-track .jdps-logo-item img,
.brand-slider .logo-box img {
    filter: none !important;
    opacity: 1 !important;
}

/* === JDPS footer logo size update: applied globally === */
.jdps-footer__brand picture {
    display: block !important;
    width: 320px !important;
    max-width: 100% !important;
    line-height: 0 !important;
}

.jdps-footer__brand picture img,
.jdps-footer__brand > img {
    width: 320px !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    margin-bottom: 22px !important;
    filter: none !important;
}

@media (max-width: 767px) {
    .jdps-footer__brand picture,
    .jdps-footer__brand picture img,
    .jdps-footer__brand > img {
        width: 240px !important;
        max-width: 100% !important;
    }
}


/* JDPS card footer detail links should not show button borders */
.jdps-card__footer .jdps-link,
.jdps-card__footer .jdps-link:focus,
.jdps-card__footer .jdps-link:active,
.jdps-card__footer .jdps-link:hover {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
}


/* ==========================================================
   JDPS SEO + Pixel-level responsive polish patch - May 2026
   ========================================================== */
.jdps-skip-link{position:fixed;top:10px;left:10px;z-index:100000;transform:translateY(-140%);padding:10px 14px;border-radius:999px;background:#171717;color:#fff;font-weight:800;box-shadow:0 14px 34px rgba(0,0,0,.22);transition:transform .2s ease}.jdps-skip-link:focus{transform:translateY(0);color:#fff}
.jdps-hero{position:relative;overflow:hidden}.jdps-hero__slide img{width:100%;height:100%;object-fit:cover;object-position:center}.jdps-hero__seo-panel{position:absolute;left:max(24px,calc((100vw - 1240px)/2));bottom:clamp(38px,7vh,92px);z-index:6;width:min(620px,calc(100vw - 48px));padding:clamp(22px,3vw,34px);border-radius:32px;background:linear-gradient(135deg,rgba(255,255,255,.90),rgba(255,247,242,.78));border:1px solid rgba(236,105,31,.22);box-shadow:0 30px 90px rgba(20,26,22,.18);backdrop-filter:blur(18px)}.jdps-hero__seo-panel h1{margin:0;font-family:'Cormorant Garamond',serif;font-size:clamp(2.45rem,4.7vw,5.1rem);line-height:.94;letter-spacing:-.045em;color:#171717}.jdps-hero__seo-panel p{margin:12px 0 0;max-width:50ch;color:#5f5f5f;font-size:clamp(14px,1.22vw,17px);line-height:1.72}.jdps-hero__seo-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:22px}.jdps-hero__dots--floating{z-index:7}.jdps-home-faq .jdps-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.jdps-faq-card{padding:26px;border-radius:28px;background:rgba(255,255,255,.86);border:1px solid rgba(236,105,31,.14);box-shadow:0 18px 48px rgba(20,26,22,.07)}.jdps-faq-card h3{margin:0 0 10px;font-size:18px;line-height:1.25;color:#171717}.jdps-faq-card p{margin:0;color:#626262;line-height:1.75;font-size:14px}.jdps-footer-card h3{margin:0 0 10px;font-size:20px;line-height:1.2;color:inherit}.jdps-card__media img,.jdps-blog-card img,.jdps-showcase__media img,.jdps-page-hero__inner>img{width:100%;height:100%;object-fit:cover}.jdps-card,.jdps-blog-card,.jdps-agent-card,.jdps-footer-card{contain:layout paint}.jdps-profile-hero__media img{object-position:top center}.jdps-mobile-drawer__panel{height:100svh;overflow:auto}.jdps-mobile-nav a,.jdps-mobile-nav summary{min-height:48px;align-items:center}.jdps-topline__meta-link{white-space:nowrap}.jdps-card__footer .jdps-link{min-height:24px;display:inline-flex;align-items:center}.jdps-link{font-weight:800}.jdps-link::after{content:' →';font-weight:900}
@media (min-width:768px) and (max-width:1180px){:root{--jdps-container:min(100vw - 40px,1040px);--jdps-header-space:132px}.jdps-header__inner{min-height:74px;padding:12px 18px;gap:16px}.jdps-logo img{height:46px!important;max-height:46px!important}.jdps-section{padding:82px 0}.jdps-grid-2{grid-template-columns:1fr 1fr;gap:24px}.jdps-listing-grid,.jdps-grid-3,.jdps-footer__office-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.jdps-index-carousel-track .jdps-card{flex-basis:calc((100vw - 76px)/2);width:calc((100vw - 76px)/2)}.jdps-card__media{aspect-ratio:1.34/1!important}.jdps-card__body{padding:20px}.jdps-card__body p{min-height:4.8em}.jdps-page-hero__inner{min-height:360px;border-radius:34px}.jdps-page-hero__content{padding-top:104px}.jdps-heading{font-size:clamp(2.4rem,5.3vw,4.2rem)}.jdps-hero__seo-panel{width:min(560px,calc(100vw - 56px));bottom:54px}.jdps-hero__seo-panel h1{font-size:clamp(2.4rem,5.8vw,4.4rem)}}
@media (max-width:767px){:root{--jdps-container:calc(100vw - 24px);--jdps-header-space:108px;--jdps-radius:22px}.jdps-topline{min-height:34px}.jdps-topline__inner{min-height:34px;padding:0 4px}.jdps-topline__meta{width:100%;display:grid!important;grid-template-columns:1fr 70px 92px;gap:6px!important;align-items:center}.jdps-topline__meta-link{min-height:28px;justify-content:center;border-radius:999px;background:rgba(255,255,255,.08);padding:0 8px}.jdps-topline__meta-link span{font-size:10.5px!important;line-height:1}.jdps-topline__meta-link i{font-size:12px!important}.jdps-header{top:34px!important;padding-top:8px!important}.jdps-header__inner{min-height:62px!important;padding:10px 12px!important;border-radius:20px!important;box-shadow:0 14px 36px rgba(20,26,22,.14)!important}.jdps-logo img{height:42px!important;max-height:42px!important;max-width:176px!important}.jdps-menu-toggle{width:42px;height:42px}.jdps-page{padding-top:124px!important}.jdps-page-hero{padding:18px 0 12px!important}.jdps-page-hero__inner{min-height:330px!important;border-radius:24px!important}.jdps-page-hero__content{padding:92px 20px 22px!important}.jdps-breadcrumbs{font-size:11px;gap:6px}.jdps-section{padding:54px 0!important}.jdps-section--compact{padding:42px 0!important}.jdps-heading,.jdps-page-hero .jdps-heading{font-size:clamp(2rem,9.4vw,3.05rem)!important;line-height:1!important}.jdps-lead{font-size:14.5px;line-height:1.7}.jdps-page--hero .jdps-hero{margin-top:34px!important;min-height:calc(100svh - 34px)!important;padding:118px 0 82px!important}.jdps-hero__slides,.jdps-hero__slide,.jdps-hero__slide img{height:100%;min-height:calc(100svh - 34px)}.jdps-hero__seo-panel{left:12px;right:12px;bottom:82px;width:auto;padding:18px 18px 20px;border-radius:22px}.jdps-hero__seo-panel h1{font-size:clamp(2rem,10vw,3rem);line-height:.96}.jdps-hero__seo-panel p{font-size:13.5px;line-height:1.58;margin-top:10px}.jdps-hero__seo-actions{gap:8px;margin-top:16px}.jdps-hero__seo-actions .jdps-button{min-height:40px;padding:0 14px;font-size:12px}.jdps-god-blessing--home{display:none!important}.jdps-hero__dots--floating{bottom:28px!important}.jdps-grid-2,.jdps-grid-3,.jdps-grid-4,.jdps-listing-grid,.jdps-footer__office-grid,.jdps-home-faq .jdps-faq-grid{grid-template-columns:1fr!important;gap:14px}.jdps-index-carousel-shell{margin-left:-12px;margin-right:-12px;padding-left:12px}.jdps-index-carousel-track{gap:14px}.jdps-index-carousel-track .jdps-card{flex-basis:calc(100vw - 46px)!important;width:calc(100vw - 46px)!important}.jdps-card{border-radius:22px!important}.jdps-card__media{aspect-ratio:1.22/1!important}.jdps-card__body{padding:18px!important}.jdps-card__title{font-size:18px!important;min-height:auto!important}.jdps-card__meta{min-height:auto!important;gap:6px}.jdps-card__meta span{font-size:11px;padding:6px 9px}.jdps-card__body p{font-size:13.5px;line-height:1.6;min-height:4.8em}.jdps-consultancy-slider{padding:14px!important;border-radius:24px!important}.jdps-consultancy-track{min-height:590px!important}.jdps-consultancy-slide__media{min-height:250px!important;border-radius:20px!important}.jdps-consultancy-slide__content h3{font-size:2rem}.jdps-logo-track .jdps-logo-item{flex-basis:150px!important;min-height:104px!important}.jdps-insights-track .jdps-blog-card{flex-basis:calc(100vw - 46px)!important;width:calc(100vw - 46px)!important}.jdps-showcase,.jdps-detail-shell,.jdps-about-grid,.jdps-contact-grid,.jdps-profile-hero,.jdps-footer__top{grid-template-columns:1fr!important;gap:16px}.jdps-showcase__media,.jdps-about-grid__media,.jdps-profile-hero__media{min-height:300px!important;border-radius:24px!important}.jdps-showcase__copy,.jdps-detail-block,.jdps-form-shell,.jdps-profile-hero__copy{padding:20px!important;border-radius:24px!important}.jdps-stat-row{grid-template-columns:1fr!important;gap:10px}.jdps-footer-shell{padding:44px 0 112px!important}.jdps-footer__brand,.jdps-footer-card{padding:20px!important;border-radius:24px!important}.jdps-footer__bottom{display:grid!important;gap:10px}.jdps-mobile-bottom-nav{width:calc(100vw - 14px)!important;bottom:8px!important;border-radius:22px!important;padding:7px!important}.jdps-mobile-bottom-nav a{font-size:9.5px!important;padding:6px 1px!important}.jdps-music-popup__box{width:calc(100vw - 34px)!important;padding:24px 20px!important;border-radius:24px!important}.jdps-music-popup__actions{display:grid;grid-template-columns:1fr;gap:8px}.jdps-faq-card{padding:20px;border-radius:22px}}
@media (max-width:380px){.jdps-logo img{max-width:150px!important}.jdps-topline__meta{grid-template-columns:1fr 62px 82px}.jdps-topline__meta-link span{font-size:9.5px!important}.jdps-hero__seo-panel{padding:16px}.jdps-hero__seo-panel h1{font-size:1.9rem}.jdps-hero__seo-actions{display:grid;grid-template-columns:1fr}.jdps-mobile-bottom-nav span{font-size:9px}}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.jdps-logo-track,.jdps-insights-track,.jdps-index-carousel-track{animation:none!important}}


/* ==========================================================
   JDPS client revision patch - slideshow clean, compact tiles,
   consultancy wording support, and uniform footer map
   ========================================================== */
.jdps-hero__seo-panel{display:none!important;}
.jdps-home-intro{padding-top:clamp(34px,5vw,72px)!important;}
.jdps-home-intro__inner{padding:clamp(24px,4vw,42px);display:grid;gap:14px;background:rgba(255,255,255,.9);border:1px solid rgba(236,105,31,.14);box-shadow:0 20px 60px rgba(20,26,22,.07);}
.jdps-home-intro__inner .jdps-heading{max-width:920px;margin:0;}
.jdps-home-intro__inner .jdps-lead{max-width:820px;margin:0;}
.jdps-home-intro__actions{margin-top:8px;}
.jdps-page--hero .jdps-hero{padding-bottom:0!important;}
.jdps-hero__dots--floating{bottom:clamp(18px,3vw,34px)!important;}

/* Compact, equal project/property tiles */
.jdps-index-carousel-track{align-items:stretch;}
.jdps-index-carousel-track .jdps-card,
.jdps-listing-grid > .jdps-card,
.jdps-scroller .jdps-card,
.jdps-tile-card{display:flex!important;flex-direction:column!important;height:clamp(430px,39vw,505px)!important;min-height:0!important;}
.jdps-card__media{flex:0 0 auto!important;aspect-ratio:16/10!important;min-height:0!important;}
.jdps-tile-card .jdps-card__body{flex:1 1 auto!important;display:flex!important;flex-direction:column!important;gap:10px!important;padding:18px 18px 16px!important;min-height:0!important;}
.jdps-tile-card .jdps-stack{gap:8px!important;min-height:0!important;}
.jdps-tile-card .jdps-card__title{font-size:20px!important;line-height:1.16!important;min-height:2.32em!important;-webkit-line-clamp:2!important;}
.jdps-tile-card .jdps-card__rera{font-size:11px!important;line-height:1.2!important;min-height:1.2em!important;}
.jdps-tile-card .jdps-card__meta{gap:6px!important;min-height:38px!important;max-height:74px!important;overflow:hidden!important;}
.jdps-tile-card .jdps-card__meta span{font-size:11px!important;padding:6px 9px!important;line-height:1.15!important;}
.jdps-tile-card .jdps-card__body p{font-size:13px!important;line-height:1.48!important;min-height:4.45em!important;max-height:4.45em!important;-webkit-line-clamp:3!important;overflow:hidden!important;}
.jdps-tile-card .jdps-card__footer{margin-top:auto!important;padding-top:4px!important;}
.jdps-tile-card .jdps-link{font-size:12px!important;}

/* Uniform footer with map */
.jdps-footer__top{align-items:stretch!important;}
.jdps-footer__brand,.jdps-footer-card{height:100%;}
.jdps-footer__office-grid{align-items:stretch!important;}
.jdps-footer-card--map{display:flex;flex-direction:column;}
.jdps-footer-map{margin-top:auto;overflow:hidden;border-radius:18px;min-height:190px;border:1px solid rgba(236,105,31,.14);background:#fff7f2;}
.jdps-footer-map iframe{width:100%!important;height:190px!important;display:block;border:0;filter:saturate(.95) contrast(.98);}
.jdps-footer__actions a{gap:8px;}
.jdps-footer__bottom{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:10px 22px;}
.jdps-footer__bottom p{margin:0;line-height:1.7;}
.jdps-footer__bottom p:first-child{flex:1 1 520px;}
.jdps-footer__bottom p:last-child{flex:0 0 auto;}

@media (min-width:768px) and (max-width:1180px){
  .jdps-index-carousel-track .jdps-card,.jdps-listing-grid > .jdps-card,.jdps-scroller .jdps-card,.jdps-tile-card{height:470px!important;}
  .jdps-card__media{aspect-ratio:16/10!important;}
  .jdps-footer-card--map{grid-column:1 / -1;}
  .jdps-footer-map,.jdps-footer-map iframe{height:220px!important;}
}
@media (max-width:767px){
  .jdps-page--hero .jdps-hero{margin-top:34px!important;min-height:calc(100svh - 34px)!important;padding:118px 0 0!important;}
  .jdps-hero__slides,.jdps-hero__slide,.jdps-hero__slide img{height:100%;min-height:calc(100svh - 34px);}
  .jdps-home-intro{padding-top:28px!important;}
  .jdps-home-intro__inner{padding:20px!important;border-radius:24px!important;}
  .jdps-home-intro__actions{display:grid;grid-template-columns:1fr;gap:8px;}
  .jdps-index-carousel-track .jdps-card,.jdps-listing-grid > .jdps-card,.jdps-scroller .jdps-card,.jdps-tile-card{height:430px!important;}
  .jdps-card__media{aspect-ratio:16/10!important;}
  .jdps-tile-card .jdps-card__body{padding:16px!important;gap:8px!important;}
  .jdps-tile-card .jdps-card__title{font-size:18px!important;min-height:2.28em!important;}
  .jdps-tile-card .jdps-card__meta{max-height:66px!important;}
  .jdps-tile-card .jdps-card__body p{font-size:13px!important;line-height:1.45!important;min-height:4.35em!important;max-height:4.35em!important;}
  .jdps-footer-map,.jdps-footer-map iframe{height:210px!important;}
  .jdps-footer__bottom{display:grid!important;text-align:center!important;justify-content:center!important;}
  .jdps-footer__bottom p:first-child,.jdps-footer__bottom p:last-child{flex:auto;}
}
@media (max-width:380px){
  .jdps-index-carousel-track .jdps-card,.jdps-listing-grid > .jdps-card,.jdps-scroller .jdps-card,.jdps-tile-card{height:420px!important;}
}


/* === JDPS local SEO + premium mobile experience refinement === */
.jdps-local-search .jdps-shell{background:linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,250,244,.9));border:1px solid rgba(255,165,0,.18);box-shadow:0 24px 70px rgba(28,28,28,.08)}
.jdps-local-service-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.jdps-local-service-grid article{padding:20px;border-radius:24px;background:#fff;border:1px solid rgba(255,165,0,.14);box-shadow:0 14px 36px rgba(28,28,28,.055)}
.jdps-local-service-grid h3{margin:0 0 8px;font-size:18px;line-height:1.2;color:#171717}.jdps-local-service-grid p{margin:0;font-size:13px;line-height:1.65;color:#626262}
.jdps-search-chip-row,.jdps-location-chip-row{display:flex;flex-wrap:wrap;gap:10px}.jdps-search-chip-row a,.jdps-location-chip-row span{display:inline-flex;align-items:center;min-height:38px;padding:8px 14px;border-radius:999px;background:#fff;color:#1c1c1c;border:1px solid rgba(255,165,0,.22);box-shadow:0 10px 26px rgba(28,28,28,.055);font-size:13px;font-weight:800}.jdps-search-chip-row a:hover{background:#FFA500;color:#1c1c1c}
.jdps-footer__office-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important}.jdps-footer-card--searches a{color:#fff;text-decoration:none}.jdps-footer-card--searches a:hover{text-decoration:underline}.jdps-footer-card--map{min-width:0}.jdps-footer-map,.jdps-footer-map iframe{height:200px!important}
/* Compact equal listing cards */
.jdps-listing-grid > .jdps-card,.jdps-scroller .jdps-card,.jdps-index-carousel-track .jdps-card,.jdps-tile-card{height:clamp(350px,31vw,405px)!important;min-height:0!important;display:flex!important;flex-direction:column!important;width:100%}
.jdps-tile-card .jdps-card__media{aspect-ratio:1.52/1!important;flex:0 0 auto!important}.jdps-tile-card .jdps-card__body{padding:15px 16px!important;gap:8px!important;flex:1 1 auto!important;display:flex!important;flex-direction:column!important}.jdps-tile-card .jdps-stack{gap:7px!important}.jdps-tile-card .jdps-card__title{font-size:18px!important;line-height:1.14!important;min-height:2.28em!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important}.jdps-tile-card .jdps-card__rera{font-size:10.5px!important;min-height:auto!important}.jdps-tile-card .jdps-card__meta{min-height:31px!important;max-height:58px!important;gap:5px!important;overflow:hidden!important}.jdps-tile-card .jdps-card__meta span{font-size:10.5px!important;padding:5px 8px!important}.jdps-tile-card .jdps-card__body p{font-size:12.5px!important;line-height:1.42!important;min-height:2.84em!important;max-height:2.84em!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important}.jdps-tile-card .jdps-card__footer{margin-top:auto!important;padding-top:2px!important}.jdps-tile-card .jdps-link{font-size:12px!important}
@media (min-width:768px) and (max-width:1180px){.jdps-local-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.jdps-footer__office-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.jdps-footer-card--map{grid-column:auto}.jdps-listing-grid > .jdps-card,.jdps-scroller .jdps-card,.jdps-index-carousel-track .jdps-card,.jdps-tile-card{height:390px!important}.jdps-card__media{aspect-ratio:1.45/1!important}.jdps-page-hero__content{padding-top:96px!important}}
@media (max-width:767px){html{scroll-padding-top:116px}body{background:#fffaf4}.jdps-topline__copy{display:none!important}.jdps-topline__meta{grid-template-columns:1.25fr .75fr .88fr!important}.jdps-header-shell{backdrop-filter:blur(18px)}.jdps-header__inner{border:1px solid rgba(255,165,0,.16)!important}.jdps-page--hero .jdps-hero{min-height:72svh!important;padding:108px 0 64px!important}.jdps-hero__slides,.jdps-hero__slide,.jdps-hero__slide img{min-height:72svh!important}.jdps-home-intro{padding-top:26px!important}.jdps-home-intro__inner{text-align:left!important;padding:22px!important;border-radius:26px!important}.jdps-local-service-grid{grid-template-columns:1fr;gap:12px}.jdps-local-service-grid article{padding:17px;border-radius:22px}.jdps-search-chip-row,.jdps-location-chip-row{gap:8px}.jdps-search-chip-row a,.jdps-location-chip-row span{min-height:34px;padding:7px 11px;font-size:12px}.jdps-index-carousel-shell{overflow-x:auto!important;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;padding-bottom:8px}.jdps-index-carousel-track .jdps-card{scroll-snap-align:center}.jdps-listing-grid > .jdps-card,.jdps-scroller .jdps-card,.jdps-index-carousel-track .jdps-card,.jdps-tile-card{height:358px!important;border-radius:24px!important;box-shadow:0 16px 44px rgba(28,28,28,.08)!important}.jdps-tile-card .jdps-card__media{aspect-ratio:1.48/1!important}.jdps-tile-card .jdps-card__body{padding:14px!important}.jdps-tile-card .jdps-card__title{font-size:17px!important}.jdps-tile-card .jdps-card__body p{font-size:12.2px!important;line-height:1.4!important;min-height:2.8em!important;max-height:2.8em!important}.jdps-card__label{top:10px!important;left:10px!important;font-size:9.5px!important}.jdps-footer__office-grid{grid-template-columns:1fr!important}.jdps-footer-card--searches p{columns:1}.jdps-footer-map,.jdps-footer-map iframe{height:230px!important}.jdps-footer__actions{display:grid!important;grid-template-columns:repeat(3,1fr);gap:8px!important}.jdps-footer__actions a{justify-content:center;padding:0 8px!important;font-size:12px!important}.jdps-mobile-bottom-nav{box-shadow:0 14px 38px rgba(0,0,0,.22)!important;background:rgba(255,255,255,.94)!important;backdrop-filter:blur(18px)!important;border:1px solid rgba(255,165,0,.16)!important}.jdps-mobile-bottom-nav a{color:#3f3f3f!important}.jdps-mobile-bottom-nav i{color:#FFA500!important}.jdps-section{padding-left:0!important;padding-right:0!important}.jdps-faq-grid{grid-template-columns:1fr!important}}
@media (max-width:380px){.jdps-listing-grid > .jdps-card,.jdps-scroller .jdps-card,.jdps-index-carousel-track .jdps-card,.jdps-tile-card{height:348px!important}.jdps-tile-card .jdps-card__meta span{font-size:9.8px!important;padding:5px 7px!important}.jdps-footer__actions a span{font-size:11px!important}}

/* JDPS v6 verified fix: visible one-line descriptions on every project/property tile */
.jdps-tile-card .jdps-card__short-desc,
.jdps-card__short-desc {
    display: block !important;
    width: 100% !important;
    min-height: 1.45em !important;
    max-height: 1.45em !important;
    line-height: 1.45 !important;
    margin: 2px 0 0 !important;
    color: #5f5f5f !important;
    font-size: 12.8px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
}
.jdps-tile-card .jdps-card__body > .jdps-stack {
    gap: 7px !important;
}
.jdps-tile-card .jdps-card__footer {
    margin-top: auto !important;
}

/* JDPS v6 verified fix: dashboard project delete must always be visible */
.property-image { position: relative !important; }
.jdps-project-tile-delete-overlay {
    position: absolute !important;
    right: 12px !important;
    bottom: 12px !important;
    z-index: 60 !important;
    margin: 0 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
.jdps-project-tile-delete-overlay .btn,
.jdps-admin-delete-project-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 36px !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    background: #dc3545 !important;
    border: 1px solid #dc3545 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    box-shadow: 0 10px 24px rgba(220, 53, 69, .28) !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.property-btn .jdps-dashboard-delete-form {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-left: 8px !important;
}

/* JDPS v6 verified fix: footer contact name on one line, phone directly below */
.jdps-footer-contacts .jdps-contact-person {
    display: block !important;
    margin: 0 0 8px !important;
    line-height: 1.45 !important;
}
.jdps-footer-contacts .jdps-contact-person + .jdps-contact-person {
    margin-top: 10px !important;
}
.jdps-footer-contacts .jdps-contact-person strong,
.jdps-footer-contacts .jdps-contact-person a {
    display: block !important;
}
.jdps-footer-contacts .jdps-contact-person strong {
    color: #1c1c1c !important;
    margin-bottom: 2px !important;
}
.jdps-footer-contacts .jdps-contact-person a {
    color: inherit !important;
}
.jdps-footer-card--ghatkopar .jdps-footer-contacts {
    margin-top: 18px !important;
}

/* JDPS v8: requested explicit line break above Lalit Shah in footer */
.jdps-footer-lalit-break{display:block!important;content:"";margin-top:10px!important;}
.jdps-footer-lalit-break + .jdps-contact-person{margin-top:0!important;}


/* === JDPS V9: complete mobile header visibility, app-like pages and chatbot-safe layout === */
.jdps-header-god{display:none;align-items:center;justify-content:center;line-height:0;pointer-events:none;}
.jdps-header-god img{display:block;width:46px;height:58px;object-fit:cover;object-position:center;border-radius:10px;border:1px solid rgba(236,105,31,.34);background:#fff;box-shadow:0 10px 24px rgba(36,36,36,.12);}

@media (max-width: 991px){
  :root{--jdps-container:calc(100vw - 24px);--jdps-header-space:126px;}
  html{scroll-padding-top:132px;-webkit-text-size-adjust:100%;}
  body{overflow-x:hidden;background:linear-gradient(180deg,#fffdf9 0%,#fff7ef 45%,#ffffff 100%)!important;padding-bottom:88px;}
  .jdps-header-shell,.jdps-topline,.jdps-header{display:block!important;visibility:visible!important;opacity:1!important;transform:none!important;}
  .jdps-header-shell{position:fixed!important;top:0!important;left:0!important;right:0!important;z-index:9990!important;pointer-events:none;background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.78) 76%,rgba(255,255,255,0));padding-bottom:7px;}
  .jdps-header-shell *{pointer-events:auto;}
  .jdps-topline{position:relative!important;inset:auto!important;z-index:auto!important;width:100%!important;background:linear-gradient(90deg,#ec691f 0%,#ff8a3d 58%,#d85512 100%)!important;border:0!important;backdrop-filter:none!important;}
  .jdps-topline__inner{width:calc(100vw - 16px)!important;margin:0 auto!important;min-height:34px!important;height:34px!important;padding:0!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:0!important;}
  .jdps-topline__copy{display:none!important;}
  .jdps-topline__meta{display:grid!important;grid-template-columns:1.17fr .72fr .86fr!important;align-items:center!important;width:100%!important;gap:5px!important;}
  .jdps-topline__meta-link,.jdps-topline__meta a{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:4px!important;min-width:0!important;color:#fff!important;font-size:10.4px!important;font-weight:800!important;line-height:1!important;letter-spacing:.01em!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
  .jdps-topline__meta-link i,.jdps-topline__meta a i{display:inline-flex!important;color:#fff!important;font-size:11px!important;line-height:1!important;flex:0 0 auto!important;}
  .jdps-topline__meta-link span{overflow:hidden!important;text-overflow:ellipsis!important;}
  .jdps-header{position:relative!important;top:auto!important;left:auto!important;right:auto!important;z-index:auto!important;padding:7px 0 0!important;width:100%!important;}
  .jdps-header__inner{width:calc(100vw - 16px)!important;margin:0 auto!important;display:grid!important;grid-template-columns:minmax(0,1fr) auto 46px!important;align-items:center!important;gap:8px!important;min-height:66px!important;padding:8px 9px 8px 12px!important;border-radius:24px!important;background:rgba(255,255,255,.96)!important;border:1px solid rgba(236,105,31,.16)!important;box-shadow:0 16px 42px rgba(39,35,29,.13)!important;backdrop-filter:blur(18px)!important;}
  .jdps-logo{min-width:0!important;display:flex!important;align-items:center!important;}
  .jdps-logo picture,.jdps-logo img{display:block!important;}
  .jdps-logo img{height:auto!important;max-height:45px!important;width:auto!important;max-width:148px!important;object-fit:contain!important;}
  .jdps-header-god{display:flex!important;}
  .jdps-header-god img{width:40px!important;height:52px!important;border-radius:10px!important;}
  .jdps-nav{display:none!important;}
  .jdps-header__cta{display:flex!important;align-items:center!important;justify-content:flex-end!important;gap:0!important;}
  .jdps-header__cta .jdps-button,.jdps-header__cta .jdps-button--ghost{display:none!important;}
  .jdps-menu-toggle{display:inline-flex!important;visibility:visible!important;opacity:1!important;width:44px!important;height:44px!important;min-width:44px!important;border-radius:16px!important;background:#fff7ef!important;border:1px solid rgba(236,105,31,.22)!important;box-shadow:0 8px 22px rgba(236,105,31,.12)!important;}
  .jdps-menu-toggle span{width:18px!important;height:2px!important;background:#1c1c1c!important;}
  .jdps-mobile-drawer{z-index:10000!important;}
  .jdps-mobile-drawer__panel{width:min(88vw,390px)!important;padding:18px!important;border-radius:26px 0 0 26px!important;box-shadow:-20px 0 50px rgba(0,0,0,.18)!important;}
  .jdps-mobile-drawer__top{padding-bottom:4px;border-bottom:1px solid rgba(28,28,28,.08);}
  .jdps-mobile-nav{gap:8px!important;}
  .jdps-mobile-nav>a,.jdps-mobile-nav summary,.jdps-mobile-nav details{border-radius:18px!important;background:rgba(255,255,255,.86)!important;border:1px solid rgba(236,105,31,.10)!important;box-shadow:0 8px 18px rgba(28,28,28,.04)!important;}
  .jdps-mobile-bottom-nav{display:grid!important;position:fixed!important;left:50%!important;transform:translateX(-50%)!important;bottom:8px!important;width:calc(100vw - 14px)!important;z-index:9980!important;border-radius:22px!important;padding:7px!important;background:rgba(255,255,255,.96)!important;box-shadow:0 14px 38px rgba(0,0,0,.19)!important;border:1px solid rgba(236,105,31,.16)!important;backdrop-filter:blur(18px)!important;}
  .jdps-mobile-bottom-nav a{min-width:0!important;font-size:9.5px!important;line-height:1.1!important;padding:6px 1px!important;color:#363636!important;}
  .jdps-mobile-bottom-nav i{font-size:15px!important;color:#ec691f!important;}

  .jdps-page{padding-top:calc(var(--jdps-header-space) + 18px)!important;}
  .jdps-main{padding-bottom:104px!important;}
  .jdps-page--hero{padding-top:0!important;}
  .jdps-page--hero .jdps-hero{margin-top:var(--jdps-header-space)!important;min-height:64svh!important;height:auto!important;padding:0!important;border-radius:0 0 28px 28px!important;overflow:hidden!important;}
  .jdps-hero__slides,.jdps-hero__slide,.jdps-hero__slide img{min-height:64svh!important;height:64svh!important;}
  .jdps-hero__slide img{object-fit:cover!important;object-position:center!important;}
  .jdps-hero__dots--floating{bottom:16px!important;}
  .jdps-god-blessing--home{display:none!important;}
  .jdps-page-hero{padding:0!important;margin:0 0 22px!important;}
  .jdps-page-hero__inner{min-height:0!important;display:grid!important;grid-template-columns:1fr!important;border-radius:28px!important;overflow:hidden!important;padding:0!important;}
  .jdps-page-hero__inner>img{position:relative!important;inset:auto!important;width:100%!important;height:210px!important;min-height:210px!important;object-fit:cover!important;opacity:.96!important;}
  .jdps-page-hero__content{position:relative!important;padding:18px!important;background:#fff!important;border-radius:0!important;box-shadow:none!important;}
  .jdps-breadcrumbs{font-size:11px!important;gap:6px!important;overflow-x:auto!important;white-space:nowrap!important;padding-bottom:2px!important;}
  .jdps-heading,.jdps-heading--small{font-size:clamp(1.75rem,7vw,2.45rem)!important;line-height:1.04!important;letter-spacing:-.035em!important;}
  .jdps-lead{font-size:14.5px!important;line-height:1.66!important;}
  .jdps-section,.jdps-section--compact{padding:32px 0!important;}
  .jdps-shell,.jdps-detail-block,.jdps-form-shell,.jdps-showcase__copy,.jdps-profile-hero__copy{border-radius:24px!important;padding:18px!important;}
  .jdps-grid-2,.jdps-about-grid,.jdps-contact-grid,.jdps-detail-shell,.jdps-profile-hero,.jdps-showcase,.jdps-footer__top,.jdps-office-grid,.jdps-pillars,.jdps-faq-grid{display:grid!important;grid-template-columns:1fr!important;gap:14px!important;}
  .jdps-showcase__media,.jdps-about-grid__media,.jdps-profile-hero__media,.jdps-detail-media{min-height:250px!important;border-radius:22px!important;overflow:hidden!important;}
  .jdps-showcase__media img,.jdps-about-grid__media img,.jdps-profile-hero__media img,.jdps-detail-media img{width:100%!important;height:100%!important;object-fit:cover!important;}
  .jdps-hero__seo-actions,.jdps-header__cta:not(.jdps-header .jdps-header__cta),.jdps-card__footer,.jdps-consultancy-slide__actions,.jdps-footer__actions{display:grid!important;grid-template-columns:1fr!important;gap:9px!important;width:100%!important;}
  .jdps-button,.jdps-link,.btn,.btn-gradient{min-height:44px!important;padding:0 16px!important;border-radius:16px!important;font-size:13.5px!important;}
  .jdps-listing-grid,.jdps-grid,.property-grid,.jdps-local-service-grid{display:grid!important;grid-template-columns:1fr!important;gap:14px!important;}
  .jdps-listing-grid>.jdps-card,.jdps-scroller .jdps-card,.jdps-index-carousel-track .jdps-card,.jdps-tile-card,.jdps-blog-card,.jdps-agent-card,.jdps-office-card,.jdps-faq-card,.jdps-local-service-grid article{width:100%!important;max-width:none!important;border-radius:22px!important;box-shadow:0 14px 36px rgba(28,28,28,.07)!important;}
  .jdps-listing-grid>.jdps-card,.jdps-scroller .jdps-card,.jdps-index-carousel-track .jdps-card,.jdps-tile-card{height:332px!important;min-height:332px!important;max-height:332px!important;display:flex!important;flex-direction:column!important;overflow:hidden!important;}
  .jdps-tile-card .jdps-card__media,.jdps-card__media{height:164px!important;min-height:164px!important;aspect-ratio:auto!important;overflow:hidden!important;}
  .jdps-card__media img{width:100%!important;height:100%!important;object-fit:cover!important;}
  .jdps-card__body{padding:13px!important;display:flex!important;flex-direction:column!important;gap:7px!important;flex:1 1 auto!important;min-height:0!important;}
  .jdps-card__title{font-size:16.5px!important;line-height:1.18!important;display:-webkit-box!important;-webkit-line-clamp:2!important;-webkit-box-orient:vertical!important;overflow:hidden!important;min-height:39px!important;}
  .jdps-card__body p,.jdps-tile-desc,.jdps-tile-line{font-size:12.4px!important;line-height:1.35!important;min-height:17px!important;max-height:17px!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;margin:0!important;}
  .jdps-card__meta{gap:6px!important;margin-top:auto!important;display:flex!important;flex-wrap:wrap!important;}
  .jdps-card__meta span{font-size:10.5px!important;padding:5px 8px!important;border-radius:999px!important;max-width:100%!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important;}
  .jdps-card__footer{margin-top:6px!important;}
  .jdps-card__footer .jdps-link{width:100%!important;justify-content:center!important;}
  .jdps-index-carousel-shell{overflow-x:auto!important;scroll-snap-type:x mandatory!important;-webkit-overflow-scrolling:touch!important;padding:2px 0 10px!important;}
  .jdps-index-carousel-track{display:flex!important;gap:12px!important;}
  .jdps-index-carousel-track .jdps-card{flex:0 0 calc(100vw - 34px)!important;scroll-snap-align:center!important;}
  .jdps-filter-bar{display:flex!important;gap:8px!important;overflow-x:auto!important;padding-bottom:4px!important;scrollbar-width:none!important;}
  .jdps-filter-bar a{white-space:nowrap!important;min-height:38px!important;padding:0 13px!important;font-size:12px!important;}
  .jdps-footer-shell{padding:38px 0 106px!important;background:linear-gradient(180deg,#fff 0%,#fff7ef 100%)!important;}
  .jdps-footer__brand,.jdps-footer-card{padding:18px!important;border-radius:22px!important;}
  .jdps-footer__brand img{max-width:170px!important;height:auto!important;margin:0 auto 8px!important;}
  .jdps-footer__brand{text-align:center!important;}
  .jdps-footer__office-grid,.jdps-footer__office-grid--jdpsin{display:grid!important;grid-template-columns:1fr!important;gap:12px!important;}
  .jdps-footer-contacts{display:grid!important;gap:10px!important;}
  .jdps-contact-person{display:grid!important;gap:2px!important;}
  .jdps-footer-map,.jdps-footer-map iframe{width:100%!important;height:220px!important;border-radius:18px!important;overflow:hidden!important;}
  .jdps-visitor-counter{margin:16px auto!important;}
  .jdps-footer__bottom{display:grid!important;grid-template-columns:1fr!important;gap:8px!important;text-align:center!important;font-size:12px!important;}
  .jdps-detail-table,.jdps-detail-table table{display:block!important;width:100%!important;overflow-x:auto!important;}
  form .row,[class*="col-md-"]{min-width:0!important;}
  .form-control,input,select,textarea{min-height:44px!important;border-radius:14px!important;font-size:16px!important;}
}

@media (max-width: 430px){
  :root{--jdps-container:calc(100vw - 20px);--jdps-header-space:122px;}
  .jdps-topline__meta{grid-template-columns:1.12fr .68fr .82fr!important;gap:3px!important;}
  .jdps-topline__meta-link,.jdps-topline__meta a{font-size:9.6px!important;}
  .jdps-header__inner{grid-template-columns:minmax(0,1fr) 40px 44px!important;min-height:64px!important;border-radius:22px!important;padding:8px!important;}
  .jdps-logo img{max-width:138px!important;max-height:42px!important;}
  .jdps-header-god img{width:36px!important;height:48px!important;border-radius:9px!important;}
  .jdps-menu-toggle{width:42px!important;height:42px!important;min-width:42px!important;border-radius:15px!important;}
  .jdps-page{padding-top:calc(var(--jdps-header-space) + 16px)!important;}
  .jdps-page--hero .jdps-hero{margin-top:var(--jdps-header-space)!important;min-height:61svh!important;}
  .jdps-hero__slides,.jdps-hero__slide,.jdps-hero__slide img{min-height:61svh!important;height:61svh!important;}
  .jdps-page-hero__inner>img{height:190px!important;min-height:190px!important;}
  .jdps-page-hero__content{padding:16px!important;}
  .jdps-section,.jdps-section--compact{padding:28px 0!important;}
  .jdps-listing-grid>.jdps-card,.jdps-scroller .jdps-card,.jdps-index-carousel-track .jdps-card,.jdps-tile-card{height:320px!important;min-height:320px!important;max-height:320px!important;}
  .jdps-tile-card .jdps-card__media,.jdps-card__media{height:154px!important;min-height:154px!important;}
  .jdps-card__body{padding:12px!important;gap:6px!important;}
  .jdps-card__title{font-size:15.8px!important;min-height:37px!important;}
  .jdps-mobile-bottom-nav span{font-size:8.8px!important;}
  .jdps-mobile-bottom-nav i{font-size:14px!important;}
}

@media (max-width: 360px){
  .jdps-logo img{max-width:126px!important;}
  .jdps-header-god img{width:33px!important;height:44px!important;}
  .jdps-topline__meta-link,.jdps-topline__meta a{font-size:8.9px!important;}
  .jdps-topline__meta-link i,.jdps-topline__meta a i{display:none!important;}
  .jdps-heading,.jdps-heading--small{font-size:1.72rem!important;}
  .jdps-listing-grid>.jdps-card,.jdps-scroller .jdps-card,.jdps-index-carousel-track .jdps-card,.jdps-tile-card{height:308px!important;min-height:308px!important;max-height:308px!important;}
  .jdps-tile-card .jdps-card__media,.jdps-card__media{height:146px!important;min-height:146px!important;}
}
