/* House type detail pages */
.house-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--color-deep);
  overflow: hidden;
}

.house-hero--video {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  background: var(--color-deep);
}

.house-hero__media--video {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: min(72vh, 680px);
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-deep);
}

.house-hero__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: var(--color-deep);
}

.house-hero__content--below {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-surface, #fff);
  color: var(--color-deep, #0d2a30);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(var(--rgb-deep), 0.06);
}

.house-hero__video-toggle {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(var(--rgb-deep), 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.house-hero__video-toggle:hover,
.house-hero__video-toggle:focus-visible {
  background: rgba(var(--rgb-deep), 0.75);
  transform: scale(1.05);
  outline: none;
}

.house-hero__video-toggle-icon {
  width: 1rem;
  height: 1rem;
}

.house-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.house-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(var(--rgb-deep), 0.96) 0%,
    rgba(var(--rgb-deep), 0.72) 38%,
    rgba(var(--rgb-deep), 0.35) 60%,
    transparent 100%
  );
}

.house-hero__content {
  position: relative;
  z-index: 2;
  padding: var(--space-xl) 0 var(--space-lg);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
  color: #e8f0f2;
}

.house-hero__content h1 {
  color: #fff;
}

.house-hero__content .lead {
  color: rgba(232, 240, 242, 0.9);
  max-width: 40rem;
}

.house-hero__eyebrow {
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(var(--rgb-deep), 0.85);
  margin-bottom: var(--space-sm);
}

/* Hero breadcrumb chips */
.house-hero__crumbs {
  margin-bottom: var(--space-sm);
}

.house-hero__crumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.house-hero__crumbs-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.house-hero__crumbs-list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-left: 0.1rem;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.45;
}

.house-hero__crumbs-list a,
.house-hero__crumbs-list span[aria-current="page"] {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.house-hero__crumbs-list a {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.house-hero__crumbs-list a:hover,
.house-hero__crumbs-list a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}

.house-hero__crumbs-list span[aria-current="page"] {
  color: var(--color-deep, #0a2e3d);
  background: var(--color-accent, #c9a227);
  border: 1px solid rgba(var(--rgb-gold), 0.35);
}

.house-hero__eyebrow a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(107, 226, 213, 0.55);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

.house-hero__eyebrow a:hover,
.house-hero__eyebrow a:focus-visible {
  color: #b8f5ee;
  text-decoration-color: #6be2d5;
}

/* Video hero — content panel below video (must follow base hero text rules) */
.house-hero__content.house-hero__content--below {
  background: var(--color-surface, #fff);
  color: var(--color-deep, #0d2a30);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(var(--rgb-deep), 0.06);
}

.house-hero__content.house-hero__content--below h1 {
  color: var(--color-deep, #0d2a30);
  margin-bottom: 0.5rem;
}

.house-hero__content.house-hero__content--below .lead {
  color: var(--color-text-muted, #3d4f54);
  max-width: 48rem;
}

.house-hero__content.house-hero__content--below .house-hero__eyebrow {
  color: var(--color-teal, #1a6b7a);
  text-shadow: none;
  margin-bottom: 0.35rem;
}

.house-hero__content.house-hero__content--below .house-hero__eyebrow a {
  color: var(--color-teal, #1a6b7a);
  text-decoration-color: rgba(26, 107, 122, 0.45);
}

.house-hero__content.house-hero__content--below .house-hero__eyebrow a:hover,
.house-hero__content.house-hero__content--below .house-hero__eyebrow a:focus-visible {
  color: var(--color-teal-light, #2d8f9e);
  text-decoration-color: var(--color-teal-light, #2d8f9e);
}

.house-hero__content.house-hero__content--below .house-hero__crumbs-list li:not(:last-child)::after {
  border-color: #9eb0b8;
  opacity: 1;
}

.house-hero__content.house-hero__content--below .house-hero__crumbs-list a {
  color: #1a6b7a;
  background: #f0f6f7;
  border: 1px solid #c5dce0;
  text-decoration: none;
  text-shadow: none;
}

.house-hero__content.house-hero__content--below .house-hero__crumbs-list a:hover,
.house-hero__content.house-hero__content--below .house-hero__crumbs-list a:focus-visible {
  color: #0a2e3d;
  background: #e2f0f2;
  border-color: #1a6b7a;
}

.house-hero__content.house-hero__content--below .house-hero__crumbs-list span[aria-current="page"] {
  color: #0a2e3d;
  background: linear-gradient(135deg, #e8c55a 0%, #c9a227 100%);
  border: 1px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.2);
}

.house-hero__content.house-hero__content--below .btn--ghost-light {
  color: var(--color-teal, #1a6b7a);
  border-color: var(--color-border);
  background: var(--color-warm-bg, #f5f2ed);
}

.house-hero__content.house-hero__content--below .btn--ghost-light:hover {
  background: rgba(26, 107, 122, 0.08);
  color: var(--color-teal-light, #2d8f9e);
}

.house-nav-models {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
}

.house-nav-models__inner {
  display: flex;
  gap: 0.25rem;
  padding: var(--space-sm) 0;
  min-width: min-content;
}

.house-nav-models a {
  flex-shrink: 0;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.house-nav-models a:hover {
  background: var(--color-warm-bg-alt);
  color: var(--color-deep);
}

.house-nav-models a[aria-current="page"] {
  background: rgba(var(--rgb-gold), 0.15);
  color: var(--color-deep);
  font-weight: 600;
}

.house-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.house-stat {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.house-stat__val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-teal-light);
}

.house-stat__label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.house-stats--with-offer .house-stat--featured {
  grid-column: span 2;
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-teal) 55%, var(--color-teal-light) 100%) !important;
  border: 1px solid rgba(var(--rgb-gold), 0.45) !important;
  box-shadow: var(--shadow-md) !important;
  color: #e8f0f2;
}

.house-stat--featured .house-stat__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f5e6b8 !important;
}

.house-stat__featured-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.house-stat__featured-size,
.house-stat__featured-price {
  flex: 1;
  min-width: 0;
}

.house-stat__featured-price {
  text-align: right;
}

.house-stat__featured-divider {
  width: 1px;
  align-self: stretch;
  min-height: 3.5rem;
  background: rgba(var(--rgb-gold), 0.35);
  flex-shrink: 0;
}

.house-stat--featured .house-stat__val {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  color: #ffffff !important;
  line-height: 1.15;
}

.house-stat--featured .house-stat__label {
  color: #c5d8de !important;
  margin-top: 0.35rem;
  line-height: 1.35;
}

.house-stat--featured .house-stat__price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #f5e6b8 !important;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.house-stat__price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}

.house-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.house-gallery__main {
  grid-row: 1 / -1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-warm-bg-alt);
}

.house-gallery__thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-warm-bg-alt);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.house-gallery__thumb.is-active,
.house-gallery__thumb:hover {
  border-color: var(--color-accent);
}

.house-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.house-gallery__main img {
  min-height: 100%;
}

/* Marketing value section (optional per model) */
.house-detail-marketing {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: linear-gradient(165deg, var(--color-warm-bg) 0%, var(--color-surface) 55%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.house-detail-marketing__header {
  max-width: 42rem;
  margin-bottom: var(--space-lg);
}

.house-detail-marketing__header .eyebrow {
  margin: 0 0 0.5rem;
  color: var(--color-teal-light);
}

.house-detail-marketing__header h2 {
  margin: 0 0 var(--space-sm);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.2;
}

.house-detail-marketing__intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-muted, var(--color-text));
}

.house-detail-marketing__journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
  counter-reset: none;
}

.house-detail-marketing__journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-sm);
}

.house-detail-marketing__journey-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.35rem;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  opacity: 0.35;
  z-index: 0;
}

.house-detail-marketing__journey-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(var(--rgb-gold), 0.15);
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.house-detail-marketing__journey-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.house-detail-marketing__journey-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-teal-light);
  margin-bottom: 0.35rem;
}

.house-detail-marketing__journey-detail {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted, var(--color-text));
}

.house-detail-marketing__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.house-detail-marketing__stat {
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
}

.house-detail-marketing__stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-teal-light);
  line-height: 1.2;
}

