/* Homepage hero — fluid layout so 100% zoom matches the balanced 90% look */
:root {
  --hero-ink: #1c1c1c;
  --hero-muted: #5c5c5c;
  --hero-soft: #f3f4f6;
  --hero-line: #e6e8ec;
  --brand-gold: #DAB54C;
  --brand-gold-hover: #c9a33e;
  --hero-radius-panel: clamp(16px, 1.6vw, 22px);
  --hero-radius-pill: 999px;
  --hero-side: clamp(14px, 2.4vw, 36px);
  --hero-search-w: min(78%, 780px);
  /* Slightly narrower than .tf-container (1320px) */
  --nav-float-max: 1180px;
  --nav-float-side: 20px;
  --nav-float-top: 20px;
  --nav-height: 68px;
}

body.home-hero-redesign {
  background: #ffffff;
}

/* Space for fixed header */
body.home-hero-redesign #wrapper {
  padding-top: var(--nav-height);
}

/* Fixed navbar — always on top, never disappears under sections */
body.home-hero-redesign #header-main,
body.home-hero-redesign #header-main.header-fixed,
body.home-hero-redesign #header-main.is-fixed,
body.home-hero-redesign #header-main.is-fixed.is-small {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  z-index: 99999 !important;
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transition:
    top 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    box-shadow 0.45s ease,
    backdrop-filter 0.45s ease;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid transparent;
  pointer-events: auto;
}

body.home-hero-redesign #header-main .header-inner {
  box-sizing: border-box !important;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  transition:
    width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    backdrop-filter 0.45s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid transparent;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Scrolled float — blur ONLY on inner card; outer gaps stay clear */
body.home-hero-redesign #header-main.is-nav-float {
  top: var(--nav-float-top) !important;
  padding: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom-color: transparent !important;
  pointer-events: none;
}

body.home-hero-redesign #header-main.is-nav-float .header-inner {
  pointer-events: auto;
  width: min(var(--nav-float-max), calc(100% - (var(--nav-float-side) * 2))) !important;
  max-width: min(var(--nav-float-max), calc(100% - (var(--nav-float-side) * 2))) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 10px 36px rgba(16, 24, 40, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(0) scale(1);
}

body.home-hero-redesign #header-main.is-fixed.is-small .header-inner {
  background: transparent;
  box-shadow: none;
}

body.home-hero-redesign #header-main.is-nav-float.is-fixed.is-small .header-inner {
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 10px 36px rgba(16, 24, 40, 0.12) !important;
}

body.home-hero-redesign #header-main .tf-container.xl {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding-left: var(--hero-side) !important;
  padding-right: var(--hero-side) !important;
  transition: padding 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-hero-redesign #header-main.is-nav-float .tf-container.xl {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

body.home-hero-redesign #header-main .tf-container.xl .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.home-hero-redesign #header-main .tf-container.xl .row > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Logo left | menu truly center | buttons right */
body.home-hero-redesign #header-main .header-inner-wrap {
  display: grid !important;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 64px;
  width: 100%;
}

body.home-hero-redesign #header-main .header-logo {
  padding: 10px 0 !important;
  justify-self: start;
  grid-column: 1;
}

body.home-hero-redesign #header-main .header-logo img {
  width: auto !important;
  height: 34px !important;
  max-width: 120px;
  object-fit: contain;
}

body.home-hero-redesign #header-main .main-menu {
  justify-self: center;
  grid-column: 2;
  width: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  position: relative;
}

body.home-hero-redesign #header-main .main-menu .navigation {
  gap: 6px !important;
  justify-content: center;
}

body.home-hero-redesign #header-main .navigation > li > a {
  color: var(--hero-ink) !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  padding: 18px 8px !important;
  line-height: 1.2 !important;
}

body.home-hero-redesign #header-main .navigation > li.current-menu > a {
  font-weight: 500 !important;
  color: var(--hero-ink) !important;
}

body.home-hero-redesign #header-main .header-right {
  gap: 8px !important;
  justify-self: end;
  grid-column: 3;
  justify-content: flex-end;
}

body.home-hero-redesign #header-main .tf-btn {
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 14px !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  line-height: 34px !important;
  border-radius: 999px !important;
}

body.home-hero-redesign #header-main .tf-btn.pd-23 {
  padding: 0 14px !important;
}

body.home-hero-redesign #header-main .tf-btn.bg-color-primary {
  background: var(--brand-gold) !important;
  border-color: var(--brand-gold) !important;
  color: #fff !important;
}

body.home-hero-redesign #header-main .tf-btn.bg-color-primary:hover,
body.home-hero-redesign #header-main .tf-btn.bg-color-primary:focus {
  background: var(--brand-gold-hover) !important;
  border-color: var(--brand-gold-hover) !important;
  color: #fff !important;
}

body.home-hero-redesign #header-main .tf-btn.style-border {
  border-color: var(--brand-gold) !important;
  color: var(--brand-gold) !important;
  border-width: 1px !important;
  border-radius: 999px !important;
  background: transparent !important;
}

body.home-hero-redesign #header-main .tf-btn.style-border:hover,
body.home-hero-redesign #header-main .tf-btn.style-border:focus {
  background: transparent !important;
  color: var(--brand-gold) !important;
  border-color: var(--brand-gold) !important;
}

body.home-hero-redesign .page-title.home01.hero-eastate {
  animation: none !important;
  background: #ffffff !important;
  background-image: none !important;
  padding: 8px var(--hero-side) 0 !important;
  margin-top: 0 !important;
  min-height: auto !important;
  z-index: 5;
}

body.home-hero-redesign .page-title.home01.hero-eastate::after {
  display: none !important;
}

.hero-shell {
  max-width: none;
  margin: 0 auto;
  position: relative;
}

.hero-panel {
  position: relative;
  height: clamp(660px, 92vh, 920px);
  min-height: clamp(660px, 92vh, 920px);
  border-radius: var(--hero-radius-panel);
  overflow: hidden;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel::after {
  display: none;
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 24, 28, 0.18) 0%, rgba(20, 24, 28, 0.4) 55%, rgba(20, 24, 28, 0.5) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, 900px);
  margin: 0 auto;
  padding: clamp(20px, 3vh, 36px) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eastate .heading-title {
  margin-bottom: clamp(24px, 3.5vh, 36px);
  width: 100%;
}

.hero-eastate .heading-title .title {
  margin: 0 0 20px;
  color: #fff !important;
  font-size: clamp(3rem, 5.5vw + 1rem, 5.5rem);
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: -0.035em;
  line-height: 1.06;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  margin: 0 auto;
  max-width: min(720px, 95%);
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  font-weight: 400;
  text-transform: none;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.hero-search-wrap {
  width: min(92%, 920px);
  max-width: 100%;
  margin: 0 auto;
}

.hero-search-card {
  width: 100%;
  text-align: left;
}

/* Tabs — Eastate style, your For sale / For rent */
.hero-tabs {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-tab {
  appearance: none;
  border: 0;
  margin: 0;
  min-width: 96px;
  padding: 12px 26px;
  background: rgba(55, 58, 62, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0;
  line-height: 1.2;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-tab:first-child {
  border-radius: 14px 0 0 0;
}

.hero-tab:last-child {
  border-radius: 0 14px 0 0;
}

.hero-tab + .hero-tab {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.14);
}

.hero-tab.is-active {
  background: #fff;
  color: #1a1a1a;
  box-shadow: none;
  font-weight: 400 !important;
}

.hero-tab:not(.is-active):hover {
  background: rgba(40, 44, 48, 0.7);
  color: #fff;
}

.hero-search-form {
  width: 100%;
  margin: 0;
}

.hero-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.3fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 0 28px 28px 28px;
  padding: 16px 14px 16px 26px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.14);
  text-align: left;
  min-height: 82px;
}

.hero-field {
  position: relative;
  padding: 0 22px 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-field:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: #e8eaee;
}

/* Labels — readable, not tiny */
.hero-field label {
  display: block;
  margin: 0 0 6px;
  color: #1f2937;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0;
  line-height: 1.2;
}

/* Reset theme form input styles inside hero search */
.hero-search-form .hero-field select,
.hero-search-form .hero-field input,
.hero-search-form .hero-price-range input,
.hero-search-form input[type="text"],
.hero-search-form input[type="number"],
.hero-search-form select {
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.3 !important;
  color: #4b5563 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  appearance: none !important;
  overflow: visible !important;
}

.hero-search-form .hero-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239ca3af' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 2px center !important;
  background-color: transparent !important;
  padding-right: 18px !important;
}

