:root {
  --dv-gold: #caa56a;
  --dv-gold-2: #c9a96e;
  --dv-gold-active: #b79e4d;
  --dv-beige: #fffbf5;
  --dv-grey: #9d9d9d;
  --dv-grey-2: #d7d7d7;
  --dv-grey-3: #7a7873;
  --dv-grey-4: #4a4845;
  --dv-grey-5: #9a9794;
  --dv-green: #8dc63f;
  --dv-bg: #111111;
  --dv-surface: #111114;
  --dv-surface-2: #18181c;
  --dv-hairline: rgba(255, 255, 255, 0.06);
  --dv-hairline-2: rgba(255, 255, 255, 0.08);
  --dv-hairline-3: rgba(255, 255, 255, 0.05);

  --dv-display: "Fredoka", sans-serif;
  --dv-body: "Faustina", Georgia, serif;
  --dv-util: "Outfit", sans-serif;

  --dv-max: 1216px;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(90deg, var(--dv-bg) 0%, var(--dv-bg) 100%);
  color: var(--dv-beige);
  font-family: var(--dv-body);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
}
:focus-visible {
  outline: 2px solid var(--dv-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.dv-shell {
  max-width: var(--dv-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HERO
   ============================================================ */
.dv-hero {
  padding: 78px 0 0;
  text-align: center;
}
.dv-eyebrow {
  font-family: var(--dv-display);
  font-weight: 500;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dv-gold);
  margin: 0;
}
.dv-title {
  font-family: var(--dv-display);
  font-weight: 300;
  font-size: clamp(25px, 6.4vw, 36px);
  line-height: 1.286;
  margin: 20px 0 0;
  color: var(--dv-beige);
  text-transform: capitalize;
}
.dv-title span {
  color: var(--dv-gold);
}
.dv-lede {
  font-family: var(--dv-body);
  font-weight: 400;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.35;
  color: var(--dv-grey-3);
  margin: 0px auto 0;
}

/* Stat pills */
.dv-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.dv-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dv-surface);
  border: 1px solid var(--dv-hairline);
  border-radius: 12px;
  padding: 10px 16px;
}
.dv-stat b {
  font-family: var(--dv-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: var(--dv-gold);
}
.dv-stat span {
  font-family: var(--dv-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 16.5px;
  color: var(--dv-grey);
}

/* Gold hairline */
.dv-rule {
  height: 1px;
  margin: 38px auto 0;
  max-width: var(--dv-max);
  background: linear-gradient(
    90deg,
    rgba(201, 169, 110, 0) 0%,
    var(--dv-gold-2) 50%,
    rgba(201, 169, 110, 0) 100%
  );
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.dv-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 25px;
}
.dv-search {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dv-surface);
  border: 1px solid var(--dv-hairline-2);
  border-radius: 4px;
  padding: 12px 16px;
  min-height: 44px;
}
.dv-search .uk-icon {
  color: var(--dv-grey-4);
  flex: 0 0 16px;
}
.dv-search input {
  flex: 1 1 auto;
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  font-family: var(--dv-util);
  font-weight: 400;
  font-size: 14px;
  color: var(--dv-beige);
}
.dv-search input::placeholder {
  color: var(--dv-grey-4);
}
.dv-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 44px;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: var(--dv-display);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--dv-grey-5);
  white-space: nowrap;
}

/* ============================================================
   BUILDER CARD
   ============================================================ */
.dv-grid {
  margin-top: 32px;
}
.dv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--dv-surface);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  border: 1px solid var(--dv-hairline-3);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.dv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.35);
}
.dv-card__media {
  position: relative;
  overflow: hidden;
  background: var(--dv-surface-2);
  aspect-ratio: 287/139;
  width: 100%;
}
.dv-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.7;
}
.dv-card__scrim {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    0deg,
    rgb(17, 17, 20) 0%,
    rgba(17, 17, 20, 0.8) 10%,
    rgba(17, 17, 20, 0.6) 20%,
    rgba(17, 17, 20, 0.4) 30%,
    rgba(17, 17, 20, 0.2) 40%,
    rgba(17, 17, 20, 0) 50%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}