.house-detail-marketing__stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted, var(--color-text));
}

.house-detail-marketing__values-wrap {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.house-detail-marketing__values-head {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto var(--space-md);
}

.house-detail-marketing__values-head .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--color-teal-light);
}

.house-detail-marketing__values-title {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.25;
  color: var(--color-deep);
}

.house-detail-marketing__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.house-detail-marketing__value {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.house-detail-marketing__value:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(var(--rgb-deep), 0.1);
}

.house-detail-marketing__value--teal .value-visual {
  background: linear-gradient(160deg, rgba(26, 107, 122, 0.12) 0%, rgba(45, 212, 191, 0.08) 100%);
  color: var(--color-teal);
}

.house-detail-marketing__value--gold .value-visual {
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.14) 0%, rgba(232, 197, 90, 0.08) 100%);
  color: var(--color-cta);
}

.house-detail-marketing__value--slate .value-visual {
  background: linear-gradient(160deg, rgba(var(--rgb-deep), 0.06) 0%, rgba(var(--rgb-deep), 0.02) 100%);
  color: var(--color-deep);
}

.value-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
  padding: var(--space-md) var(--space-sm);
}

.value-visual svg {
  width: 100%;
  max-width: 5.5rem;
  height: auto;
}

/* Timeline bar graphic */
.value-visual--timeline {
  padding: var(--space-md);
}

.value-visual__timeline-bars {
  width: 100%;
  max-width: 11rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.value-visual__timeline-row {
  display: grid;
  grid-template-columns: 2.25rem 1fr auto;
  align-items: center;
  gap: 0.4rem;
}

.value-visual__timeline-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.value-visual__timeline-track {
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(var(--rgb-deep), 0.08);
  overflow: hidden;
}

.value-visual__timeline-fill {
  height: 100%;
  border-radius: inherit;
  transition: width 0.6s ease;
}

.value-visual__timeline-fill--fast {
  background: linear-gradient(90deg, var(--color-teal-light), #2dd4bf);
}

.value-visual__timeline-fill--slow {
  background: linear-gradient(90deg, #c45c3e, #e07a52);
}

.value-visual__timeline-val {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-deep);
  white-space: nowrap;
}

/* Energy ring graphic */
.value-visual--energy svg {
  max-width: 5.75rem;
}

.value-visual__ring-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  fill: var(--color-deep);
}

.value-visual__ring-sub {
  font-size: 0.4375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  fill: var(--color-text-muted);
}

/* Shipping graphic */
.value-visual--shipping svg {
  max-width: 6.5rem;
  opacity: 0.9;
}

/* Configure blocks graphic */
.value-visual__blocks {
  display: grid;
  grid-template-columns: repeat(2, 2.25rem);
  gap: 0.35rem;
}

.value-visual__block {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.35rem;
  border: 2px solid currentColor;
  opacity: 0.85;
}

.value-visual__block--a {
  background: rgba(26, 107, 122, 0.2);
}

.value-visual__block--b {
  background: rgba(201, 162, 39, 0.25);
  transform: translateY(0.15rem);
}

.value-visual__block--c {
  background: rgba(45, 212, 191, 0.2);
}

.value-visual__block--d {
  background: rgba(var(--rgb-deep), 0.08);
  border-style: dashed;
  opacity: 0.55;
}

/* Warranty shield */
.value-visual--warranty svg {
  max-width: 4.5rem;
}

.value-visual__shield-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  fill: currentColor;
}