/* Hint text — intentionally small */
.hero-search-form .hero-field input::placeholder,
.hero-search-form .hero-price-range input::placeholder,
.hero-search-form input[type="text"]::placeholder,
.hero-search-form input[type="number"]::placeholder {
  color: #9ca3af !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 12px !important;
  opacity: 1 !important;
  line-height: 1.3 !important;
}

.hero-price-range {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.hero-price-sep {
  color: #9ca3af;
  font-weight: 400;
  flex-shrink: 0;
  font-size: 12px !important;
}

.hero-price-range input {
  min-width: 0 !important;
  flex: 1;
}

.hero-price-range input::-webkit-outer-spin-button,
.hero-price-range input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hero-price-range input[type="number"] {
  -moz-appearance: textfield;
}

/* Search button — gold like Contact us */
.hero-search-btn {
  appearance: none;
  border: 0;
  margin: 0 0 0 10px;
  padding: 0 26px !important;
  height: 46px !important;
  min-height: 46px !important;
  border-radius: 999px !important;
  background: var(--brand-gold) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: center;
  line-height: 1 !important;
  transition: background 0.2s ease;
}

.hero-search-btn:hover {
  background: var(--brand-gold-hover) !important;
  transform: none;
}

/* Popular Search — larger, clearer chips */
.hero-popular {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 20px;
  padding: 0 4px;
}

.hero-popular-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  position: relative;
  padding-right: 16px;
}

.hero-popular-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-popular-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  line-height: 1.2;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, color 0.25s ease;
}

.hero-popular-tag:hover {
  background: #fff;
  border-color: #fff;
  color: #1a1a1a !important;
  transform: translateY(-1px);
}

/* Large desktops: keep same proportions, don't grow endlessly */
@media (min-width: 1400px) {
  :root {
    --hero-search-w: min(72%, 760px);
    --hero-side: 40px;
  }

  .hero-panel {
    height: clamp(720px, 86vh, 900px);
    min-height: clamp(720px, 86vh, 900px);
  }
}

/* Laptop / mid screens */
@media (max-width: 1200px) {
  :root {
    --hero-search-w: min(84%, 720px);
  }
}

/* Tablet: keep row search a bit longer, then stack */
@media (max-width: 991px) {
  :root {
    --hero-search-w: min(94%, 640px);
    --hero-side: 14px;
    --nav-float-side: 15px;
  }

  .hero-panel {
    height: auto;
    min-height: clamp(520px, 70vh, 640px);
    border-radius: 16px;
  }

  .hero-content {
    width: min(94%, 640px);
    padding: 32px 0 28px;
  }

  .hero-search-bar {
    grid-template-columns: 1fr;
    border-radius: 0 18px 18px 18px;
    padding: 16px;
    gap: 12px;
    min-height: 0;
  }

  .hero-tabs {
    width: auto;
    display: inline-flex;
  }

  .hero-tab {
    flex: 0 1 auto;
    min-width: 0;
  }

  .hero-field {
    padding: 0;
  }

  .hero-field:not(:last-of-type)::after {
    display: none;
  }

  .hero-field + .hero-field {
    border-top: 1px solid #e8eaee;
    padding-top: 12px;
  }

  .hero-search-btn {
    width: 100%;
    margin-left: 0;
  }

  .hero-popular {
    justify-content: flex-start;
  }

  .hero-popular-label::after {
    display: none;
  }
}

@media (max-width: 575px) {
  :root {
    --hero-side: 10px;
    --hero-search-w: 100%;
  }

  .hero-panel {
    min-height: 420px;
  }

  .hero-eastate .heading-title .title {
    font-size: clamp(2.4rem, 8.5vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-content {
    width: calc(100% - 16px);
  }
}

/* ─────────────────────────────────────────────
   Dream home intro (before Browse by Property)
───────────────────────────────────────────── */
.dream-home-section {
  --dream-ink: #111111;
  --dream-muted: #3a3a3a;
  --dream-accent: #DAB54C;
  --dream-cta: #DAB54C;
  --dream-cta-hover: #c9a33e;
  --dream-radius: 28px;
  position: relative;
  padding: clamp(48px, 5.5vw, 80px) 0 clamp(48px, 5.5vw, 72px);
  overflow: hidden;
  background: #ffffff;
  font-family: "Manrope", system-ui, sans-serif;
}

.dream-home-section::after {
  display: none;
}

body.home-hero-redesign .main-content {
  background: #ffffff;
}

.dream-home-inner {
  position: relative;
  z-index: 1;
}

.dream-home-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.dream-home-left {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.5vw, 44px);
  animation: dreamRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dream-home-title {
  margin: 0;
  color: var(--dream-ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.75rem, 4.8vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12em;
}

.dream-home-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.22em 0.3em;
}

.dream-home-word {
  display: inline-block;
}

.dream-home-script {
  font-family: "Great Vibes", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 1.35em;
  letter-spacing: 0;
  line-height: 1;
  color: var(--dream-accent);
  display: inline-flex;
  align-items: center;
  transform: translateY(0.02em);
}

.dream-home-inline-pill,
.dream-home-inline-circle {
  display: inline-flex;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(20, 20, 20, 0.14);
  animation: dreamFloatIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dream-home-inline-pill {
  width: clamp(110px, 11vw, 160px);
  height: clamp(48px, 5vw, 68px);
  border-radius: 999px;
  animation-delay: 0.1s;
}

.dream-home-inline-circle {
  width: clamp(48px, 5vw, 68px);
  height: clamp(48px, 5vw, 68px);
  border-radius: 50%;
  animation-delay: 0.18s;
}

.dream-home-inline-pill img,
.dream-home-inline-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dream-home-copy {
  max-width: 460px;
}

.dream-home-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.dream-home-avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  margin-left: -12px;
  box-shadow: 0 4px 14px rgba(20, 20, 20, 0.12);
}

.dream-home-avatars img:first-child {
  margin-left: 0;
}

.dream-home-text {
  margin: 0 0 28px;
  color: var(--dream-muted);
  font-size: clamp(1.12rem, 1.45vw, 1.32rem);
  line-height: 1.72;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.dream-home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--dream-cta);
  border: 1px solid var(--dream-cta);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none !important;
  line-height: 42px;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dream-home-cta:hover {
  background: var(--dream-cta-hover);
  color: #fff !important;
  border-color: var(--dream-cta-hover);
  box-shadow: none;
}

.dream-home-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  background: #ffffff;
  animation: dreamRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.dream-home-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding-right: clamp(12px, 2.5vw, 28px);
}

.dream-home-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--dream-accent);
  background: transparent;
  color: var(--dream-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: none !important;
  animation: none !important;
}

