.dj-expose {
  --orange: #f56700;
  --orange-dark: #b34a00;
  --orange-light: #fdeede;
  --sand: #dfdcd9;
  --light-sand: #f5f3f0;
  --sand-warmer: #ebe7e1;
  --sand-border: #aba8a4;
  --hairline: rgba(31, 29, 26, 0.1);
  --white: #ffffff;
  --paper: #f8f6f2;
  --anthracite: #1f1d1a;
  --text-muted: #5a5854;
  --text-soft: #7d7a75;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 18px;
  --r-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(31, 29, 26, 0.04), 0 1px 1px rgba(31, 29, 26, 0.03);
  --shadow: 0 12px 30px -12px rgba(31, 29, 26, 0.14), 0 2px 6px -2px rgba(31, 29, 26, 0.06);
  --shadow-lg: 0 30px 60px -24px rgba(31, 29, 26, 0.22), 0 6px 14px -8px rgba(31, 29, 26, 0.1);
  --maxw: 1180px;
  --gutter: clamp(22px, 4vw, 40px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  background: var(--light-sand);
  color: var(--anthracite);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  padding-bottom: clamp(56px, 8vw, 96px);
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

.dj-expose *::selection {
  background: var(--orange-light);
}

.dj-expose img {
  display: block;
  max-width: 100%;
}

.dj-expose a {
  color: inherit;
  text-decoration: none;
}

.dj-expose button,
.dj-expose input,
.dj-expose textarea,
.dj-expose select {
  font-family: "Inter", sans-serif;
}

.dj-expose .num {
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.dj-expose .wrap {
  margin: 0 auto;
  max-width: var(--maxw);
  padding: 0 var(--gutter);
  width: 100%;
}

.dj-expose .acc {
  color: var(--orange);
  font-style: italic;
  font-weight: 750;
}

.dj-expose .kicker {
  align-items: center;
  color: var(--orange);
  display: inline-flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.dj-expose .kicker::before {
  background: var(--orange);
  content: "";
  display: inline-block;
  height: 1.5px;
  width: 26px;
}

.dj-expose .crumb-bar {
  border-bottom: 1px solid var(--hairline);
}

.dj-expose .obj-crumb {
  align-items: center;
  display: flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  gap: 6px;
  height: 44px;
  min-width: 0;
}

.dj-expose .oc-link {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: -0.1px;
  transition: color 0.18s var(--ease);
}

.dj-expose .oc-link:hover {
  color: var(--orange-dark);
}

.dj-expose .oc-sep {
  color: var(--sand-border);
  display: inline-flex;
  flex: none;
}

.dj-expose .oc-current {
  color: var(--text-soft);
  cursor: default;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dj-expose .hero {
  padding: 52px 0 8px;
}

.dj-expose .hero-top {
  padding-bottom: 34px;
}

.dj-expose .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.dj-expose .badge {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  color: var(--text-muted);
  display: inline-flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 1.6px;
  padding: 6px 12px;
  text-transform: uppercase;
}

.dj-expose .badge.hot {
  background: var(--orange-light);
  border-color: #f6d8bb;
  color: var(--orange-dark);
}

.dj-expose .badge .dot {
  background: var(--orange);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}

.dj-expose .hero-title {
  color: var(--anthracite);
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(40px, 4.4vw, 50px);
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0;
  max-width: 1080px;
}

.dj-expose .hero-loc {
  align-items: center;
  color: var(--text-muted);
  display: flex;
  font-size: 15px;
  font-weight: 500;
  gap: 9px;
  margin-top: 18px;
}

.dj-expose .hero-loc svg {
  color: var(--orange);
  flex: none;
}

.dj-expose .gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.62fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 520px;
}

.dj-expose .gallery-single,
.dj-expose .gallery-empty {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.dj-expose .g-item {
  background: var(--sand);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}

.dj-expose .g-item.main {
  grid-row: 1 / span 2;
}

.dj-expose .gallery-single .g-item.main {
  grid-row: auto;
}

.dj-expose .g-item::after {
  background: linear-gradient(to top, rgba(31, 29, 26, 0.42), transparent 42%);
  content: "";
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
}

.dj-expose .gallery-img,
.dj-expose .plan-img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.dj-expose .gallery-trigger {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: zoom-in;
  display: block;
  font: inherit;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  width: 100%;
}

.dj-expose .g-item img {
  transition: transform 0.7s var(--ease);
}

.dj-expose .g-item:hover img {
  transform: scale(1.05);
}

.dj-expose .g-chip {
  background: rgba(31, 29, 26, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  bottom: 13px;
  color: var(--white);
  font-family: "Inter Tight", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  left: 14px;
  letter-spacing: 0.4px;
  padding: 6px 12px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.dj-expose .g-more,
.dj-expose .gallery-all-button {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 999px;
  bottom: 13px;
  box-shadow: var(--shadow-sm);
  color: var(--anthracite);
  cursor: pointer;
  display: inline-flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  gap: 8px;
  padding: 9px 15px;
  position: absolute;
  right: 14px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
  z-index: 3;
  backdrop-filter: blur(6px);
}

.dj-expose .g-more:hover,
.dj-expose .gallery-all-button:hover {
  background: var(--white);
  transform: translateY(-1px);
}

.dj-expose .gallery-trigger:focus-visible,
.dj-expose .gallery-all-button:focus-visible,
.dj-expose .btn:focus-visible,
.dj-expose .read-more-toggle:focus-visible,
.dj-expose .privacy-field input:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.dj-expose .empty-gallery {
  align-items: center;
  background: var(--sand-warmer);
  border: 1px solid rgba(171, 168, 164, 0.38);
  border-radius: var(--r);
  display: grid;
  min-height: 380px;
  padding: clamp(28px, 6vw, 72px);
}

.dj-expose .empty-gallery span {
  color: var(--orange);
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.dj-expose .empty-gallery strong {
  display: block;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 0.98;
  margin-top: 10px;
  max-width: 760px;
}

.dj-expose .facts {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 14px;
  overflow: hidden;
}

.dj-expose .fact {
  align-items: center;
  display: flex;
  gap: 16px;
  min-width: 0;
  padding: 24px 26px;
  position: relative;
}

.dj-expose .fact + .fact::before {
  background: var(--hairline);
  bottom: 22px;
  content: "";
  left: 0;
  position: absolute;
  top: 22px;
  width: 1px;
}

.dj-expose .fact-ic {
  align-items: center;
  background: var(--light-sand);
  border-radius: 12px;
  color: var(--orange);
  display: flex;
  flex: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.dj-expose .fact-lbl {
  color: var(--text-soft);
  font-family: "Inter Tight", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.dj-expose .fact-val {
  color: var(--anthracite);
  font-family: "Inter Tight", sans-serif;
  font-size: 23px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
}

.dj-expose .body-grid {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 1fr) 372px;
  padding: 64px 0 40px;
}

.dj-expose .section {
  margin-bottom: 56px;
}

.dj-expose .section:last-child {
  margin-bottom: 0;
}

.dj-expose .section-head {
  margin-bottom: 22px;
}

.dj-expose .section-title {
  color: var(--anthracite);
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 12px 0 0;
}

.dj-expose .prose {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.72;
}

.dj-expose .prose p {
  margin: 0 0 15px;
}

.dj-expose .prose p:last-child {
  margin-bottom: 0;
}

.dj-expose .prose strong {
  color: var(--anthracite);
  font-weight: 600;
}

.dj-expose .read-more {
  position: relative;
}

.dj-expose .read-more-content {
  overflow: visible;
}

.dj-expose .read-more.is-collapsible.is-collapsed .read-more-content {
  max-height: var(--read-more-height, 250px);
  overflow: hidden;
  position: relative;
}

.dj-expose .read-more.is-collapsible.is-collapsed .read-more-content::after {
  background: linear-gradient(transparent, var(--light-sand));
  bottom: 0;
  content: "";
  height: 96px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.dj-expose .read-more-toggle {
  align-items: center;
  appearance: none;
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: 999px;
  color: var(--anthracite);
  cursor: pointer;
  display: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  gap: 9px;
  margin-top: 16px;
  padding: 10px 18px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.dj-expose .read-more.is-collapsible .read-more-toggle {
  display: inline-flex;
}

.dj-expose .read-more-toggle::after {
  color: var(--orange);
  content: "↓";
  font-size: 14px;
  line-height: 1;
}

.dj-expose .read-more:not(.is-collapsed) .read-more-toggle::after {
  content: "↑";
}

.dj-expose .read-more-toggle:hover,
.dj-expose .read-more-toggle:focus {
  background: var(--white) !important;
  background-color: var(--white) !important;
  border-color: var(--orange) !important;
  color: var(--orange-dark) !important;
  transform: none !important;
}

.dj-expose .read-more-less,
.dj-expose .read-more:not(.is-collapsed) .read-more-more {
  display: none;
}

.dj-expose .read-more:not(.is-collapsed) .read-more-less {
  display: inline;
}

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

.dj-expose .hl-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 24px 24px 8px;
}

.dj-expose .hl-card h4 {
  align-items: center;
  color: var(--anthracite);
  display: flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 1.4px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.dj-expose .hl-card h4 .hic {
  align-items: center;
  background: var(--orange-light);
  border-radius: 8px;
  color: var(--orange);
  display: flex;
  flex: none;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.dj-expose .hl-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dj-expose .hl-card li {
  border-top: 1px solid var(--hairline);
  color: var(--anthracite);
  font-size: 14.5px;
  line-height: 1.5;
  padding: 9px 0 9px 28px;
  position: relative;
}

.dj-expose .hl-card li:first-child {
  border-top: 0;
}

.dj-expose .hl-card li::before {
  color: var(--orange);
  content: "✓";
  font-family: "Inter Tight", sans-serif;
  font-weight: 800;
  left: 0;
  position: absolute;
  top: 8px;
}

.dj-expose .spec-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.dj-expose .spec-card + .spec-card {
  margin-top: 16px;
}

.dj-expose .spec-head {
  align-items: center;
  background: var(--sand);
  border-bottom: 1px solid var(--sand-border);
  display: flex;
  gap: 11px;
  padding: 16px 24px;
}

.dj-expose .spec-head .sh-ic {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(31, 29, 26, 0.08);
  border-radius: 9px;
  color: var(--orange);
  display: flex;
  flex: none;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.dj-expose .spec-head h4 {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}

.dj-expose .spec-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dj-expose .spec-row {
  align-items: baseline;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  min-width: 0;
  padding: 15px 24px;
}

.dj-expose .spec-rows .spec-row:nth-child(-n + 2) {
  border-top: 0;
}

.dj-expose .spec-rows .spec-row:nth-child(odd) {
  border-right: 1px solid var(--hairline);
}

.dj-expose .sr-lbl {
  color: var(--text-soft);
  flex: 0 1 auto;
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.dj-expose .sr-val {
  color: var(--anthracite);
  flex: 1 1 auto;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.dj-expose .spec-note {
  background: var(--light-sand);
  border-top: 1px solid var(--hairline);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
  padding: 14px 24px;
}

.dj-expose .energy-scale {
  border-top: 1px solid var(--hairline);
  padding: 18px 24px 22px;
}

.dj-expose .es-wrap {
  padding-top: 32px;
  position: relative;
}

.dj-expose .es-track {
  border-radius: 7px;
  display: flex;
  height: 24px;
  overflow: hidden;
}

.dj-expose .es-track span {
  flex: 1;
}

.dj-expose .es-track span:nth-child(1) { background: #1a9850; }
.dj-expose .es-track span:nth-child(2) { background: #66bd63; }
.dj-expose .es-track span:nth-child(3) { background: #a6d96a; }
.dj-expose .es-track span:nth-child(4) { background: #d9ef8b; }
.dj-expose .es-track span:nth-child(5) { background: #fee08b; }
.dj-expose .es-track span:nth-child(6) { background: #fdae61; }
.dj-expose .es-track span:nth-child(7) { background: #f46d43; }
.dj-expose .es-track span:nth-child(8) { background: #d73027; }
.dj-expose .es-track span:nth-child(9) { background: #a50026; }

.dj-expose .es-marker {
  background: var(--anthracite);
  border-radius: 999px;
  box-shadow: 0 5px 12px -3px rgba(31, 29, 26, 0.45);
  color: var(--white);
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  padding: 4px 11px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.dj-expose .es-marker::after {
  border: 5px solid transparent;
  border-top-color: var(--anthracite);
  bottom: -9px;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.dj-expose .es-legend {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  margin-top: 10px;
}

.dj-expose .es-legend span {
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
}

.dj-expose .plan {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  padding: 20px;
}

.dj-expose .plan .gallery-trigger {
  height: auto;
  width: auto;
}

.dj-expose .plan img {
  border-radius: 8px;
  max-height: 520px;
  object-fit: contain;
  width: auto;
}

.dj-expose .plan-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dj-expose .plan-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.dj-expose .plan-card .gallery-trigger {
  aspect-ratio: 0.72;
}

.dj-expose .plan-card .plan-img {
  object-fit: contain;
  padding: 18px;
}

.dj-expose .plan-card figcaption {
  background: rgba(31, 29, 26, 0.68);
  bottom: 8px;
  color: var(--white);
  font-family: "Inter Tight", sans-serif;
  font-size: 11px;
  font-weight: 700;
  left: 8px;
  letter-spacing: 0;
  padding: 6px 8px;
  pointer-events: none;
  position: absolute;
}

.dj-expose .aside {
  position: sticky;
  top: 98px;
}

.dj-expose .kompass {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dj-expose .kompass-top {
  padding: 24px 26px 22px;
  position: relative;
}

.dj-expose .kompass-top::before {
  background: var(--orange);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.dj-expose .k-kicker {
  color: var(--orange);
  font-family: "Inter Tight", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.dj-expose .k-price {
  color: var(--anthracite);
  font-family: "Inter Tight", sans-serif;
  font-size: 38px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
}

.dj-expose .k-price small {
  color: var(--text-soft);
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 8px;
}

.dj-expose .kompass-facts {
  display: none;
}

.dj-expose .kompass-facts .kf {
  padding: 13px 26px;
}

.dj-expose .kf-lbl,
.dj-expose .kr-l {
  color: var(--text-soft);
  font-family: "Inter Tight", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.dj-expose .kf-val {
  color: var(--anthracite);
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 3px;
}

.dj-expose .k-rows {
  padding: 4px 26px;
}

.dj-expose .k-row {
  align-items: center;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 13px 0;
}

.dj-expose .kr-v {
  color: var(--anthracite);
  font-family: "Inter Tight", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: right;
  overflow-wrap: anywhere;
}

.dj-expose .agent {
  align-items: center;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 14px;
  margin: 8px 26px 0;
  padding: 18px 0;
}

.dj-expose .agent img,
.dj-expose .agent .contact-avatar-fallback {
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--hairline);
  flex: none;
  height: 52px;
  object-fit: cover;
  object-position: center top;
  width: 52px;
}

.dj-expose .contact-avatar-fallback {
  align-items: center;
  background: var(--light-sand);
  color: var(--anthracite);
  display: inline-flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-weight: 800;
  gap: 5px;
  justify-content: center;
}

.dj-expose .contact-avatar-fallback i {
  background: var(--orange);
  display: inline-block;
  height: 18px;
  width: 1px;
}

.dj-expose .a-name {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.dj-expose .a-meta {
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.dj-expose .a-meta a,
.dj-expose .a-meta a:visited,
.dj-expose .a-meta .dj-obfuscated-contact {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--anthracite);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
  transition: color 0.18s var(--ease);
}

.dj-expose .a-meta a:hover,
.dj-expose .a-meta .dj-obfuscated-contact:hover {
  color: var(--orange-dark);
}

.dj-expose button.dj-obfuscated-contact,
.dj-expose button.dj-obfuscated-contact:focus,
.dj-expose button.dj-obfuscated-contact:active,
.dj-expose button.dj-obfuscated-contact:visited {
  appearance: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--anthracite) !important;
  min-height: 0 !important;
}

.dj-expose button.dj-obfuscated-contact:hover {
  background: transparent !important;
  color: var(--orange-dark) !important;
}

.dj-expose button.dj-obfuscated-contact:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.dj-expose .k-actions {
  padding: 0 26px 22px;
}

.dj-expose .btn {
  align-items: center;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0;
  padding: 15px 18px;
  text-align: center;
  transition: transform 0.18s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  width: 100%;
}

.dj-expose .btn-primary {
  background: var(--orange);
  border: 1px solid var(--orange);
  box-shadow: 0 10px 24px -10px rgba(245, 103, 0, 0.7);
  color: var(--white);
}

.dj-expose .btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 14px 30px -10px rgba(245, 103, 0, 0.75);
  transform: translateY(-1px);
}

.dj-expose .btn-ghost {
  background: var(--white);
  border: 1.5px solid var(--sand-border);
  color: var(--anthracite);
  margin-top: 10px;
}

.dj-expose .btn-ghost:hover {
  border-color: var(--anthracite);
  transform: translateY(-1px);
}

.dj-expose .k-actions .btn {
  transition: transform 0.18s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.dj-expose .k-actions .btn-primary {
  box-shadow: 0 10px 24px -10px rgba(245, 103, 0, 0.7) !important;
}

.dj-expose .k-actions .btn-primary:hover,
.dj-expose .k-actions .btn-primary:focus {
  box-shadow: 0 14px 30px -10px rgba(245, 103, 0, 0.75) !important;
  transform: translateY(-1px) !important;
}

.dj-expose .k-actions .btn-ghost {
  margin-top: 18px;
}

.dj-expose .k-actions .btn-ghost,
.dj-expose .k-actions .btn-ghost:hover,
.dj-expose .k-actions .btn-ghost:focus {
  box-shadow: none !important;
}

.dj-expose .k-actions .btn-ghost:hover {
  transform: none !important;
}

.dj-expose .cta-section {
  padding: 20px 0 72px;
}

.dj-expose .cta-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  position: relative;
}

.dj-expose .cta-card::before {
  background: var(--orange);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.dj-expose .cta-aside {
  background: var(--light-sand);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
}

.dj-expose .cta-photo {
  background: var(--sand);
  border-radius: var(--r);
  flex: 1;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.dj-expose .cta-photo img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.dj-expose .contact-portrait-fallback {
  align-items: center;
  color: var(--orange);
  display: flex;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(56px, 9vw, 118px);
  font-weight: 800;
  height: 100%;
  justify-content: center;
  min-height: 300px;
}

.dj-expose .cta-agent {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
}

.dj-expose .cta-agent .ca-avatar {
  display: none;
}

.dj-expose .ca-role {
  color: var(--orange);
  font-family: "Inter Tight", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.dj-expose .ca-name {
  font-family: "Inter Tight", sans-serif;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1;
}

.dj-expose .ca-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 4px;
}

.dj-expose .ca-contact {
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
}

.dj-expose .ca-line {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--anthracite);
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  gap: 10px;
  overflow-wrap: anywhere;
  padding: 0;
  text-align: left;
}

.dj-expose .ca-line:visited {
  color: var(--anthracite);
}

.dj-expose .ca-line:hover {
  color: var(--orange-dark);
}

.dj-expose .cta-form {
  padding: 44px 46px;
}

.dj-expose .cta-form .section-title {
  font-size: 34px;
  margin-top: 12px;
}

.dj-expose .lead {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0 26px;
  max-width: 46ch;
}

.dj-expose .lead-short {
  display: none;
}

.dj-expose .contact-feedback {
  border: 1px solid rgba(171, 168, 164, 0.44);
  border-radius: 10px;
  font-weight: 600;
  margin: 0 0 20px;
  padding: 13px 15px;
}

.dj-expose .contact-feedback-success {
  background: var(--orange-light);
  border-color: rgba(245, 103, 0, 0.28);
}

.dj-expose .contact-feedback-error {
  background: var(--light-sand);
  border-color: rgba(179, 74, 0, 0.34);
}

.dj-expose .contact-form {
  display: grid;
  gap: 16px;
}

.dj-expose .field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dj-expose .address-row {
  grid-template-columns: minmax(0, 1.6fr) minmax(104px, 0.7fr);
}

.dj-expose .field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dj-expose .field span,
.dj-expose .field label {
  color: var(--text-muted);
  font-family: "Inter Tight", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.dj-expose .req {
  color: var(--orange);
}

.dj-expose .field input,
.dj-expose .field textarea,
.dj-expose .phone-input {
  background: var(--light-sand);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--anthracite);
  font-size: 14.5px;
  min-height: 50px;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease);
  width: 100%;
}

.dj-expose .field input,
.dj-expose .field textarea {
  padding: 13px 14px;
}

.dj-expose .field input::placeholder,
.dj-expose .field textarea::placeholder {
  color: var(--text-soft);
}

.dj-expose .field input:focus,
.dj-expose .field textarea:focus,
.dj-expose .phone-input:focus-within {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 103, 0, 0.12);
  outline: none;
}

.dj-expose .field textarea {
  min-height: 96px;
  resize: vertical;
}

.dj-expose .phone-input {
  align-items: center;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  overflow: hidden;
}

.dj-expose .phone-input > span {
  align-items: center;
  align-self: stretch;
  background: var(--paper);
  border-right: 1px solid var(--hairline);
  color: var(--text-muted);
  display: flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  text-transform: none;
}

.dj-expose .phone-input input {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dj-expose .phone-input input:focus {
  background: transparent;
  box-shadow: none;
}

.dj-expose .privacy-field {
  align-items: start;
  color: var(--text-muted);
  display: grid;
  font-size: 12.5px;
  gap: 11px;
  grid-template-columns: 19px minmax(0, 1fr);
  line-height: 1.5;
  margin: 6px 0 6px;
}

.dj-expose .privacy-field input {
  accent-color: var(--orange);
  height: 19px;
  margin: 1px 0 0;
  width: 19px;
}

.dj-expose .privacy-field a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dj-expose .cta-form .btn-primary {
  justify-self: start;
  padding: 15px 30px;
  width: auto;
}

.dj-expose .form-foot {
  color: var(--text-soft);
  font-size: 12.5px;
  margin-top: 0;
}

.dj-expose .form-hp {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.pswp {
  --pswp-bg: rgba(31, 29, 26, 0.96);
  --pswp-icon-color: #ffffff;
  --pswp-icon-color-secondary: #1f1d1a;
  --pswp-placeholder-bg: #ebe7e1;
  font-family: "Inter", sans-serif;
  z-index: 2147483000;
}

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

.pswp button,
.pswp .pswp__button {
  appearance: none !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--pswp-icon-color) !important;
  font: inherit !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  min-height: 0 !important;
  min-width: 0 !important;
  outline-offset: 3px !important;
  padding: 0 !important;
  text-decoration: none !important;
  text-shadow: none !important;
  text-transform: none !important;
}

.pswp__top-bar {
  padding: 14px clamp(12px, 2vw, 28px) 0;
}

.pswp__counter {
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter Tight", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  padding-left: clamp(10px, 2vw, 24px);
  text-transform: uppercase;
}

.pswp__button:hover,
.pswp__button:focus-visible {
  background-color: rgba(255, 255, 255, 0.12) !important;
}

.pswp__button--close {
  align-items: center !important;
  background-color: rgba(31, 29, 26, 0.24) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 4px !important;
  display: flex !important;
  height: 52px !important;
  justify-content: center !important;
  margin-right: clamp(10px, 2vw, 24px);
  margin-top: 0 !important;
  width: 52px !important;
}

.pswp__button--arrow {
  align-items: center !important;
  background-color: rgba(248, 246, 242, 0.13) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 999px !important;
  display: flex !important;
  height: 56px !important;
  justify-content: center !important;
  margin-top: -28px !important;
  overflow: visible !important;
  width: 56px !important;
}

.pswp__button--arrow--prev {
  left: clamp(14px, 2vw, 28px) !important;
}

.pswp__button--arrow--next {
  right: clamp(14px, 2vw, 28px) !important;
}

.pswp__button--arrow:hover,
.pswp__button--arrow:focus-visible {
  background-color: rgba(248, 246, 242, 0.22) !important;
}

.pswp__button--arrow .pswp__icn {
  background: none !important;
  border: 0 !important;
  bottom: auto !important;
  height: 28px !important;
  left: auto !important;
  margin: 0 !important;
  position: static !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: 28px !important;
}

.pswp__button--arrow--next .pswp__icn {
  transform: scaleX(-1) !important;
}

.pswp__dj-caption {
  bottom: clamp(18px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter Tight", sans-serif;
  font-size: 13px;
  font-weight: 800;
  left: clamp(18px, 4vw, 72px);
  letter-spacing: 0.2px;
  max-width: min(620px, calc(100vw - 36px));
  pointer-events: none;
  position: absolute;
  text-shadow: 0 1px 20px rgba(31, 29, 26, 0.58);
}

.pswp__dj-caption[hidden] {
  display: none;
}

.gallery-lightbox {
  background: rgba(31, 29, 26, 0.96);
  color: #ffffff;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  inset: 0;
  position: fixed;
  z-index: 2147483000;
}

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

.lightbox-topbar,
.lightbox-footer {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px clamp(16px, 3vw, 42px);
}

.lightbox-counter,
.lightbox-caption {
  font-family: "Inter Tight", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin: 0;
}

.lightbox-close,
.lightbox-nav,
.lightbox-image-button,
.lightbox-thumb {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-family: "Inter Tight", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 14px;
  text-transform: uppercase;
}

.lightbox-stage {
  align-items: center;
  display: grid;
  gap: clamp(10px, 2vw, 22px);
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  min-height: 0;
  padding: 0 clamp(12px, 3vw, 42px);
}

.lightbox-nav {
  align-items: center;
  background: rgba(248, 246, 242, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  display: flex;
  font-size: 34px;
  height: 56px;
  justify-content: center;
  line-height: 1;
  width: 56px;
}

.lightbox-image-button {
  cursor: zoom-in;
  height: 100%;
  min-height: 0;
}

.lightbox-image-button.is-zoomed {
  cursor: zoom-out;
  overflow: auto;
}

.lightbox-image {
  height: 100%;
  margin: 0 auto;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  width: 100%;
}

.lightbox-image-button.is-zoomed .lightbox-image {
  height: auto;
  max-height: none;
  max-width: none;
  width: 140%;
}

.lightbox-footer {
  align-items: end;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  max-width: min(58vw, 620px);
  overflow-x: auto;
  padding-bottom: 2px;
}

.lightbox-thumb {
  border: 2px solid transparent;
  border-radius: 8px;
  flex: 0 0 58px;
  height: 42px;
  overflow: hidden;
}

.lightbox-thumb.is-active {
  border-color: var(--orange, #f56700);
}

.lightbox-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .dj-expose .body-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .dj-expose .aside {
    order: -1;
    position: static;
  }

  .dj-expose .facts {
    display: none;
  }

  .dj-expose .kompass-facts {
    border-top: 1px solid var(--hairline);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dj-expose .kompass-facts .kf:nth-child(-n + 2) {
    border-bottom: 1px solid var(--hairline);
  }

  .dj-expose .kompass-facts .kf:nth-child(odd) {
    border-right: 1px solid var(--hairline);
  }

  .dj-expose .k-row.kr-dup {
    display: none;
  }
}

@media (max-width: 860px) {
  .dj-expose {
    --gutter: 22px;
  }

  .dj-expose .hero {
    padding-top: 34px;
  }

  .dj-expose .hero-title {
    font-size: 40px;
  }

  .dj-expose .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .dj-expose .g-item.main {
    grid-row: auto;
    height: 260px;
  }

  .dj-expose .g-item {
    height: 180px;
  }

  .dj-expose .hl-grid {
    grid-template-columns: 1fr;
  }

  .dj-expose .spec-rows {
    grid-template-columns: 1fr;
  }

  .dj-expose .spec-rows .spec-row:nth-child(odd) {
    border-right: 0;
  }

  .dj-expose .spec-rows .spec-row:nth-child(2) {
    border-top: 1px solid var(--hairline);
  }

  .dj-expose .plan-grid {
    grid-template-columns: 1fr;
  }

  .dj-expose .cta-card {
    grid-template-columns: 1fr;
  }

  .dj-expose .cta-photo {
    display: none;
  }

  .dj-expose .cta-aside {
    gap: 0;
    padding: 16px;
  }

  .dj-expose .cta-agent {
    align-items: center;
    display: flex;
    gap: 18px;
  }

  .dj-expose .cta-agent .ca-avatar {
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--hairline);
    display: block;
    flex: none;
    height: 92px;
    object-fit: cover;
    object-position: center top;
    width: 92px;
  }

  .dj-expose .ca-contact {
    margin-top: 10px;
    padding-top: 10px;
  }

  .dj-expose .ca-email {
    display: none;
  }

  .dj-expose .cta-form {
    padding: 26px 22px;
  }

  .dj-expose .field-row {
    grid-template-columns: 1fr;
  }

  .dj-expose .address-row {
    grid-template-columns: 1fr;
  }

  .dj-expose .lead-full {
    display: none;
  }

  .dj-expose .lead-short {
    display: block;
  }

  .dj-expose .section-title {
    font-size: 27px;
  }
}

@media (max-width: 560px) {
  .dj-expose {
    --gutter: 18px;
  }

  .dj-expose .obj-crumb {
    font-size: 13px;
  }

  .dj-expose .hero-title {
    font-size: 34px;
  }

  .dj-expose .g-more {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .dj-expose .body-grid {
    padding-top: 42px;
  }

  .dj-expose .section {
    margin-bottom: 44px;
  }

  .dj-expose .spec-head,
  .dj-expose .spec-row,
  .dj-expose .energy-scale {
    padding-left: 18px;
    padding-right: 18px;
  }

  .dj-expose .k-price {
    font-size: 32px;
  }

  .dj-expose .cta-section {
    padding-bottom: 48px;
  }

  .dj-expose .cta-card {
    border-radius: var(--r-lg);
  }

  .dj-expose .cta-form .btn-primary {
    width: 100%;
  }

  .pswp__top-bar {
    padding-top: 8px;
  }

  .pswp__button--arrow {
    bottom: 22px !important;
    height: 48px !important;
    margin-top: 0 !important;
    top: auto !important;
    width: 48px !important;
  }

  .pswp__button--arrow--prev {
    left: 12px !important;
  }

  .pswp__button--arrow--next {
    right: 12px !important;
  }

  .pswp__dj-caption {
    bottom: 28px;
    font-size: 12px;
    left: 72px;
    max-width: calc(100vw - 144px);
  }
}

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

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