.cnd-home {
  padding: 88px 0 110px;
  background:
    radial-gradient(circle at 78% 18%, rgba(175,147,96,.12), transparent 28%),
    linear-gradient(180deg, #fcfaf6 0%, #f8f4ec 100%);
}
/* =========================================================
   01 Hero
   ========================================================= */

.cnd-home .cnd-home-hero {
    padding: 88px 0 56px;
}

.cnd-home .cnd-home-hero__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 88px;
    align-items: center;
}

.cnd-home .cnd-home-hero__content {
    max-width: 640px;
}

.cnd-home .cnd-home-hero__media {
    position: relative;
    min-height: 620px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(22, 18, 13, .14);
}

.cnd-home .cnd-home-hero__media img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.cnd-home .cnd-home-hero__card {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(252, 250, 246, .88);
    backdrop-filter: blur(16px);
}

.cnd-home .cnd-home-hero__card span {

    display: block;
    margin-bottom: 10px;
    color: var(--cnd-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cnd-home .cnd-home-hero__card strong {

    font-family: var(--cnd-font-heading);
    font-size: 28px;
    line-height: 1.1;
    color: var(--cnd-heading);
}

@media (max-width: 991px) {
    .cnd-home .cnd-home-hero {
        padding: 72px 0 80px;
    }

    .cnd-home .cnd-home-hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cnd-home .cnd-home-hero__content {
        max-width: 100%;
    }

    .cnd-home .cnd-home-hero__media {
        min-height: 480px;
        border-radius: 34px;
    }

    .cnd-home .cnd-home-hero__media img {
        height: 480px;
    }
}

@media (max-width: 767px) {
    .cnd-home {
        background:
            radial-gradient(circle at 80% 4%, rgba(175, 147, 96, .12), transparent 34%),
            linear-gradient(180deg, #fcfaf6 0%, #f8f4ec 55%, #f3eadc 100%);
    }

    .cnd-home .cnd-home-hero {
        padding: 56px 0 68px;
    }

    .cnd-home .cnd-home-hero__grid {
        gap: 36px;
    }

    .cnd-home .cnd-home-hero__media {
        min-height: 390px;
        border-radius: 28px;
    }

    .cnd-home .cnd-home-hero__media img {
        height: 390px;
    }

    .cnd-home .cnd-home-hero__card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 22px;
        border-radius: 22px;
    }

    .cnd-home .cnd-home-hero__card strong {
        font-size: 26px;
    }

    .cnd-home .cnd-home-areas {
        padding: 72px 0;
    }

    .cnd-home .cnd-heading-xl {

    font-size: clamp(36px, 8vw, 40px);

    line-height: 1.15;

    letter-spacing: -0.03em;
}
}

/* =========================================================
   02 Areas
   ========================================================= */

.cnd-home .cnd-home-areas {
  padding: 36px 0 104px;
}

.cnd-home .cnd-home-areas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cnd-home .cnd-home-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 380px;
  padding: 42px;

  border-radius: 36px;
  border: 1px solid var(--cnd-border);
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--cnd-shadow-soft);
  transition: .35s ease;
}

.cnd-home .cnd-home-area:hover {
  transform: translateY(-8px);
  box-shadow: var(--cnd-shadow-luxury);
}

.cnd-home .cnd-home-area__label {
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;

  background: var(--cnd-gold-soft);
  color: var(--cnd-gold);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cnd-home .cnd-home-area h3 {
  margin: 32px 0 18px;

  font-family: var(--cnd-font-heading);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1.08;
  color: var(--cnd-heading);
}

.cnd-home .cnd-home-area p {
  margin: 0;
  color: var(--cnd-muted);
  line-height: 1.8;
}

/* =========================================================
   Section 02 Mobile
   ========================================================= */

@media (max-width: 991px) {

  .cnd-home .cnd-home-areas {
    padding: 80px 0;
  }

  .cnd-home .cnd-home-areas__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cnd-home .cnd-home-area {
    min-height: auto;
    padding: 36px;
  }

  .cnd-home .cnd-home-area h3 {
    font-size: 38px;
  }

}

@media (max-width: 767px) {

  .cnd-home .cnd-home-areas {
    padding: 64px 0;
  }

  .cnd-home .cnd-home-area {
    padding: 28px;
    border-radius: 28px;
  }

  .cnd-home .cnd-home-area__label {
    font-size: 10px;
    padding: 8px 14px;
  }

  .cnd-home .cnd-home-area h3 {
    margin: 24px 0 14px;

    font-size: 30px;
    line-height: 1.12;
  }

  .cnd-home .cnd-home-area p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cnd-home .cnd-home-area .cnd-readmore {
    margin-top: 24px;
  }

}

@media (max-width: 480px) {

  .cnd-home .cnd-home-area {
    padding: 24px;
  }

  .cnd-home .cnd-home-area h3 {
    font-size: 26px;
  }

}

/* =========================================================
   03. Market Snapshot
   ========================================================= */

.cnd-home .cnd-home-snapshot {
  padding: 40px 0 44px;
}

.cnd-home .cnd-home-snapshot__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 1px solid rgba(175,147,96,.24);
  border-radius: 32px;

  background: rgba(255,255,255,.52);
  backdrop-filter: blur(12px);

  box-shadow: 0 24px 70px rgba(22,18,13,.06);
  overflow: hidden;
}