.dream-home-nav-btn:hover,
.dream-home-nav-btn:focus {
  background: var(--dream-accent);
  border-color: var(--dream-accent);
  color: #fff;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

.dream-home-gallery {
  position: relative;
  overflow: hidden;
  margin-right: calc(-1 * clamp(8px, 3vw, 36px));
  background: #ffffff;
}

.dream-home-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(72px, 14%, 140px);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

.dream-home-track {
  display: flex;
  gap: 18px;
  transition: transform 0.32s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.dream-home-slide {
  flex: 0 0 min(88%, 680px);
  height: clamp(300px, 36vw, 440px);
  border-radius: var(--dream-radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(20, 20, 20, 0.12);
}

.dream-home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.dream-home-slide.is-active img {
  transform: scale(1.03);
}

@keyframes dreamFloatIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes dreamRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .dream-home-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .dream-home-title {
    font-size: clamp(2.5rem, 6.5vw, 3.4rem);
  }

  .dream-home-left {
    order: 2;
    gap: 26px;
  }

  .dream-home-right {
    order: 1;
  }

  .dream-home-copy {
    max-width: 100%;
  }

  .dream-home-gallery {
    margin-right: -15px;
  }

  .dream-home-slide {
    flex-basis: min(90%, 620px);
    height: clamp(250px, 52vw, 360px);
  }
}

@media (max-width: 575px) {
  .dream-home-section {
    padding: 40px 0 32px;
  }

  .dream-home-title {
    font-size: clamp(2.15rem, 8.8vw, 2.7rem);
  }

  .dream-home-text {
    font-size: 1.08rem;
  }

  .dream-home-inline-pill {
    width: 96px;
    height: 44px;
  }

  .dream-home-inline-circle {
    width: 44px;
    height: 44px;
  }

  .dream-home-nav-btn {
    width: 40px;
    height: 40px;
  }

  .dream-home-avatars img {
    width: 40px;
    height: 40px;
  }

  .dream-home-slide {
    flex-basis: 92%;
    border-radius: 22px;
  }

  .dream-home-gallery::after {
    width: 64px;
  }
}

/* ─────────────────────────────────────────────
   Browse by Property Type — modern redesign
───────────────────────────────────────────── */
body.home-hero-redesign .section-categories-modern {
  background: transparent;
  padding-top: clamp(40px, 5vw, 64px) !important;
  padding-bottom: clamp(28px, 4vw, 48px) !important;
  font-family: "Manrope", system-ui, sans-serif;
}

body.home-hero-redesign .section-categories-modern .categories-heading {
  margin-bottom: clamp(32px, 4vw, 48px) !important;
}

body.home-hero-redesign .section-categories-modern .categories-heading .title {
  margin: 0 0 12px;
  color: #111;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(2rem, 3.2vw, 2.85rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  text-transform: none !important;
}

body.home-hero-redesign .section-categories-modern .categories-heading .text-1 {
  margin: 0 auto;
  max-width: 560px;
  color: #5a5a5a !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  letter-spacing: -0.01em;
}

body.home-hero-redesign .section-categories-modern .categories-item {
  padding: 28px 18px 22px !important;
  gap: 18px !important;
  border: 1px solid #ececec !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: none !important;
  transition: background 0.1s ease, border-color 0.1s ease, color 0.1s ease !important;
  text-decoration: none !important;
}

body.home-hero-redesign .section-categories-modern .categories-item::after {
  display: none !important;
  content: none !important;
  transform: none !important;
  transition: none !important;
}

body.home-hero-redesign .section-categories-modern .categories-item .icon-box .icon,
body.home-hero-redesign .section-categories-modern .categories-item .content h5,
body.home-hero-redesign .section-categories-modern .categories-item .content p {
  transition: color 0.1s ease !important;
}

body.home-hero-redesign .section-categories-modern .categories-item .icon-box .icon {
  font-size: 56px !important;
  color: #1a1a1a !important;
  line-height: 1 !important;
}

body.home-hero-redesign .section-categories-modern .categories-item .content h5 {
  margin: 0 !important;
  color: #111 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
}

body.home-hero-redesign .section-categories-modern .categories-item .content p {
  margin: 6px 0 0 !important;
  color: #7a7a7a !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}

body.home-hero-redesign .section-categories-modern .categories-item:hover,
body.home-hero-redesign .section-categories-modern .categories-item:focus,
body.home-hero-redesign .section-categories-modern .categories-item.active {
  background: #111 !important;
  border-color: #111 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.home-hero-redesign .section-categories-modern .categories-item:hover .icon-box .icon,
body.home-hero-redesign .section-categories-modern .categories-item:focus .icon-box .icon,
body.home-hero-redesign .section-categories-modern .categories-item.active .icon-box .icon {
  color: #fff !important;
}

body.home-hero-redesign .section-categories-modern .categories-item:hover .content h5,
body.home-hero-redesign .section-categories-modern .categories-item:focus .content h5,
body.home-hero-redesign .section-categories-modern .categories-item.active .content h5 {
  color: #fff !important;
}

body.home-hero-redesign .section-categories-modern .categories-item:hover .content p,
body.home-hero-redesign .section-categories-modern .categories-item:focus .content p,
body.home-hero-redesign .section-categories-modern .categories-item.active .content p {
  color: rgba(255, 255, 255, 0.72) !important;
}

@media (max-width: 575px) {
  body.home-hero-redesign .section-categories-modern .categories-item {
    padding: 22px 14px 18px !important;
    border-radius: 18px !important;
  }

  body.home-hero-redesign .section-categories-modern .categories-item .icon-box .icon {
    font-size: 46px !important;
  }
}

/* ─────────────────────────────────────────────
   Today’s Luxury Listings — overlay cards
───────────────────────────────────────────── */
body.home-hero-redesign .section-listing-modern {
  background: transparent;
  padding-top: clamp(40px, 5vw, 64px) !important;
  padding-bottom: clamp(48px, 6vw, 80px) !important;
  font-family: "Manrope", system-ui, sans-serif;
}

body.home-hero-redesign .section-listing-modern .listing-heading {
  margin-bottom: clamp(36px, 4.5vw, 52px) !important;
}

body.home-hero-redesign .section-listing-modern .listing-heading .title {
  margin: 0 0 12px;
  color: #111 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(2.05rem, 3.3vw, 2.95rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  text-transform: none !important;
}

body.home-hero-redesign .section-listing-modern .listing-heading .text-1 {
  margin: 0 auto;
  max-width: 520px;
  color: #666 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(1.05rem, 1.35vw, 1.18rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
}

body.home-hero-redesign .section-listing-modern .lux-card {
  position: relative;
  display: block;
  height: clamp(440px, 48vw, 540px);
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none !important;
  background: #151515;
  isolation: isolate;
}

body.home-hero-redesign .section-listing-modern .lux-card-media {
  position: absolute;
  inset: 0;
}

body.home-hero-redesign .section-listing-modern .lux-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-hero-redesign .section-listing-modern .lux-card-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.62) 62%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 1;
}

body.home-hero-redesign .section-listing-modern .lux-card:hover .lux-card-media img {
  transform: scale(1.05);
}

body.home-hero-redesign .section-listing-modern .lux-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 36px 26px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.home-hero-redesign .section-listing-modern .lux-card-title {
  margin: 0 0 10px;
  color: #fff !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.03em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

body.home-hero-redesign .section-listing-modern .lux-card-price {
  display: inline-block;
  margin: 0 0 14px;
  color: #fff !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(1.25rem, 1.75vw, 1.55rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

body.home-hero-redesign .section-listing-modern .lux-card-meta {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(1.02rem, 1.25vw, 1.15rem) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

body.home-hero-redesign .section-listing-modern .lux-card-location {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem) !important;
  font-weight: 500 !important;
  line-height: 1.35;
  min-width: 0;
}

body.home-hero-redesign .section-listing-modern .lux-card-location i {
  flex-shrink: 0;
  font-size: 16px;
  color: #fff;
}

body.home-hero-redesign .section-listing-modern .lux-card-location span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 991px) {
  body.home-hero-redesign .section-listing-modern .lux-card {
    height: clamp(400px, 60vw, 480px);
  }
}

@media (max-width: 767px) {
  body.home-hero-redesign .section-listing-modern .lux-card {
    height: 420px;
    border-radius: 22px;
  }

  body.home-hero-redesign .section-listing-modern .lux-card-overlay {
    padding: 28px 20px 22px;
  }

  body.home-hero-redesign .section-listing-modern .lux-card-title {
    font-size: 1.35rem !important;
  }

  body.home-hero-redesign .section-listing-modern .lux-card-price {
    font-size: 1.25rem !important;
  }

  body.home-hero-redesign .section-listing-modern .lux-card-meta {
    font-size: 1.05rem !important;
  }

  body.home-hero-redesign .section-listing-modern .lux-card-location {
    font-size: 1rem !important;
  }
}


/* ─────────────────────────────────────────────
   Discover how we can help — full-width slide reveal
───────────────────────────────────────────── */
body.home-hero-redesign .section-help-hscroll {
  background: transparent;
  padding: 0;
  font-family: "Manrope", system-ui, sans-serif;
  overflow: visible;
}

body.home-hero-redesign .section-help-hscroll .help-h-pin {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-float-top) + var(--nav-height) + 8px);
  box-sizing: border-box;
}

body.home-hero-redesign .section-help-hscroll .help-h-intro {
  flex: 0 0 auto;
  padding: 0 var(--hero-side) 18px;
  text-align: center;
}

body.home-hero-redesign .section-help-hscroll .help-h-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 12px;
  border: 1px solid var(--hero-line);
  border-radius: 999px;
  color: #555;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: #fff;
}