.value-visual__shield-sub {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  fill: var(--color-text-muted);
}

/* Scale houses graphic */
.value-visual__houses {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
}

.value-visual__house {
  width: 1.75rem;
  height: auto;
  opacity: 0.55;
}

.value-visual__house--mid {
  width: 2.1rem;
  opacity: 1;
}

.value-visual__scale-dots {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-text-muted);
  opacity: 0.45;
  margin-left: 0.15rem;
  align-self: center;
}

.house-detail-marketing__value-copy {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  text-align: center;
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.house-detail-marketing__value-stat {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-deep);
}

.house-detail-marketing__value-stat span {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body, inherit);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-teal-light);
}

.house-detail-marketing__value h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.25;
  color: var(--color-deep);
}

.house-detail-marketing__value-tag {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.house-detail-marketing__value p:not(.house-detail-marketing__value-stat):not(.house-detail-marketing__value-tag) {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text);
}

/* Comparison charts */
.house-detail-marketing__charts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.house-detail-marketing__chart {
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.house-detail-marketing__chart h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.3;
  color: var(--color-teal-light);
}

.house-detail-marketing__chart-sub {
  margin: 0 0 var(--space-sm);
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-text-muted, var(--color-text));
  opacity: 0.85;
}

.house-detail-marketing__chart-bars {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.house-detail-marketing__chart-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
}

.house-detail-marketing__chart-meta strong {
  font-size: 0.8125rem;
  color: var(--color-deep);
}

.house-detail-marketing__chart-track {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(var(--rgb-deep), 0.08);
  overflow: hidden;
}

.house-detail-marketing__chart-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: rgba(var(--rgb-deep), 0.28);
  transition: width 0.35s ease;
}

.house-detail-marketing__chart-bar-fill--accent {
  background: linear-gradient(90deg, var(--color-teal), var(--color-accent));
}

/* Construction time savings calculator */
.house-detail-marketing__construction {
  margin-bottom: var(--space-lg);
}

.house-detail-marketing__construction .energy-savings-calc__inner {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.house-detail-marketing__construction .energy-savings-calc__header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto var(--space-md);
}

.house-detail-marketing__construction .energy-savings-calc__header .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--color-teal-light);
}

.house-detail-marketing__construction .energy-savings-calc__header h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.house-detail-marketing__construction .energy-savings-calc__header .lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-muted, var(--color-text));
}

.house-detail-marketing__construction .energy-savings-calc__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-warm-bg);
  border: 1px solid var(--color-border);
}

.house-detail-marketing__construction .energy-savings-calc__field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-deep);
}

.house-detail-marketing__construction .energy-savings-calc__field label strong {
  color: var(--color-teal);
}

.house-detail-marketing__construction .energy-savings-calc__field input[type="range"] {
  width: 100%;
  margin: 0.25rem 0 0.35rem;
  accent-color: var(--color-teal);
}

.house-detail-marketing__construction .energy-savings-calc__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
}