.cnd-home .cnd-home-snapshot__item {
  padding: 34px 38px;
  border-right: 1px solid rgba(175,147,96,.22);
}

.cnd-home .cnd-home-snapshot__item:last-child {
  border-right: 0;
}

.cnd-home .cnd-home-snapshot__item span {
  display: block;
  margin-bottom: 14px;

  font-family: var(--cnd-font-heading);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;

  color: var(--cnd-gold);
}

.cnd-home .cnd-home-snapshot__item p {
  margin: 0 0 12px;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: var(--cnd-muted);
}

.cnd-home .cnd-home-snapshot__item strong {
  display: block;

  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .04em;
  text-transform: uppercase;

  color: var(--cnd-heading);
}

/* Mobile */

@media (max-width: 767px) {
  .cnd-home .cnd-home-snapshot {
    padding: 28px 0 56px;
  }

  .cnd-home .cnd-home-snapshot__box {
    grid-template-columns: 1fr;
    border-radius: 28px;
  }

  .cnd-home .cnd-home-snapshot__item {
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(175,147,96,.22);
  }

  .cnd-home .cnd-home-snapshot__item:last-child {
    border-bottom: 0;
  }

  .cnd-home .cnd-home-snapshot__item span {
    font-size: 46px;
  }
}


/* =========================================================
   04. Investment Posts
   Shared Post Card System
   ========================================================= */

.cnd-home .cnd-home-investment {
  padding: 70px 0;
}

.cnd-home .cnd-home-market {
  padding: 40px 0;
}

.cnd-home .cnd-home-infrastructure {
  padding: 40px 0;
}

/* =========================================================
   07. Lead CTA
   ========================================================= */

.cnd-home .cnd-home-cta {
  padding: 120px 0;
}

.cnd-home .cnd-home-cta__box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px;
  text-align: center;

  border-radius: 42px;
  border: 1px solid rgba(175,147,96,.24);

  background:
    radial-gradient(circle at 50% 0%, rgba(175,147,96,.12), transparent 36%),
    rgba(255,255,255,.58);

  box-shadow: var(--cnd-shadow-luxury);
}

.cnd-home .cnd-home-cta__box .cnd-subtitle {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cnd-home .cnd-home-cta__form {
  max-width: 680px;
  margin: 40px auto 0;
}

.cnd-home .cnd-home-cta__form input[type="text"],
.cnd-home .cnd-home-cta__form input[type="tel"] {
  width: 100%;
  height: 58px;
  margin-bottom: 14px;
  padding: 0 22px;

  border-radius: 999px;
  border: 1px solid var(--cnd-border);
  background: #fff;

  font-family: var(--cnd-font-body);
  font-size: 14px;
  outline: none;
}

.cnd-home .cnd-home-cta__choices {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 32px;
}

.cnd-home .cnd-home-cta__choices label {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 48px;
  padding: 0 20px;

  border-radius: 999px;
  border: 1px solid var(--cnd-border);

  background: rgba(255,255,255,.78);

  color: var(--cnd-heading);

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
  transition: .3s ease;
}

.cnd-home .cnd-home-cta__choices input {
  appearance: none;
  -webkit-appearance: none;

  width: 15px;
  height: 15px;

  margin: 0;

  border-radius: 50%;
  border: 1px solid rgba(175,147,96,.55);

  background: #fff;

  display: inline-block;
  position: relative;

  transition: .25s ease;
}

.cnd-home .cnd-home-cta__choices input::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: var(--cnd-gold);

  transform: translate(-50%, -50%) scale(0);

  transition: .25s ease;
}

.cnd-home .cnd-home-cta__choices input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.cnd-home .cnd-home-cta__choices label:has(input:checked) {
  border-color: var(--cnd-gold);
  background: var(--cnd-gold-soft);
  color: var(--cnd-heading);
}

.cnd-home .cnd-home-cta__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin-top: 54px;
}

.cnd-home .cnd-home-cta__benefits div {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--cnd-border);
  background: rgba(255,255,255,.62);
}