body.home-hero-redesign .section-help-hscroll .help-h-intro .title {
  margin: 0 0 8px;
  color: var(--hero-ink) !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.04em !important;
  text-transform: none !important;
}

body.home-hero-redesign .section-help-hscroll .help-h-intro .text-1 {
  margin: 0 auto;
  max-width: 480px;
  color: var(--hero-muted) !important;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem) !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}

/* Full viewport stage — slides travel screen-wide */
body.home-hero-redesign .section-help-hscroll .help-h-stage {
  position: relative;
  flex: 1 1 auto;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  min-height: 0;
}

/* Soft white edge fades — sit above sliding cards */
body.home-hero-redesign .section-help-hscroll .help-h-stage::before,
body.home-hero-redesign .section-help-hscroll .help-h-stage::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(100px, 14vw, 200px);
  z-index: 30;
  pointer-events: none;
}

body.home-hero-redesign .section-help-hscroll .help-h-stage::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #f5f5f3 0%,
    #f5f5f3 28%,
    rgba(245, 245, 243, 0.7) 55%,
    rgba(245, 245, 243, 0) 100%
  );
}

body.home-hero-redesign .section-help-hscroll .help-h-stage::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #f5f5f3 0%,
    #f5f5f3 28%,
    rgba(245, 245, 243, 0.7) 55%,
    rgba(245, 245, 243, 0) 100%
  );
}

body.home-hero-redesign .section-help-hscroll .help-h-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px var(--hero-side) 28px;
  box-sizing: border-box;
  will-change: transform;
}

/* Card width stays constrained — only the slide moves full-width */
body.home-hero-redesign .section-help-hscroll .help-h-panel {
  width: min(1120px, 100%);
  height: min(520px, calc(100vh - 220px));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  background: #fff;
  border: 1px solid var(--hero-line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 8px 28px rgba(17, 17, 17, 0.06),
    0 28px 70px rgba(17, 17, 17, 0.1);
}

body.home-hero-redesign .section-help-hscroll .help-h-panel.is-reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

body.home-hero-redesign .section-help-hscroll .help-h-panel.is-reverse .help-h-copy {
  order: 1;
}

body.home-hero-redesign .section-help-hscroll .help-h-panel.is-reverse .help-h-media {
  order: 2;
}

body.home-hero-redesign .section-help-hscroll .help-h-media {
  position: relative;
  min-height: 100%;
  background: #161616;
  overflow: hidden;
}

body.home-hero-redesign .section-help-hscroll .help-h-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.home-hero-redesign .section-help-hscroll .help-h-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.8vw, 48px) clamp(24px, 3.4vw, 44px);
  background: #fff;
}

body.home-hero-redesign .section-help-hscroll .help-h-label {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #f6f6f6;
  color: #555;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.home-hero-redesign .section-help-hscroll .help-h-copy h3 {
  margin: 0 0 12px;
  color: var(--hero-ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.15;
  max-width: 14ch;
}

body.home-hero-redesign .section-help-hscroll .help-h-copy > p {
  margin: 0 0 24px;
  color: var(--hero-muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 500;
  line-height: 1.7;
  max-width: 38ch;
}

body.home-hero-redesign .section-help-hscroll .help-h-points {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

body.home-hero-redesign .section-help-hscroll .help-h-points li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #eeeeee;
}

body.home-hero-redesign .section-help-hscroll .help-h-points li:last-child {
  border-bottom: 1px solid #eeeeee;
}

body.home-hero-redesign .section-help-hscroll .help-h-points span {
  color: #8a8a8a;
  font-size: 0.92rem;
  font-weight: 500;
}

body.home-hero-redesign .section-help-hscroll .help-h-points strong {
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  letter-spacing: -0.015em;
}

body.home-hero-redesign .section-help-hscroll .help-h-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--brand-gold);
  background: var(--brand-gold);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
}

body.home-hero-redesign .section-help-hscroll .help-h-cta:hover {
  background: var(--brand-gold-hover);
  border-color: var(--brand-gold-hover);
  color: #fff !important;
}

body.home-hero-redesign .section-help-hscroll .help-h-footnote {
  margin: 0;
  padding: 28px var(--hero-side) 56px;
  text-align: center;
  color: #666;
  font-size: 1.02rem;
  font-weight: 500;
}

body.home-hero-redesign .section-help-hscroll .help-h-footnote a {
  color: #111 !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 991px) {
  body.home-hero-redesign .section-help-hscroll .help-h-pin {
    height: auto;
    padding-top: 24px;
  }

  body.home-hero-redesign .section-help-hscroll .help-h-stage {
    width: 100%;
    margin-left: 0;
    overflow: visible;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 var(--hero-side) 12px;
  }

  body.home-hero-redesign .section-help-hscroll .help-h-stage::before,
  body.home-hero-redesign .section-help-hscroll .help-h-stage::after {
    display: none;
  }

  body.home-hero-redesign .section-help-hscroll .help-h-slide {
    position: relative;
    inset: auto;
    height: auto;
    padding: 0;
    transform: none !important;
  }

  body.home-hero-redesign .section-help-hscroll .help-h-panel {
    height: auto;
    grid-template-columns: 1fr;
  }

  body.home-hero-redesign .section-help-hscroll .help-h-panel.is-reverse {
    grid-template-columns: 1fr;
  }

  body.home-hero-redesign .section-help-hscroll .help-h-panel.is-reverse .help-h-copy,
  body.home-hero-redesign .section-help-hscroll .help-h-panel.is-reverse .help-h-media {
    order: initial;
  }

  body.home-hero-redesign .section-help-hscroll .help-h-media {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  body.home-hero-redesign .section-help-hscroll .help-h-copy h3 {
    max-width: none;
  }
}

/* ─────────────────────────────────────────────
   Home loan calculator — premium shell
───────────────────────────────────────────── */
body.home-hero-redesign .section-loan-modern {
  background: transparent;
  padding: clamp(44px, 5.5vw, 80px) 0;
  font-family: "Manrope", system-ui, sans-serif;
}

body.home-hero-redesign .section-loan-modern .loan-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: min(560px, 70vh);
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 4px 18px rgba(17, 17, 17, 0.04),
    0 28px 70px rgba(17, 17, 17, 0.08);
}

body.home-hero-redesign .section-loan-modern .loan-visual {
  position: relative;
  min-height: 480px;
  background: #141414;
}

body.home-hero-redesign .section-loan-modern .loan-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.home-hero-redesign .section-loan-modern .loan-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
  pointer-events: none;
}

body.home-hero-redesign .section-loan-modern .loan-visual-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: clamp(22px, 2.8vw, 32px);
}

body.home-hero-redesign .section-loan-modern .loan-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.home-hero-redesign .section-loan-modern .loan-visual-overlay p {
  margin: 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

body.home-hero-redesign .section-loan-modern .loan-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.2vw, 40px) clamp(22px, 3vw, 40px);
  background: #fff;
}

body.home-hero-redesign .section-loan-modern .loan-panel-head {
  margin-bottom: 18px;
}

body.home-hero-redesign .section-loan-modern .loan-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #f6f6f6;
  color: #555;
  font-size: 12px;
  font-weight: 600;
}

body.home-hero-redesign .section-loan-modern .loan-panel-head h2 {
  margin: 0 0 8px;
  color: #111;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.35vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

body.home-hero-redesign .section-loan-modern .loan-panel-head p {
  margin: 0;
  max-width: 42ch;
  color: #666;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
}

body.home-hero-redesign .section-loan-modern .loan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 13px;
  margin-bottom: 14px;
}

body.home-hero-redesign .section-loan-modern .loan-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
}