.house-detail-marketing__construction .energy-savings-calc__hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.house-detail-marketing__construction .bar-fill--energy-high {
  background: linear-gradient(90deg, #c45c3e, #e07a52);
}

.house-detail-marketing__construction .bar-fill--energy-low {
  background: linear-gradient(90deg, var(--color-teal-light), #2dd4bf);
}

.house-detail-marketing__construction .bar-fill--savings {
  background: linear-gradient(90deg, var(--color-accent), #e8c55a);
  color: var(--color-deep);
}

.house-detail-marketing__construction .bar-row--energy .bar-fill {
  font-size: 0.7rem;
  white-space: nowrap;
}

.house-detail-marketing__construction .bar-row--calc .bar-label {
  flex: 0 0 5.75rem;
}

.house-detail-marketing__construction .energy-savings-calc__monthly {
  margin-bottom: var(--space-md);
}

.house-detail-marketing__construction .energy-savings-calc__inline-val {
  flex: 0 0 5.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: right;
}

.house-detail-marketing__construction .energy-savings-calc__inline-val--polar {
  color: var(--color-teal-light);
}

.house-detail-marketing__construction .energy-savings-calc__inline-val--save {
  color: var(--color-cta);
}

.house-detail-marketing__construction .energy-savings-calc__totals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.house-detail-marketing__construction .energy-savings-stat {
  padding: var(--space-sm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #fff;
  text-align: center;
}

.house-detail-marketing__construction .energy-savings-stat__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-bottom: 0.35rem;
}

.house-detail-marketing__construction .energy-savings-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--color-deep);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.house-detail-marketing__construction .energy-savings-stat__hint {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

.house-detail-marketing__construction .energy-savings-stat--conv {
  border-top: 3px solid #c45c3e;
}

.house-detail-marketing__construction .energy-savings-stat--pm {
  border-top: 3px solid var(--color-teal-light);
}

.house-detail-marketing__construction .energy-savings-stat--save {
  border-top: 3px solid var(--color-accent);
}

.house-detail-marketing__construction .energy-savings-stat--compound {
  border-top: 3px solid var(--color-cta);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, #fff 55%);
}

.house-detail-marketing__construction .energy-savings-stat--compound .energy-savings-stat__value {
  color: var(--color-cta);
}

.house-detail-marketing__construction .energy-savings-calc__disclaimer {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: center;
}

/* Order process — reserve, payment milestones, delivery */
.house-detail-order-process {
  margin-top: var(--space-lg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(26, 107, 122, 0.06) 0%, var(--color-surface) 45%, rgba(201, 162, 39, 0.05) 100%);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.house-detail-order-process__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto var(--space-lg);
}

.house-detail-order-process__head .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--color-teal-light);
}

.house-detail-order-process__head h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  line-height: 1.2;
  color: var(--color-deep);
}

.house-detail-order-process__intro {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Payment milestone bar */
.house-order-pay {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
}

.house-order-pay__title {
  margin: 0 0 var(--space-sm);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  text-align: center;
}

.house-order-pay__track {
  display: flex;
  height: 3.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(var(--rgb-deep), 0.08);
}

.house-order-pay__seg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  border-right: 2px solid rgba(255, 255, 255, 0.65);
  transition: flex 0.3s ease;
}

.house-order-pay__seg:last-child {
  border-right: none;
}

.house-order-pay__seg--deposit {
  background: linear-gradient(180deg, #5ec4b8 0%, var(--color-teal-light) 100%);
}

.house-order-pay__seg--midway {
  background: linear-gradient(180deg, #e8c55a 0%, var(--color-accent) 100%);
}

.house-order-pay__seg--balance {
  background: linear-gradient(180deg, #3d9aaa 0%, var(--color-teal) 100%);
}

.house-order-pay__pct {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.house-order-pay__labels {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.house-order-pay__label {
  text-align: center;
  min-width: 0;
  padding: 0 0.15rem;
}

.house-order-pay__label strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-deep);
}

.house-order-pay__label span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.625rem;
  line-height: 1.3;
  color: var(--color-text-muted);
}

.house-order-pay__total {
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.house-order-pay__total span {
  font-weight: 700;
  color: var(--color-teal);
}

/* Process flow steps */
.house-order-flow-wrap {
  position: relative;
  margin-bottom: var(--space-lg);
}

.house-order-flow__line {
  display: none;
}

.house-order-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.house-order-flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-sm);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.house-order-flow__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(var(--rgb-deep), 0.08);
}

.house-order-flow__icon-wrap {
  position: relative;
  width: 4.75rem;
  height: 4.75rem;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(26, 107, 122, 0.1), rgba(255, 255, 255, 0.9));
  border: 2px solid rgba(26, 107, 122, 0.25);
  color: var(--color-teal);
}

.house-order-flow__icon-wrap svg {
  width: 2.25rem;
  height: 2.25rem;
}

.house-order-flow__num {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--color-cta);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(var(--rgb-gold), 0.35);
}

.house-order-flow__copy {
  width: 100%;
}

.house-order-flow__badge {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-deep);
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.house-order-flow__step:nth-child(2) .house-order-flow__badge,
.house-order-flow__step:nth-child(4) .house-order-flow__badge,
.house-order-flow__step:nth-child(5) .house-order-flow__badge {
  background: rgba(26, 107, 122, 0.12);
  border-color: rgba(26, 107, 122, 0.28);
  color: var(--color-teal);
}

.house-order-flow__copy h4 {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  line-height: 1.25;
  color: var(--color-deep);
}

.house-order-flow__short {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-teal-light);
}

.house-order-flow__detail {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

/* Delivery geography card */
.house-order-delivery {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: var(--color-warm-bg);
  border: 1px solid var(--color-border);
}

.house-order-delivery__graphic {
  width: 7.5rem;
  color: var(--color-teal);
  opacity: 0.85;
}

.house-order-delivery__graphic svg {
  width: 100%;
  height: auto;
}

.house-order-delivery__copy h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-deep);
}

.house-order-delivery__copy > p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.house-order-delivery__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 0.75rem;
}

.house-order-delivery__points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--color-text);
}

.house-order-delivery__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-accent);
}

.house-detail-order-process__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.house-detail-order-process__disclaimer {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text-muted);
}

/* Investment calculator */
.house-detail-marketing__invest {
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.house-detail-marketing__invest-head {
  max-width: 40rem;
  margin-bottom: var(--space-md);
}

.house-detail-marketing__invest-head .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--color-teal-light);
}

.house-detail-marketing__invest-head h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.house-detail-marketing__invest-intro {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-muted, var(--color-text));
}

.house-detail-marketing__invest-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--space-lg);
  align-items: start;
}