.cnd-home .cnd-home-cta__benefits span {
  display: block;
  margin-bottom: 10px;

  color: var(--cnd-gold);
  font-size: 11px;
  font-weight: 700;
}

.cnd-home .cnd-home-cta__benefits strong {
  font-size: 13px;
}

/* =========================================================
   07. Lead CTA - Contact Form 7 Override
   ========================================================= */

.cnd-home .cnd-home-cta .wpcf7 {
  max-width: 720px;
  margin: 40px auto 0;
}

.cnd-home .cnd-home-cta .wpcf7 form p {
  margin: 0;
}

.cnd-home .cnd-home-cta .wpcf7 input[type="text"],
.cnd-home .cnd-home-cta .wpcf7 input[type="tel"] {
  width: 100% !important;
  height: 58px !important;
  margin: 0 0 14px !important;
  padding: 0 22px !important;

  border-radius: 999px !important;
  border: 1px solid var(--cnd-border) !important;

  background: #fff !important;

  font-family: var(--cnd-font-body) !important;
  font-size: 14px !important;
  color: var(--cnd-heading) !important;

  box-shadow: none !important;
  outline: none !important;
}

.cnd-home .cnd-home-cta .wpcf7-checkbox {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;

  margin: 20px 0 30px;
}

.cnd-home .cnd-home-cta .wpcf7-list-item {
  margin: 0 !important;
}

.cnd-home .cnd-home-cta .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  min-height: 48px;
  padding: 0 18px;

  border-radius: 999px;
  border: 1px solid var(--cnd-border);

  background: #fff;

  cursor: pointer;
}

.cnd-home .cnd-home-cta .wpcf7-list-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;

  width: 15px;
  height: 15px;
  margin: 0;

  border-radius: 50%;
  border: 1px solid rgba(175,147,96,.55);
  background: #fff;

  position: relative;
}

.cnd-home .cnd-home-cta .wpcf7-list-item input[type="checkbox"]::after {
  content: "";
  position: absolute;
  inset: 3px;

  border-radius: 50%;
  background: var(--cnd-gold);

  transform: scale(0);
  transition: .25s ease;
}

.cnd-home .cnd-home-cta .wpcf7-list-item input[type="checkbox"]:checked::after {
  transform: scale(1);
}

.cnd-home .cnd-home-cta .wpcf7-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  min-width: 320px !important;
  height: 58px !important;
  padding: 0 34px !important;

  border: 0 !important;
  border-radius: 999px !important;

  background: var(--cnd-gold) !important;
  color: #fff !important;

  font-family: var(--cnd-font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;

  box-shadow: none !important;
  cursor: pointer;
}

.cnd-home .cnd-home-cta .wpcf7-submit:hover {
  background: var(--cnd-gold-dark) !important;
}

.cnd-home .cnd-home-cta .wpcf7-spinner {
  display: none;
}

/* Mobile CTA */

@media (max-width: 767px) {

  .cnd-home .cnd-home-cta__box {
    padding: 42px 22px;
  }

  .cnd-home .cnd-home-cta__box .cnd-heading-lg {
    font-size: 34px;
    line-height: 1.12;
  }

  .cnd-home .cnd-home-cta__box .cnd-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .cnd-home .cnd-home-cta .wpcf7 {
    margin-top: 30px;
  }

  .cnd-home .cnd-home-cta .wpcf7 input[type="text"],
  .cnd-home .cnd-home-cta .wpcf7 input[type="tel"] {
    height: 56px !important;
    margin-bottom: 12px !important;
  }

  .cnd-home .cnd-home-cta .wpcf7-checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 22px 0 28px;
  }

  .cnd-home .cnd-home-cta .wpcf7-list-item label {
    width: 100%;
    justify-content: flex-start;

    min-height: 48px;
    padding: 0 18px;

    font-size: 13px;
}

  .cnd-home .cnd-home-cta .wpcf7-submit {
    width: 100% !important;
    min-width: 0 !important;
  }

  .cnd-home .cnd-home-cta__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 42px;
  }

  .cnd-home .cnd-home-cta__benefits div {
    padding: 22px;
    border-radius: 20px;
  }

}

.cnd-home .cnd-home-cta__note {
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;

    margin-top:42px;

    color:var(--cnd-muted);
    font-size:14px;
    font-weight:500;
}

.cnd-home .cnd-home-cta__note span{
    display:flex;
    align-items:center;
    gap:10px;
}

.cnd-home .cnd-home-cta__note span::before{
    content:"";
    width:6px;
    height:6px;

    border-radius:50%;
    background:var(--cnd-gold);

    flex-shrink:0;
}

@media (max-width: 767px) {
  .cnd-home .cnd-home-cta__note {
    display: none;
  }
}