body.home-hero-redesign .section-loan-modern .loan-field > span {
  color: #555;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

body.home-hero-redesign .section-loan-modern .loan-field input,
body.home-hero-redesign .section-loan-modern .loan-field .nice-select {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px !important;
  border: 1px solid #e7e7e7 !important;
  border-radius: 12px !important;
  background: #fafafa !important;
  color: #111 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  line-height: 1.3 !important;
}

body.home-hero-redesign .section-loan-modern .loan-field input:focus,
body.home-hero-redesign .section-loan-modern .loan-field .nice-select.open {
  border-color: #111 !important;
  background: #fff !important;
  outline: none;
}

body.home-hero-redesign .section-loan-modern .loan-field input::placeholder {
  color: #9b9b9b !important;
}

body.home-hero-redesign .section-loan-modern .loan-split {
  display: grid;
  grid-template-columns: 1fr 64px;
  gap: 8px;
}

body.home-hero-redesign .section-loan-modern .loan-split .input-percent {
  text-align: center;
  font-weight: 600 !important;
  background: #f0f0f0 !important;
}

body.home-hero-redesign .section-loan-modern .loan-field .nice-select .list {
  border-radius: 12px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

body.home-hero-redesign .section-loan-modern .loan-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 16px;
  background: #111;
  color: #fff;
}

body.home-hero-redesign .section-loan-modern .loan-result-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
  font-weight: 500;
}

body.home-hero-redesign .section-loan-modern .loan-result-value {
  display: block;
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

body.home-hero-redesign .section-loan-modern .loan-btn {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 20px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

body.home-hero-redesign .section-loan-modern .loan-btn:hover {
  background: #111;
  color: #fff;
}

body.home-hero-redesign .section-loan-modern .loan-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

body.home-hero-redesign .section-loan-modern .loan-link {
  color: #111 !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

body.home-hero-redesign .section-loan-modern .loan-reset {
  border: none;
  background: transparent;
  color: #777;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}

body.home-hero-redesign .section-loan-modern .loan-reset:hover {
  color: #111;
}

body.home-hero-redesign .section-loan-modern .loan-notes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid #efefef;
}

body.home-hero-redesign .section-loan-modern .loan-notes li {
  position: relative;
  padding-left: 14px;
  color: #777;
  font-size: 12.5px;
  font-weight: 500;
}

body.home-hero-redesign .section-loan-modern .loan-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111;
}

@media (max-width: 991px) {
  body.home-hero-redesign .section-loan-modern .loan-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.home-hero-redesign .section-loan-modern .loan-visual {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  body.home-hero-redesign .section-loan-modern .loan-grid {
    grid-template-columns: 1fr;
  }

  body.home-hero-redesign .section-loan-modern .loan-result {
    flex-direction: column;
    align-items: stretch;
  }

  body.home-hero-redesign .section-loan-modern .loan-btn {
    width: 100%;
  }
}

/* Dark theme band: Property Type → Neighborhoods */
body.home-hero-redesign .home-theme-band {
  --band-bg: #0e1110;
  --band-ink: #f5f5f5;
  --band-muted: rgba(255, 255, 255, 0.62);
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 55% at 12% 18%, rgba(255, 255, 255, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 70% 50% at 88% 72%, rgba(255, 255, 255, 0.05) 0%, transparent 48%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(180, 200, 195, 0.06) 0%, transparent 55%),
    linear-gradient(165deg, #121615 0%, #0c0f0e 42%, #101413 100%);
  overflow: hidden;
}

body.home-hero-redesign .home-theme-band::before {
  content: "";
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 30% 40%, rgba(255, 255, 255, 0.045) 0%, transparent 70%),
    radial-gradient(ellipse 45% 30% at 70% 55%, rgba(255, 255, 255, 0.035) 0%, transparent 70%);
  filter: blur(28px);
  opacity: 0.9;
}

body.home-hero-redesign .home-theme-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

body.home-hero-redesign .home-theme-band > * {
  position: relative;
  z-index: 1;
}

body.home-hero-redesign .home-theme-band .section-help-hscroll,
body.home-hero-redesign .home-theme-band .section-loan-modern,
body.home-hero-redesign .home-theme-band .section-neighborhoods,
body.home-hero-redesign .home-theme-band .section-ptype-browse,
body.home-hero-redesign .home-theme-band .section-categories-modern,
body.home-hero-redesign .home-theme-band .section-listing-modern {
  background: transparent !important;
}

body.home-hero-redesign .home-theme-band .section-categories-modern .categories-heading .title,
body.home-hero-redesign .home-theme-band .section-listing-modern .listing-heading .title,
body.home-hero-redesign .home-theme-band .section-help-hscroll .help-h-intro .title,
body.home-hero-redesign .home-theme-band .section-neighborhoods .heading-section .title {
  color: var(--band-ink) !important;
}

body.home-hero-redesign .home-theme-band .section-categories-modern .categories-heading .text-1,
body.home-hero-redesign .home-theme-band .section-listing-modern .listing-heading .text-1,
body.home-hero-redesign .home-theme-band .section-help-hscroll .help-h-intro .text-1,
body.home-hero-redesign .home-theme-band .section-neighborhoods .heading-section .text-1 {
  color: var(--band-muted) !important;
}

body.home-hero-redesign .home-theme-band .section-help-hscroll .help-h-badge {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
}

body.home-hero-redesign .home-theme-band .section-help-hscroll .help-h-footnote {
  color: var(--band-muted);
}

body.home-hero-redesign .home-theme-band .section-help-hscroll .help-h-footnote a {
  color: #fff !important;
}

body.home-hero-redesign .home-theme-band .section-help-hscroll .help-h-stage::before {
  background: linear-gradient(
    90deg,
    #0e1110 0%,
    #0e1110 22%,
    rgba(14, 17, 16, 0.75) 55%,
    rgba(14, 17, 16, 0) 100%
  );
}

body.home-hero-redesign .home-theme-band .section-help-hscroll .help-h-stage::after {
  background: linear-gradient(
    270deg,
    #0e1110 0%,
    #0e1110 22%,
    rgba(14, 17, 16, 0.75) 55%,
    rgba(14, 17, 16, 0) 100%
  );
}

body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: #1a1a1a !important;
}

body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item .icon-box .icon,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item .content h5 {
  color: #f2f2f2 !important;
}

body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item .content p {
  color: rgba(255, 255, 255, 0.55) !important;
}

body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item:hover,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item:focus,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item.active {
  background: #fff !important;
  border-color: #fff !important;
}

body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item:hover .icon-box .icon,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item:focus .icon-box .icon,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item.active .icon-box .icon,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item:hover .content h5,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item:focus .content h5,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item.active .content h5 {
  color: #111 !important;
}

body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item:hover .content p,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item:focus .content p,
body.home-hero-redesign .home-theme-band .section-categories-modern .categories-item.active .content p {
  color: #666 !important;
}

body.home-hero-redesign .home-theme-band .section-loan-modern .loan-shell {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.35),
    0 30px 80px rgba(0, 0, 0, 0.35);
}

body.home-hero-redesign .home-theme-band .section-help-hscroll .help-h-panel {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.35),
    0 30px 80px rgba(0, 0, 0, 0.3);
}