.house-detail-marketing__fieldset {
  margin: 0 0 var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-warm-bg);
}

.house-detail-marketing__fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal-light);
}

.house-detail-marketing__field {
  display: block;
  margin-bottom: var(--space-sm);
}

.house-detail-marketing__field:last-child {
  margin-bottom: 0;
}

.house-detail-marketing__field > span:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
}

.house-detail-marketing__field strong {
  font-weight: 700;
  color: var(--color-teal-light);
}

.house-detail-marketing__field input[type="number"],
.house-detail-marketing__field select {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font: inherit;
  background: var(--color-surface);
}

.house-detail-marketing__field input[type="range"] {
  width: 100%;
  margin: 0.15rem 0;
  accent-color: var(--color-accent);
}

.house-detail-marketing__range-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.house-detail-marketing__range-row input[type="range"] {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.house-detail-marketing__pct-input-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 5.25rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.house-detail-marketing__pct-input-wrap input[type="number"] {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: var(--color-deep);
  text-align: right;
  -moz-appearance: textfield;
}

.house-detail-marketing__pct-input-wrap input[type="number"]::-webkit-outer-spin-button,
.house-detail-marketing__pct-input-wrap input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.house-detail-marketing__pct-suffix {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-left: 0.15rem;
}

.house-detail-marketing__hint {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  color: var(--color-text-muted, var(--color-text));
  opacity: 0.8;
}

.house-detail-marketing__result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.house-detail-marketing__result-card {
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-warm-bg);
}

.house-detail-marketing__result-card > span:first-child {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted, var(--color-text));
  margin-bottom: 0.2rem;
}

.house-detail-marketing__result-card strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-deep);
  line-height: 1.2;
}

.house-detail-marketing__result-card--highlight {
  border-color: var(--color-accent);
  background: rgba(var(--rgb-gold), 0.12);
}

.house-detail-marketing__result-card--highlight.is-positive strong,
.house-detail-marketing__result-card strong.is-positive,
strong[data-inv-out-coc].is-positive {
  color: #1a7a52;
}

.house-detail-marketing__result-card--highlight.is-negative strong,
.house-detail-marketing__result-card strong.is-negative,
strong[data-inv-out-coc].is-negative {
  color: #b54a32;
}

.house-detail-marketing__invest-chart h4 {
  margin: 0 0 var(--space-sm);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-teal-light);
}

.house-detail-marketing__inv-bar-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.house-detail-marketing__inv-track {
  height: 1.75rem;
  border-radius: var(--radius);
  background: rgba(var(--rgb-deep), 0.06);
  overflow: hidden;
}

.house-detail-marketing__inv-bar {
  height: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.5rem;
  border-radius: inherit;
  transition: width 0.35s ease;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.house-detail-marketing__inv-bar--rent {
  background: linear-gradient(90deg, #2d8a6e, #3cb88a);
}

.house-detail-marketing__inv-bar--mortgage {
  background: linear-gradient(90deg, #4a6278, #6a849c);
}

.house-detail-marketing__inv-bar--ops {
  background: linear-gradient(90deg, #8a6d4a, #a88962);
}

.house-detail-marketing__inv-bar--net {
  background: linear-gradient(90deg, #1a7a52, #2ea86e);
}

.house-detail-marketing__inv-bar--net.is-negative {
  background: linear-gradient(90deg, #a84832, #c45c3e);
}

.house-detail-marketing__disclaimer {
  margin: var(--space-md) 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--color-text-muted, var(--color-text));
  opacity: 0.85;
}

/* Turn-key special offer banner */
.house-offer {
  margin: var(--space-lg) 0;
}

.house-offer__inner {
  display: grid;
  grid-template-columns: 1.2fr minmax(220px, 0.8fr);
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-teal) 55%, var(--color-teal-light) 100%);
  color: #e8f0f2;
  box-shadow: var(--shadow-lg);
}

.house-offer__eyebrow {
  color: var(--color-accent) !important;
  margin-bottom: 0.35rem;
}

.house-offer__headline {
  margin: 0 0 var(--space-sm);
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.house-offer__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 var(--space-sm);
  padding: 0;
}

.house-offer__pill {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(var(--rgb-gold), 0.18);
  border: 1px solid rgba(var(--rgb-gold), 0.45);
  color: #f5e6b8;
}

.house-offer__urgency {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(232, 240, 242, 0.92);
}

.house-offer__left {
  color: var(--color-accent);
}

.house-offer__price-block {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(var(--rgb-gold), 0.35);
}

.house-offer__price-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(232, 240, 242, 0.8);
}

.house-offer__price {
  margin: 0.15rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.1;
}

.house-offer__price-note {
  margin: 0 0 var(--space-sm);
  font-size: 0.8125rem;
  color: rgba(232, 240, 242, 0.85);
}

.house-offer__pricing-extra {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(232, 240, 242, 0.92);
}

.house-offer__pricing-extra--muted {
  color: rgba(232, 240, 242, 0.75);
  font-size: 0.75rem;
}

.house-offer__pricing-total {
  color: var(--color-accent);
}

.house-offer .btn--block {
  width: 100%;
  justify-content: center;
}

/* Special offer landing popup */
.house-offer-popup {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.house-offer-popup[hidden] {
  display: none !important;
}

.house-offer-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--rgb-deep), 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.house-offer-popup.is-open .house-offer-popup__backdrop {
  animation: house-offer-popup-fade 0.35s ease;
}

.house-offer-popup__panel {
  position: relative;
  z-index: 1;
  width: min(52rem, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(var(--rgb-deep), 0.35);
}

.house-offer-popup.is-open .house-offer-popup__panel {
  animation: house-offer-popup-rise 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.house-offer-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(var(--rgb-deep), 0.45);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.house-offer-popup__close:hover,
.house-offer-popup__close:focus-visible {
  background: rgba(var(--rgb-deep), 0.7);
  transform: scale(1.05);
  outline: none;
}

.house-offer__inner--popup {
  margin: 0;
  box-shadow: none;
}

body.house-offer-popup-open {
  overflow: hidden;
}

@keyframes house-offer-popup-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes house-offer-popup-rise {
  from {
    opacity: 0;
    transform: translateY(1.25rem) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 700px) {
  .house-offer-popup {
    padding: var(--space-sm);
    align-items: flex-end;
  }

  .house-offer-popup__panel {
    max-height: 92vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .house-offer__inner--popup {
    grid-template-columns: 1fr;
    padding-top: calc(var(--space-lg) + 1.5rem);
  }
}

/* Package includes breakdown */
.house-package-includes {
  margin: var(--space-xl) 0;
}

.house-package-includes__shell {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #fff 0%, var(--color-warm-bg) 45%, var(--color-royal-cream) 100%);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 40px rgba(var(--rgb-deep), 0.06);
}

.house-package-includes__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(var(--rgb-deep), 0.08);
}

.house-package-includes__eyebrow {
  color: var(--color-teal) !important;
  margin-bottom: 0.35rem;
}

.house-package-includes__header h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.house-package-includes__header-copy p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 38rem;
}

.house-package-includes__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  flex-shrink: 0;
}

.house-package-includes__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-deep);
  background: rgba(var(--rgb-teal), 0.08);
  border: 1px solid rgba(var(--rgb-teal), 0.16);
  white-space: nowrap;
}

.house-package-includes__chip--price {
  color: var(--color-deep);
  background: rgba(var(--rgb-gold), 0.18);
  border-color: rgba(var(--rgb-gold), 0.45);
}

.house-package-includes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.house-package-includes__group {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(var(--rgb-deep), 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.house-package-includes__group:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--rgb-gold), 0.45);
  box-shadow: 0 8px 24px rgba(var(--rgb-deep), 0.08);
}