.dv-card__logo {
  position: absolute;
  left: 16px;
  bottom: 6px;
  height: 55px;
  overflow: hidden;
}
.dv-card__logo img {
  width: auto;
  max-height: 43px;
}
.dv-card__wordmark {
  font-family: var(--dv-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 36.417px;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
  width: 102px;
  height: 36.417px;
  overflow: hidden;
  white-space: nowrap;
}
.dv-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
}
.dv-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.dv-card__name {
  font-family: var(--dv-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: var(--dv-beige);
  margin: 0;
}
.dv-card__est {
  font-family: var(--dv-util);
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  color: var(--dv-grey);
  padding-top: 2px;
  white-space: nowrap;
}
.dv-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  min-height: 20px;
  padding: 10px 0;
}
.dv-card__city {
  font-family: var(--dv-display);
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--dv-grey-2);
}
.dv-card__rera {
  font-family: var(--dv-util);
  font-weight: 500;
  font-size: 8px;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dv-green);
}
.dv-card__foot {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--dv-hairline-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dv-card__stat {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dv-card__num {
  font-family: var(--dv-util);
  font-weight: 400;
  font-size: 18px;
  line-height: 16.5px;
  color: var(--dv-gold);
}
.dv-card__lbl {
  font-family: var(--dv-util);
  font-weight: 400;
  font-size: 11px;
  line-height: 16.5px;
  color: var(--dv-grey);
}
.dv-card__cta {
  font-family: var(--dv-util);
  font-weight: 500;
  font-size: 11px;
  line-height: 16.5px;
  color: var(--dv-gold-2);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.dv-card__cta:hover {
  opacity: 0.7;
}

/* Empty state */
.dv-empty {
  text-align: center;
  padding: 64px 20px;
  font-family: var(--dv-body);
  font-size: 18px;
  color: var(--dv-grey-3);
}
.dv-empty button {
  display: inline-block;
  margin-top: 14px;
  background: none;
  border: 1px solid var(--dv-hairline-2);
  border-radius: 4px;
  padding: 8px 18px;
  color: var(--dv-gold);
  font-family: var(--dv-util);
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.dv-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}
.dv-pager li {
  display: flex;
}
.dv-pager button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 2px 4px;
  font-family: var(--dv-body);
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  transition: color 0.2s ease;
}
.dv-pager button:hover {
  color: var(--dv-gold);
}
.dv-pager .dv-is-active button {
  color: var(--dv-gold-active);
}
.dv-pager .dv-nav button {
  color: var(--dv-gold);
  display: flex;
  align-items: center;
}
.dv-pager .dv-nav button[disabled] {
  color: var(--dv-grey-4);
  cursor: not-allowed;
}
.dv-pager .dv-dots {
  font-family: var(--dv-body);
  font-size: 24px;
  line-height: 29px;
  color: var(--dv-grey-4);
  align-items: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.dv-faq {
  margin-top: 100px;
  padding-bottom: 100px;
}
.dv-faq__title {
  font-family: var(--dv-display);
  font-weight: 400;
  text-align: center;
  font-size: clamp(25px, 6vw, 35px);
  line-height: 1.15;
  color: var(--dv-beige);
  margin: 0 0 40px;
}
.dv-acc {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.dv-acc > li {
  background: rgba(23, 23, 23, 0.1);
  border: 1px solid var(--dv-hairline-3);
  border-radius: 4px;
  padding: 0px 20px !important;
  margin: 0;
  transition: background 0.3s ease;
  margin-top: 0 !important;
}
.dv-acc > li.uk-open {
  background: rgba(169, 169, 169, 0.1);
}
.dv-acc__title {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--dv-display);
  padding: 12px 0;
  color: var(--gold, #caa56a) !important;
  font-family: Fredoka;
  font-size: 24px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: normal;
}
.uk-accordion>:nth-child(n+2){
  border-top: none !important;
}
.dv-acc__title::before {
  display: none;
}
.dv-acc__sign {
  flex: 0 0 auto;
  font-family: var(--dv-display);
  font-size: 34px;
  line-height: 1;
  color: #fff;
  width: 25.429px;
  text-align: center;
}
.dv-acc__sign::after {
  content: "+";
}
.uk-open > .dv-acc__title .dv-acc__sign::after {
  content: "\2212";
}
.dv-acc__content {
  margin: 0;
  padding: 0 0 12px;
  font-family: var(--dv-body);
  font-weight: 400;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.55;
  color: var(--dv-grey);
  max-width: 92%;
}
.dv-acc > li[hidden] {
  display: none;
}
.dv-more {
  display: flex;
  justify-content: center;
  margin-top: 31px;
}
.dv-more a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 6px 18px;
  font-family: var(--dv-body);
  font-weight: 300;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  color: var(--dv-grey-2);
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}
.dv-more a:hover {
  border-color: var(--dv-gold);
  color: var(--dv-gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 959px) {
  .dv-hero {
    padding-top: 106px;
  }
  .dv-rule {
    margin-top: 30px;
  }
  .dv-toolbar {
    margin-top: 28px;
  }
  .dv-pager {
    margin-top: 44px;
    gap: 14px;
  }
  .dv-faq {
    margin-top: 72px;
    padding-bottom: 72px;
  }
}
@media (max-width: 639px) {
  .dv-shell {
    padding: 0 16px;
  }
  .dv-hero {
    padding-top: 85px;
  }
  .dv-stat {
    padding: 8px 12px;
    gap: 8px;
  }
  .dv-stat b {
    font-size: 16px;
    line-height: 22px;
  }
  .dv-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .dv-badge {
    justify-content: center;
    border: 1px solid var(--dv-hairline);
    height: auto;
    padding: 10px 16px;
  }
  .dv-acc__content {
    max-width: 100%;
  }
  .dv-pager button {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