/* White inset panel over dark band (Help → Loan) */
body.home-hero-redesign .home-theme-band .home-white-inset {
  margin: clamp(10px, 1.5vw, 20px) clamp(8px, 1.4vw, 16px) clamp(20px, 3vw, 36px);
  padding: clamp(36px, 4.5vw, 64px) 0 clamp(28px, 3.5vw, 48px);
  background: #ffffff;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-intro .title {
  color: #111 !important;
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-intro .text-1 {
  color: #666 !important;
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-badge {
  border-color: #e8e8e8;
  color: #555;
  background: #fff;
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-footnote {
  color: #666;
  padding-bottom: 28px;
  margin-bottom: 0;
  border-bottom: 1px solid #ececec;
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-footnote a {
  color: #111 !important;
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-stage {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-stage::before {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #ffffff 28%,
    rgba(255, 255, 255, 0.7) 55%,
    rgba(255, 255, 255, 0) 100%
  );
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-stage::after {
  background: linear-gradient(
    270deg,
    #ffffff 0%,
    #ffffff 28%,
    rgba(255, 255, 255, 0.7) 55%,
    rgba(255, 255, 255, 0) 100%
  );
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-help-hscroll .help-h-panel {
  border-color: #e6e6e6;
  box-shadow:
    0 8px 28px rgba(17, 17, 17, 0.06),
    0 24px 60px rgba(17, 17, 17, 0.1);
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-loan-modern {
  padding-top: clamp(28px, 3.5vw, 44px);
  padding-bottom: 0;
}

body.home-hero-redesign .home-theme-band .home-white-inset .section-loan-modern .loan-shell {
  border-color: #ebebeb;
  box-shadow:
    0 4px 18px rgba(17, 17, 17, 0.04),
    0 18px 48px rgba(17, 17, 17, 0.08);
}

@media (max-width: 991px) {
  body.home-hero-redesign .home-theme-band .home-white-inset {
    margin: 10px 8px 20px;
    border-radius: 14px;
    padding: 28px 0 20px;
  }
}

/* ─────────────────────────────────────────────
   Explore neighborhoods — modern grid
───────────────────────────────────────────── */
body.home-hero-redesign .section-neighborhoods-modern {
  padding: clamp(56px, 7vw, 96px) 0 !important;
  font-family: "Manrope", system-ui, sans-serif;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-heading {
  margin-bottom: clamp(28px, 4vw, 44px);
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-heading h2 {
  margin: 0 0 12px;
  color: #f5f5f5 !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(2rem, 3.3vw, 2.9rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.12 !important;
  text-transform: none !important;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-heading p {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: clamp(1rem, 1.25vw, 1.12rem) !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-card {
  position: relative;
  grid-column: span 2;
  display: block;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none !important;
  isolation: isolate;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-card--wide {
  grid-column: span 3;
  min-height: 300px;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.2) 45%,
    rgba(0, 0, 0, 0.78) 100%
  );
  pointer-events: none;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 18px;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-city {
  color: #fff;
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-cta i {
  font-size: 12px;
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-card:hover img {
  transform: scale(1.07);
}

body.home-hero-redesign .section-neighborhoods-modern .nbh-card:hover .nbh-cta {
  background: #fff;
  border-color: #fff;
  color: #111;
}

@media (max-width: 991px) {
  body.home-hero-redesign .section-neighborhoods-modern .nbh-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  body.home-hero-redesign .section-neighborhoods-modern .nbh-card,
  body.home-hero-redesign .section-neighborhoods-modern .nbh-card--wide {
    grid-column: span 1;
    min-height: 220px;
  }
}

@media (max-width: 575px) {
  body.home-hero-redesign .section-neighborhoods-modern .nbh-grid {
    grid-template-columns: 1fr;
  }

  body.home-hero-redesign .section-neighborhoods-modern .nbh-body {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─────────────────────────────────────────────
   Browse by Property Type — dark, smooth accordion
───────────────────────────────────────────── */
body.home-hero-redesign .section-ptype-browse {
  padding: clamp(36px, 5vw, 64px) 0 clamp(28px, 4vw, 48px);
  font-family: "Manrope", system-ui, sans-serif;
  background: transparent;
}

body.home-hero-redesign .section-ptype-browse .ptype-shell {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

body.home-hero-redesign .section-ptype-browse .ptype-heading {
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

body.home-hero-redesign .section-ptype-browse .ptype-heading h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

body.home-hero-redesign .section-ptype-browse .ptype-heading p {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.6;
}

body.home-hero-redesign .section-ptype-browse .ptype-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

body.home-hero-redesign .section-ptype-browse .ptype-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(18px, 2.2vw, 26px) 0;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.home-hero-redesign .section-ptype-browse .ptype-bar:has(+ .ptype-stage) {
  border-bottom-color: transparent;
}

body.home-hero-redesign .section-ptype-browse .ptype-name {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  transition: color 0.2s ease;
}

body.home-hero-redesign .section-ptype-browse .ptype-bar.is-active .ptype-name,
body.home-hero-redesign .section-ptype-browse .ptype-bar:hover .ptype-name {
  color: #fff;
}

body.home-hero-redesign .section-ptype-browse .ptype-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--brand-gold);
  border-radius: 999px;
  color: #fff !important;
  background: var(--brand-gold);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body.home-hero-redesign .section-ptype-browse .ptype-more i {
  font-size: 12px;
  line-height: 1;
}

body.home-hero-redesign .section-ptype-browse .ptype-more:hover {
  background: var(--brand-gold-hover);
  border-color: var(--brand-gold-hover);
  color: #fff !important;
}

body.home-hero-redesign .section-ptype-browse .ptype-stage {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 0 clamp(22px, 2.8vw, 32px);
  transition: height 0.28s ease;
}

body.home-hero-redesign .section-ptype-browse .ptype-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.22s ease,
    transform 0.28s ease,
    visibility 0s linear 0.22s;
}

body.home-hero-redesign .section-ptype-browse .ptype-panel.is-active {
  position: relative;
  top: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0s linear 0s;
}

body.home-hero-redesign .section-ptype-browse .ptype-panel.is-active .ptype-card {
  animation: ptypeCardIn 0.32s ease both;
}

body.home-hero-redesign .section-ptype-browse .ptype-panel.is-active .ptype-card:nth-child(1) {
  animation-delay: 0.04s;
}

body.home-hero-redesign .section-ptype-browse .ptype-panel.is-active .ptype-card:nth-child(2) {
  animation-delay: 0.08s;
}

body.home-hero-redesign .section-ptype-browse .ptype-panel.is-active .ptype-card:nth-child(3) {
  animation-delay: 0.12s;
}

@keyframes ptypeCardIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body.home-hero-redesign .section-ptype-browse .ptype-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

body.home-hero-redesign .section-ptype-browse .ptype-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  text-decoration: none !important;
  color: inherit;
}

body.home-hero-redesign .section-ptype-browse .ptype-card-media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
}

body.home-hero-redesign .section-ptype-browse .ptype-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

body.home-hero-redesign .section-ptype-browse .ptype-card:hover .ptype-card-media img {
  transform: scale(1.04);
}

body.home-hero-redesign .section-ptype-browse .ptype-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

body.home-hero-redesign .section-ptype-browse .ptype-fav i {
  font-size: 13px;
  line-height: 1;
}

body.home-hero-redesign .section-ptype-browse .ptype-specs {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  backdrop-filter: blur(6px);
}

body.home-hero-redesign .section-ptype-browse .ptype-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-height: 64px;
  padding: 12px 2px 0;
  box-sizing: border-box;
}

body.home-hero-redesign .section-ptype-browse .ptype-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

body.home-hero-redesign .section-ptype-browse .ptype-card-top h4 {
  margin: 0;
  min-width: 0;
  color: #fff !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  line-height: 1.35 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.home-hero-redesign .section-ptype-browse .ptype-price {
  justify-self: end;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  white-space: nowrap !important;
  line-height: 1.35;
}

body.home-hero-redesign .section-ptype-browse .ptype-loc {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  min-width: 0;
  width: 100%;
}

body.home-hero-redesign .section-ptype-browse .ptype-loc i {
  margin-top: 0;
  font-size: 12px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

body.home-hero-redesign .section-ptype-browse .ptype-loc span {
  display: block;
  min-width: 0;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

body.home-hero-redesign .section-ptype-browse .ptype-empty {
  padding: 8px 0 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

body.home-hero-redesign .section-ptype-browse .ptype-empty a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 991px) {
  body.home-hero-redesign .section-ptype-browse .ptype-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.home-hero-redesign .section-ptype-browse .ptype-card-media {
    height: 180px;
  }
}

@media (max-width: 575px) {
  body.home-hero-redesign .section-ptype-browse .ptype-bar {
    flex-wrap: wrap;
  }

  body.home-hero-redesign .section-ptype-browse .ptype-more {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  body.home-hero-redesign .section-ptype-browse .ptype-grid {
    grid-template-columns: 1fr;
  }

  body.home-hero-redesign .section-ptype-browse .ptype-card-media {
    height: 200px;
  }
}

/* ─────────────────────────────────────────────
   Open Houses — editorial overlay cards
───────────────────────────────────────────── */
body.home-hero-redesign .section-open-houses {
  --oh-ink: #141414;
  --oh-soft: #5c5c5c;
  --oh-line: #e8e8e8;
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 7vw, 100px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7f5 100%);
  font-family: "Manrope", system-ui, sans-serif;
}

body.home-hero-redesign .section-open-houses .oh-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 40px);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--oh-line);
}

body.home-hero-redesign .section-open-houses .oh-heading-block {
  min-width: 0;
}

body.home-hero-redesign .section-open-houses .oh-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.home-hero-redesign .section-open-houses .oh-heading-title {
  margin: 0;
  color: var(--oh-ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

body.home-hero-redesign .section-open-houses .oh-heading-sub {
  margin: 8px 0 0;
  color: var(--oh-soft);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

body.home-hero-redesign .section-open-houses .oh-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--brand-gold);
  border-radius: 999px;
  background: transparent;
  color: var(--brand-gold) !important;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

body.home-hero-redesign .section-open-houses .oh-explore:hover {
  background: transparent;
  color: var(--brand-gold) !important;
  border-color: var(--brand-gold);
}

body.home-hero-redesign .section-open-houses .oh-explore-label,
body.home-hero-redesign .section-open-houses .oh-explore-icon {
  display: none;
}

body.home-hero-redesign .section-open-houses .oh-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  align-items: stretch;
}

body.home-hero-redesign .section-open-houses .oh-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.2;
  min-height: 380px;
  max-height: 480px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff;
  background: #1c1c1c;
  isolation: isolate;
}

body.home-hero-redesign .section-open-houses .oh-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-hero-redesign .section-open-houses .oh-card:hover .oh-card-img {
  transform: scale(1.045);
}

body.home-hero-redesign .section-open-houses .oh-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.42) 68%, rgba(0, 0, 0, 0.82) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

body.home-hero-redesign .section-open-houses .oh-card:hover .oh-card-shade {
  opacity: 0.92;
}

body.home-hero-redesign .section-open-houses .oh-card-content {
  position: absolute;
  left: 18px;
  right: 60px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-hero-redesign .section-open-houses .oh-card:hover .oh-card-content {
  transform: translateY(-4px);
}

body.home-hero-redesign .section-open-houses .oh-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.home-hero-redesign .section-open-houses .oh-status {
  color: var(--brand-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home-hero-redesign .section-open-houses .oh-type {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body.home-hero-redesign .section-open-houses .oh-type::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 10px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  vertical-align: middle;
}

body.home-hero-redesign .section-open-houses .oh-price {
  margin-top: 2px;
  color: #fff;
  font-size: clamp(1.55rem, 2.1vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

body.home-hero-redesign .section-open-houses .oh-meta {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

body.home-hero-redesign .section-open-houses .oh-address {
  margin: 4px 0 0;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.home-hero-redesign .section-open-houses .oh-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, background 0.15s ease, color 0.15s ease;
}

body.home-hero-redesign .section-open-houses .oh-card:hover .oh-arrow {
  background: var(--brand-gold);
  color: #fff;
  transform: translateX(3px);
}

body.home-hero-redesign .section-open-houses .oh-empty {
  grid-column: 1 / -1;
  padding: 56px 16px;
  text-align: center;
  color: #777;
  background: #fff;
  border: 1px solid var(--oh-line);
  border-radius: 14px;
}

@media (max-width: 1199px) {
  body.home-hero-redesign .section-open-houses .oh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  body.home-hero-redesign .section-open-houses .oh-card {
    min-height: 360px;
    max-height: none;
  }
}

@media (max-width: 767px) {
  body.home-hero-redesign .section-open-houses .oh-top {
    flex-direction: column;
    align-items: flex-start;
  }

  body.home-hero-redesign .section-open-houses .oh-grid {
    grid-template-columns: 1fr;
  }

  body.home-hero-redesign .section-open-houses .oh-card {
    aspect-ratio: 4 / 5;
    min-height: 360px;
  }
}

/* ─────────────────────────────────────────────
   Insight & Opinion — editorial modern
───────────────────────────────────────────── */
body.home-hero-redesign .section-insight-modern {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #fff;
  font-family: "Manrope", system-ui, sans-serif;
}

body.home-hero-redesign .section-insight-modern .insight-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 4vw, 44px);
  padding-bottom: 22px;
  border-bottom: 1px solid #e8e8e8;
}

body.home-hero-redesign .section-insight-modern .insight-heading-block {
  max-width: 560px;
}

body.home-hero-redesign .section-insight-modern .insight-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body.home-hero-redesign .section-insight-modern .insight-heading-title {
  margin: 0;
  color: #141414;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

body.home-hero-redesign .section-insight-modern .insight-heading-sub {
  margin: 10px 0 0;
  color: #666;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.5;
}

body.home-hero-redesign .section-insight-modern .insight-view-all {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--brand-gold);
  border-radius: 999px;
  color: var(--brand-gold) !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none !important;
}

body.home-hero-redesign .section-insight-modern .insight-view-all:hover {
  background: transparent;
  color: var(--brand-gold) !important;
}

body.home-hero-redesign .section-insight-modern .insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(28px, 3.5vw, 48px);
  align-items: stretch;
}

body.home-hero-redesign .section-insight-modern .insight-feature {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}

body.home-hero-redesign .section-insight-modern .insight-feature-media {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
  aspect-ratio: 16 / 11;
  flex: 1 1 auto;
}

body.home-hero-redesign .section-insight-modern .insight-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-hero-redesign .section-insight-modern .insight-feature:hover .insight-feature-media img {
  transform: scale(1.04);
}

body.home-hero-redesign .section-insight-modern .insight-feature-copy {
  padding-top: 22px;
  flex-shrink: 0;
}

body.home-hero-redesign .section-insight-modern .insight-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: #888;
  font-size: 13px;
  font-weight: 400;
}

body.home-hero-redesign .section-insight-modern .insight-meta span:first-child {
  color: var(--brand-gold);
}

body.home-hero-redesign .section-insight-modern .insight-feature-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

body.home-hero-redesign .section-insight-modern .insight-feature-copy h3 a {
  color: #141414 !important;
  text-decoration: none !important;
}

body.home-hero-redesign .section-insight-modern .insight-feature-copy h3 a:hover {
  color: #141414 !important;
}

body.home-hero-redesign .section-insight-modern .insight-feature-copy > p {
  margin: 0 0 18px;
  max-width: 48ch;
  color: #666;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.6;
}

body.home-hero-redesign .section-insight-modern .insight-link {
  display: inline-flex;
  align-items: center;
  color: #141414 !important;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(20, 20, 20, 0.28);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

body.home-hero-redesign .section-insight-modern .insight-link:hover {
  color: var(--brand-gold) !important;
  border-bottom-color: var(--brand-gold);
}

body.home-hero-redesign .section-insight-modern .insight-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  height: 100%;
  align-self: stretch;
}

body.home-hero-redesign .section-insight-modern .insight-item {
  flex: 1 1 0;
  display: grid;
  grid-template-columns: minmax(160px, 44%) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  border-top: 1px solid #e8e8e8;
}

body.home-hero-redesign .section-insight-modern .insight-item:first-child {
  padding-top: 0;
  border-top: 0;
  padding-bottom: 18px;
}

body.home-hero-redesign .section-insight-modern .insight-item:last-child {
  padding-top: 18px;
  padding-bottom: 0;
  border-bottom: 0;
}

body.home-hero-redesign .section-insight-modern .insight-item-media {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
  height: 100%;
  min-height: 190px;
  aspect-ratio: auto;
}

body.home-hero-redesign .section-insight-modern .insight-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-hero-redesign .section-insight-modern .insight-item:hover .insight-item-media img {
  transform: scale(1.05);
}

body.home-hero-redesign .section-insight-modern .insight-item-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 4px 0;
}

body.home-hero-redesign .section-insight-modern .insight-item-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

body.home-hero-redesign .section-insight-modern .insight-item-copy h3 a {
  color: #141414 !important;
  text-decoration: none !important;
}

body.home-hero-redesign .section-insight-modern .insight-item-copy .insight-link {
  font-size: 13px;
  margin-top: auto;
}

@media (max-width: 991px) {
  body.home-hero-redesign .section-insight-modern .insight-top {
    flex-direction: column;
    align-items: flex-start;
  }

  body.home-hero-redesign .section-insight-modern .insight-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  body.home-hero-redesign .section-insight-modern .insight-stack {
    border-top: 1px solid #e8e8e8;
    padding-top: 8px;
    height: auto;
  }

  body.home-hero-redesign .section-insight-modern .insight-item {
    flex: none;
    min-height: 150px;
  }

  body.home-hero-redesign .section-insight-modern .insight-item:first-child {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  body.home-hero-redesign .section-insight-modern .insight-item-media {
    min-height: 150px;
  }
}

@media (max-width: 640px) {
  body.home-hero-redesign .section-insight-modern .insight-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    min-height: 120px;
  }

  body.home-hero-redesign .section-insight-modern .insight-item-media {
    min-height: 120px;
  }

  body.home-hero-redesign .section-insight-modern .insight-item-copy h3 {
    font-size: 1rem;
  }
}

/* ─────────────────────────────────────────────
   Partners / Let’s Work Together — clean theme
───────────────────────────────────────────── */
body.home-hero-redesign .section-partners-theme {
  font-family: "Manrope", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  position: relative;
  z-index: 1;
}

body.home-hero-redesign .section-partners-theme .wg-partner {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: clamp(64px, 8vw, 100px) 0 clamp(220px, 28vw, 300px) !important;
  background: #181d1b !important;
}

body.home-hero-redesign .section-partners-theme .wg-partner::before {
  display: none !important;
  content: none !important;
}

body.home-hero-redesign .section-partners-theme .wg-partner > .tf-container {
  position: relative;
  z-index: 1;
}

body.home-hero-redesign .section-partners-theme .partners-theme-heading {
  margin: 0 auto clamp(36px, 5vw, 52px);
  max-width: 640px;
}

body.home-hero-redesign .section-partners-theme .partners-theme-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-gold);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body.home-hero-redesign .section-partners-theme .partners-theme-kicker.is-dark {
  color: var(--brand-gold);
}

body.home-hero-redesign .section-partners-theme .partners-theme-title {
  margin: 0 0 12px;
  color: #fff !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: clamp(2rem, 3.6vw, 2.9rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: none;
}

body.home-hero-redesign .section-partners-theme .partners-theme-sub {
  margin: 0 auto;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.55;
}

/* plain logos — no cards / chips */
body.home-hero-redesign .section-partners-theme .partner-item {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 8px 4px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  overflow: visible;
  transition: opacity 0.2s ease;
}

body.home-hero-redesign .section-partners-theme .partner-item::before,
body.home-hero-redesign .section-partners-theme .partner-item::after {
  display: none !important;
  content: none !important;
}

body.home-hero-redesign .section-partners-theme .partner-item:hover {
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  opacity: 1;
}

body.home-hero-redesign .section-partners-theme .partner-item svg {
  width: min(100%, 126px);
  height: auto;
  max-height: 64px;
  opacity: 0.85;
  filter: none !important;
  transition: opacity 0.2s ease;
}

body.home-hero-redesign .section-partners-theme .partner-item:hover svg {
  opacity: 1;
  filter: none !important;
  transform: none !important;
}

body.home-hero-redesign .section-partners-theme .brand-slide {
  position: relative;
  padding: 4px 0;
}

body.home-hero-redesign .section-partners-theme .brand-slide::before,
body.home-hero-redesign .section-partners-theme .brand-slide::after {
  display: none !important;
}

/* Appraisal panel */
body.home-hero-redesign .section-partners-theme .wg-appraisal {
  position: relative;
  z-index: 5;
  margin-top: -168px !important;
  padding: 0 0 clamp(28px, 4vw, 48px) !important;
  background: transparent !important;
}

body.home-hero-redesign .section-partners-theme .wg-appraisal .content {
  position: relative;
  z-index: 5;
  overflow: visible !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  border: 1px solid #e8e8e8;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px) !important;
}

body.home-hero-redesign .section-partners-theme .wg-appraisal .content::after {
  opacity: 0.35;
  filter: grayscale(0.1);
}

body.home-hero-redesign .section-partners-theme .partners-appraisal-copy {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin-bottom: 22px;
}

body.home-hero-redesign .section-partners-theme .partners-appraisal-title {
  margin: 0 0 12px;
  color: #141414;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

body.home-hero-redesign .section-partners-theme .partners-appraisal-sub {
  margin: 0;
  color: #666;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

body.home-hero-redesign .section-partners-theme .partners-appraisal-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--brand-gold);
  color: #fff !important;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  box-shadow: none;
  transition: background 0.2s ease;
}

body.home-hero-redesign .section-partners-theme .partners-appraisal-cta:hover {
  background: var(--brand-gold-hover, #c9a33e);
  color: #fff !important;
  box-shadow: none;
  transform: none;
}

body.home-hero-redesign .section-partners-theme .wg-appraisal .person {
  position: absolute;
  z-index: 6;
  bottom: 0;
  right: clamp(24px, 6vw, 103px);
  pointer-events: none;
}

body.home-hero-redesign .section-partners-theme .wg-appraisal .person img {
  position: relative;
  z-index: 6;
  display: block;
  max-width: min(300px, 36vw);
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}

@media (max-width: 767px) {
  body.home-hero-redesign .section-partners-theme .wg-partner {
    padding: 56px 0 clamp(180px, 40vw, 240px) !important;
  }

  body.home-hero-redesign .section-partners-theme .partner-item {
    min-height: 64px;
  }
}

/* ─────────────────────────────────────────────
   Testimonials — vertical marquee columns
───────────────────────────────────────────── */
body.home-hero-redesign .section-testimonials-marquee {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px) clamp(72px, 9vw, 120px);
  background: #ffffff;
  font-family: "Manrope", system-ui, sans-serif;
  overflow: hidden;
}

body.home-hero-redesign .section-testimonials-marquee > .tf-container {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(12px, 2vw, 24px);
  padding-right: clamp(12px, 2vw, 24px);
}

body.home-hero-redesign .section-testimonials-marquee .tm-heading {
  margin: 0 auto clamp(24px, 3.5vw, 36px);
  max-width: 640px;
}

body.home-hero-redesign .section-testimonials-marquee .tm-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.home-hero-redesign .section-testimonials-marquee .tm-title {
  margin: 0 0 10px;
  color: #141414;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

body.home-hero-redesign .section-testimonials-marquee .tm-sub {
  margin: 0 auto;
  max-width: 46ch;
  color: #777;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.5;
}

body.home-hero-redesign .section-testimonials-marquee .tm-marquee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  height: min(540px, 64vh);
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

body.home-hero-redesign .section-testimonials-marquee .tm-col {
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 300px;
  margin: 0 auto;
  width: 100%;
}

body.home-hero-redesign .section-testimonials-marquee .tm-col-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
  animation: tm-scroll-up linear infinite;
}

/* col 1 + col 3: faster */
body.home-hero-redesign .section-testimonials-marquee .tm-col.is-slow .tm-col-track,
body.home-hero-redesign .section-testimonials-marquee .tm-col.is-fast .tm-col-track {
  animation-duration: 18s;
}

/* col 2: previous first-column speed */
body.home-hero-redesign .section-testimonials-marquee .tm-col.is-mid .tm-col-track {
  animation-duration: 26s;
}

@keyframes tm-scroll-up {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -50%, 0); }
}

body.home-hero-redesign .section-testimonials-marquee .tm-card {
  flex-shrink: 0;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 20px 18px 18px;
  box-shadow:
    0 1px 2px rgba(17, 17, 17, 0.04),
    0 10px 28px rgba(17, 17, 17, 0.05);
}

body.home-hero-redesign .section-testimonials-marquee .tm-quote {
  margin: 0 0 22px;
  color: #2f2f2f;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}

body.home-hero-redesign .section-testimonials-marquee .tm-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.home-hero-redesign .section-testimonials-marquee .tm-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #eee;
  flex-shrink: 0;
}

body.home-hero-redesign .section-testimonials-marquee .tm-author strong {
  display: block;
  color: #141414;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

body.home-hero-redesign .section-testimonials-marquee .tm-author span {
  display: block;
  margin-top: 2px;
  color: #8a8a8a;
  font-size: 0.8rem;
  font-weight: 400;
}

@media (prefers-reduced-motion: reduce) {
  body.home-hero-redesign .section-testimonials-marquee .tm-col-track {
    animation: none;
  }

  body.home-hero-redesign .section-testimonials-marquee .tm-marquee {
    height: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 991px) {
  body.home-hero-redesign .section-testimonials-marquee .tm-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: min(500px, 64vh);
  }

  body.home-hero-redesign .section-testimonials-marquee .tm-col.is-fast {
    display: none;
  }
}

@media (max-width: 640px) {
  body.home-hero-redesign .section-testimonials-marquee .tm-marquee {
    grid-template-columns: 1fr;
    height: min(440px, 62vh);
  }

  body.home-hero-redesign .section-testimonials-marquee .tm-col.is-mid {
    display: none;
  }
}