.house-package-includes__group--primary {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-teal) 58%, var(--color-teal-light) 100%);
  border-color: rgba(var(--rgb-gold), 0.35);
  color: #e8f0f2;
}

.house-package-includes__group--primary:hover {
  border-color: rgba(var(--rgb-gold), 0.55);
}

.house-package-includes__group-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.house-package-includes__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(var(--rgb-teal), 0.1);
  color: var(--color-teal);
}

.house-package-includes__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.house-package-includes__group--primary .house-package-includes__icon {
  background: rgba(var(--rgb-gold), 0.18);
  color: var(--color-accent);
}

.house-package-includes__group h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--color-deep);
}

.house-package-includes__group--primary h3 {
  color: #fff;
}

.house-package-includes__group-count {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.house-package-includes__group--primary .house-package-includes__group-count {
  color: rgba(232, 240, 242, 0.78);
}

.house-package-includes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.house-package-includes__group--primary .house-package-includes__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
}

.house-package-includes__item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.house-package-includes__group--primary .house-package-includes__item {
  color: rgba(232, 240, 242, 0.92);
}

.house-package-includes__check {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--rgb-gold), 0.16);
  color: var(--color-teal);
}

.house-package-includes__group--primary .house-package-includes__check {
  background: rgba(var(--rgb-gold), 0.22);
  color: var(--color-accent);
}

.house-package-includes__check svg {
  width: 0.7rem;
  height: 0.7rem;
}

.house-package-includes__group--optional {
  border-style: dashed;
  border-color: rgba(var(--rgb-gold), 0.55);
}

.house-package-includes__optional-note {
  margin: var(--space-sm) 0 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--color-text-muted);
  background: rgba(var(--rgb-gold), 0.1);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.house-package-includes__group--primary .house-package-includes__optional-note {
  color: rgba(232, 240, 242, 0.9);
  background: rgba(0, 0, 0, 0.15);
  border-left-color: var(--color-accent);
}

.house-package-includes__footnote {
  margin: var(--space-md) 0 0;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(var(--rgb-deep), 0.08);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
}

@media (max-width: 900px) {
  .house-offer__inner {
    grid-template-columns: 1fr;
  }

  .house-package-includes__header {
    flex-direction: column;
  }

  .house-package-includes__meta {
    justify-content: flex-start;
  }

  .house-package-includes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .house-package-includes__group--primary .house-package-includes__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .house-package-includes__shell {
    padding: var(--space-md);
  }

  .house-package-includes__grid {
    grid-template-columns: 1fr;
  }
}

/* About + platform section */
.house-detail-about {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.house-detail-about__header {
  margin-bottom: var(--space-lg);
}

.house-detail-about__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal-light);
  background: rgba(var(--rgb-gold), 0.12);
  border: 1px solid rgba(var(--rgb-gold), 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.house-detail-about__header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}

.house-detail-about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-lg);
  align-items: stretch;
}

.house-detail-about__main {
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.house-detail-about__summary {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
}

.house-detail-about__use {
  padding: var(--space-md);
  background: var(--color-warm-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  margin-bottom: var(--space-md);
}

.house-detail-about__use-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal-light);
  margin-bottom: 0.35rem;
}

.house-detail-about__use p {
  margin: 0;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
}

.house-detail-about__ideal h3 {
  font-size: 1rem;
  margin: 0 0 var(--space-sm);
}

.house-detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.house-detail-chip {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  background: var(--color-warm-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
}

.house-detail-platform {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--color-deep) 0%, var(--color-teal) 50%, var(--color-teal-light) 100%);
  color: #e8f0f2;
  box-shadow: 0 16px 48px rgba(var(--rgb-deep), 0.2);
  position: relative;
  overflow: hidden;
}

.house-detail-platform::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(var(--rgb-gold), 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.house-detail-platform__head,
.house-detail-features,
.house-detail-platform__actions {
  position: relative;
  z-index: 1;
}

.house-detail-platform__head h3 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.house-detail-platform__head p {
  margin: 0 0 var(--space-md);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(232, 240, 242, 0.85);
}

.house-detail-features {
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.house-detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(232, 240, 242, 0.95);
}

.house-detail-feature--empty {
  opacity: 0.8;
  font-style: italic;
}

.house-detail-feature__icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--rgb-gold), 0.25);
  border-radius: 50%;
  color: var(--color-accent);
}

.house-detail-feature__icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.house-detail-placeholder {
  font-size: 0.8125rem;
  color: rgba(232, 240, 242, 0.7);
  margin: 0 0 var(--space-md);
  line-height: 1.5;
}

.house-detail-placeholder code {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.house-detail-platform__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.house-detail-platform__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.house-detail-platform__actions .btn--primary {
  box-shadow: 0 6px 20px rgba(var(--rgb-gold), 0.35);
}

.house-prev-next {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .house-detail-marketing__construction .bar-row--energy .bar-fill,
  .house-detail-marketing__inv-bar {
    white-space: normal;
    font-size: 0.625rem;
    padding: 0 0.25rem;
    line-height: 1.2;
  }

  .house-detail-marketing__construction .bar-row--calc .bar-label {
    flex: 0 0 4.5rem;
    font-size: 0.75rem;
  }

  .house-detail-marketing__construction .energy-savings-calc__inline-val {
    flex: 0 0 4.25rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .house-hero {
    min-height: 340px;
  }

  .house-hero--video .house-hero__media--video {
    height: min(56vh, 520px);
  }

  .house-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .house-gallery__main {
    grid-row: auto;
    min-height: 240px;
  }

  .house-gallery__thumb {
    min-height: 140px;
  }

  .house-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .house-stats--with-offer .house-stat--featured {
    grid-column: span 2;
  }

  .house-detail-about__grid {
    grid-template-columns: 1fr;
  }

  .house-detail-marketing__journey {
    grid-template-columns: repeat(2, 1fr);
  }

  .house-detail-marketing__journey-step:nth-child(2n)::after {
    display: none;
  }

  .house-detail-marketing__values {
    grid-template-columns: repeat(2, 1fr);
  }

  .house-detail-marketing__charts {
    grid-template-columns: 1fr;
  }

  .house-detail-marketing__invest-grid {
    grid-template-columns: 1fr;
  }

  .house-detail-marketing__construction .energy-savings-calc__controls,
  .house-detail-marketing__construction .energy-savings-calc__totals {
    grid-template-columns: 1fr 1fr;
  }

  .house-order-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .house-order-delivery {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .house-order-delivery__graphic {
    margin: 0 auto;
  }

  .house-order-delivery__points {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .house-detail-marketing__result-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .house-hero {
    min-height: 260px;
  }

  .house-stats {
    grid-template-columns: 1fr;
  }

  .house-stats--with-offer .house-stat--featured {
    grid-column: span 1;
  }

  .house-stat__featured-row {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .house-stat__featured-price {
    text-align: center;
  }

  .house-stat__featured-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
  }

  .house-detail-marketing__journey {
    grid-template-columns: 1fr;
  }

  .house-detail-marketing__journey-step::after {
    display: none;
  }

  .house-detail-marketing__result-cards {
    grid-template-columns: 1fr;
  }

  .house-detail-marketing__values {
    grid-template-columns: 1fr;
  }

  .house-order-flow {
    grid-template-columns: 1fr;
  }

  .house-order-pay__label strong {
    font-size: 0.625rem;
  }

  .house-order-pay__label span {
    font-size: 0.5625rem;
  }

  .house-detail-order-process__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .house-detail-order-process__cta .btn {
    width: 100%;
    text-align: center;
  }

  .house-detail-marketing__construction .energy-savings-calc__controls,
  .house-detail-marketing__construction .energy-savings-calc__totals {
    grid-template-columns: 1fr;
  }

  .house-detail-marketing__construction .energy-savings-calc__inline-val {
    flex: 0 0 4.25rem;
    font-size: 0.75rem;
  }

  .house-detail-marketing__inv-bar-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Expanded photo gallery (Luxor and other rich galleries) */
.house-gallery-spotlight {
  margin: var(--space-lg) 0;
}

.house-gallery-spotlight__stage {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 48px rgba(var(--rgb-deep), 0.12);
  background: var(--color-warm-bg-alt);
  isolation: isolate;
}

.house-gallery-spotlight__stage .house-image-frame {
  display: block;
  width: 100%;
  line-height: 0;
}

.house-gallery-spotlight__hero {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.35s ease;
}

.house-gallery-spotlight__hero.is-fading {
  opacity: 0.15;
}

.house-gallery-spotlight__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(var(--rgb-deep), 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.house-gallery-spotlight__nav svg {
  width: 1.35rem;
  height: 1.35rem;
}

.house-gallery-spotlight__nav:hover,
.house-gallery-spotlight__nav:focus-visible {
  background: rgba(var(--rgb-deep), 0.78);
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

.house-gallery-spotlight__nav--prev {
  left: 0.75rem;
}

.house-gallery-spotlight__nav--next {
  right: 0.75rem;
}

.house-gallery-spotlight__dots {
  position: absolute;
  left: 50%;
  bottom: 3.25rem;
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(var(--rgb-deep), 0.5);
  backdrop-filter: blur(6px);
}

.house-gallery-spotlight__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.house-gallery-spotlight__dot:hover,
.house-gallery-spotlight__dot:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  outline: none;
  transform: scale(1.15);
}

.house-gallery-spotlight__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.house-gallery-spotlight__counter {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 4;
  margin: 0;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(var(--rgb-deep), 0.55);
  backdrop-filter: blur(6px);
}

.house-gallery-spotlight__caption {
  padding: 0.65rem var(--space-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.house-gallery-spotlight__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.house-gallery-spotlight__thumbs--7 {
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
}

.house-gallery-spotlight__thumb {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: var(--color-surface);
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: inherit;
}

.house-gallery-spotlight__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.house-gallery-spotlight__thumb span {
  padding: 0.35rem 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  text-align: center;
}

.house-gallery-spotlight__thumb:hover {
  border-color: rgba(var(--rgb-gold), 0.45);
  transform: translateY(-2px);
}

.house-gallery-spotlight__thumb.is-active {
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(var(--rgb-gold), 0.25);
}

.house-gallery-spotlight__thumb.is-active span {
  color: var(--color-teal-light);
}

@media (max-width: 1000px) {
  .house-gallery-spotlight__thumbs--7 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .house-gallery-spotlight__thumbs--7 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .house-gallery-spotlight__hero {
    aspect-ratio: 4 / 3;
  }

  .house-gallery-spotlight__nav {
    width: 2.35rem;
    height: 2.35rem;
  }

  .house-gallery-spotlight__dots {
    bottom: 2.85rem;
  }
}

/* Video hero content panel — dark text on light surface (loads last; beats hero overlay styles) */
.house-hero--video .house-hero__content.house-hero__content--below {
  width: 100%;
  max-width: none;
  background: #fefefe;
  color: #0a2e3d;
}

.house-hero--video .house-hero__content.house-hero__content--below h1 {
  color: #0a2e3d !important;
}

.house-hero--video .house-hero__content.house-hero__content--below .lead {
  color: #4a5f6b !important;
}

/* Video hero — chip breadcrumbs on light panel */
.house-hero--video .house-hero__content.house-hero__content--below .house-hero__crumbs-list li:not(:last-child)::after {
  border-color: #9eb0b8;
  opacity: 1;
}

.house-hero--video .house-hero__content.house-hero__content--below .house-hero__crumbs-list a {
  color: #1a6b7a !important;
  background: #f0f6f7 !important;
  border: 1px solid #c5dce0 !important;
  text-decoration: none !important;
  text-shadow: none !important;
}

.house-hero--video .house-hero__content.house-hero__content--below .house-hero__crumbs-list a:hover,
.house-hero--video .house-hero__content.house-hero__content--below .house-hero__crumbs-list a:focus-visible {
  color: #0a2e3d !important;
  background: #e2f0f2 !important;
  border-color: #1a6b7a !important;
}

.house-hero--video .house-hero__content.house-hero__content--below .house-hero__crumbs-list span[aria-current="page"] {
  color: #0a2e3d !important;
  background: linear-gradient(135deg, #e8c55a 0%, #c9a227 100%) !important;
  border: 1px solid rgba(201, 162, 39, 0.45) !important;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.2);
}

.house-hero--video .house-hero__content.house-hero__content--below .house-hero__eyebrow {
  color: #1a6b7a !important;
  text-shadow: none !important;
}

.house-hero--video .house-hero__content.house-hero__content--below .house-hero__eyebrow a {
  color: #1a6b7a !important;
}

.house-hero--video .house-hero__content.house-hero__content--below .house-hero__eyebrow a:hover,
.house-hero--video .house-hero__content.house-hero__content--below .house-hero__eyebrow a:focus-visible {
  color: #2d8f9e !important;
}

.house-hero--video .house-hero__content.house-hero__content--below .btn--ghost-light {
  color: #1a6b7a !important;
  background: #f5f2ed !important;
  border-color: #d8e0e4 !important;
  box-shadow: none !important;
}

.house-hero--video .house-hero__content.house-hero__content--below .btn--ghost-light:hover {
  color: #0a2e3d !important;
  background: rgba(26, 107, 122, 0.1) !important;
  border-color: #1a6b7a !important;
}

