/* ── HERO ── */
.hero {
  margin-top: 70px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 2.75rem var(--layout-pad) 5%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-slideshow__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}

.hero-slideshow__layer.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow__layer {
    transition: none;
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(245, 240, 232, 0.52) 0%,
    rgba(245, 240, 232, 0.34) 38%,
    rgba(239, 246, 255, 0.22) 62%,
    rgba(219, 234, 254, 0.12) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero-lead {
  margin: 1.35rem auto 0;
  padding: 0;
  width: fit-content;
  max-width: calc(100% - 2 * var(--layout-pad));
  box-sizing: border-box;
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--deep-mid);
  text-align: center;
  white-space: nowrap;
}

.hero-lead__accent {
  color: #1B2F5B;
  font-size: 1.25em;
}

.hero-lead__cursor {
  display: inline-block;
  margin-left: 0.06em;
  font-weight: 300;
  animation: heroLeadCursorBlink 0.85s step-end infinite;
}

.hero-lead__cursor.is-finished {
  animation: heroLeadCursorFade 0.65s ease forwards;
}

@keyframes heroLeadCursorBlink {
  50% {
    opacity: 0;
  }
}

@keyframes heroLeadCursorFade {
  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-lead__cursor {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-lead {
    white-space: normal;
    width: 100%;
    max-width: min(920px, 100%);
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  }
}

    .hero-tag {
      display: inline-block;
      background: var(--white);
      color: var(--orange-dark);
      border: 1px solid var(--orange-glow);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.35rem 0.9rem;
      border-radius: 6px;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-family: var(--font-family);
      width: 100%;
      margin: 0;
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 700;
      color: var(--deep-mid);
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .hero-title span {
      color: var(--orange);
    }

    .hero-cta-panel {
      position: absolute;
      top: auto;
      bottom: 8%;
      left: auto;
      right: 1%;
      transform: none;
      z-index: 2;
      width: min(100%, 36rem);
      max-width: calc(100% - 1.5rem);
      margin: 0;
      padding: clamp(1.15rem, 2.5vw, 1.5rem) clamp(1.25rem, 3vw, 1.75rem);
      box-sizing: border-box;
      text-align: center;
      background: rgba(148, 163, 184, 0.5);
      border: 1px solid rgba(100, 116, 139, 0.22);
      border-radius: 28px;
      box-shadow: 0 8px 24px rgba(var(--shadow-rgb), 0.1);
    }

    .hero-cta-panel__tagline {
      margin: 0 0 1rem;
      font-family: 'Trebuchet MS', 'Lucida Grande', sans-serif;
      font-size: clamp(1.65rem, 3.5vw, 2.25rem);
      font-weight: 400;
      font-style: italic;
      line-height: 1.15;
      color: var(--white);
      text-shadow: 0 1px 6px rgba(15, 23, 42, 0.25);
    }

    .hero-cta-panel__actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
    }

    .hero-cta-panel__btn {
      font-size: 0.92rem;
      padding: 0.75rem 1.5rem;
    }

    button.hero-cta-panel__btn {
      font-family: inherit;
    }

    @media (max-width: 640px) {
      .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.35rem);
      }
    }

    @media (max-width: 768px) {
      .hero {
        padding-top: 2rem;
      }

      .hero-cta-panel {
        position: static;
        transform: none;
        align-self: center;
        width: 100%;
        max-width: var(--layout-max);
        margin-top: auto;
        margin-left: auto;
        margin-right: auto;
        right: auto;
      }
    }

    @media (max-width: 480px) {
      .hero-cta-panel__actions {
        flex-direction: column;
        width: 100%;
      }

      .hero-cta-panel__btn {
        width: 100%;
      }
    }

/* ── HOME ONLINE CAROUSEL (infinite conveyor, pure CSS) — commented out for later use
.home-online-train {
  --carousel-gap: 1.75rem;
  --carousel-duration: 30s;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 1.25rem 0;
  margin-bottom: 1.75rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
}

.home-online-train__viewport {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.home-online-train__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: homeOnlineCarousel var(--carousel-duration) linear infinite;
  will-change: transform;
}

.home-online-train__set {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--carousel-gap);
  padding-right: var(--carousel-gap);
  flex-shrink: 0;
}

.home-online-train__set img {
  height: clamp(98px, 13.5vw, 130px);
  width: auto;
  max-width: none;
  display: block;
  flex: 0 0 auto;
  border-radius: 12px;
  border: 1px solid var(--border-grey);
  box-shadow: 0 10px 28px rgba(var(--shadow-rgb), 0.1);
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

@keyframes homeOnlineCarousel {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 640px) {
  .home-online-train {
    --carousel-gap: 1.1rem;
  }

  .home-online-train__set img {
    height: clamp(82px, 24vw, 104px);
  }
}
*/

/* ── FEATURED FLOOR PLANS (home) ── */
.home-featured-plans {
  background: var(--page);
  border-top: 1px solid var(--border-grey);
  border-bottom: 1px solid var(--border-grey);
  padding: clamp(3rem, 6vw, 4.5rem) var(--layout-pad);
  text-align: center;
}

/* .built-around .home-online-train {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0;
} */

.home-featured-plans--in-built-around {
  background: linear-gradient(180deg, #eef2f8 0%, #dbe4f5 100%);
  border: none;
  border-top: 1px solid rgba(30, 41, 59, 0.12);
  border-bottom: 1px solid rgba(30, 41, 59, 0.12);
  padding: clamp(3rem, 6vw, 4.5rem) var(--layout-pad);
  margin: 0;
  width: 100%;
  max-width: none;
  overflow: visible;
}

.built-around__process-link {
  margin-top: 1rem;
  text-align: center;
}

.home-featured-plans__inner {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
}

.home-featured-plans__heading {
  font-family: var(--font-family);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 0.5rem;
}

.home-featured-plans--in-built-around .home-featured-plans__heading {
  color: var(--deep-mid);
}

.home-featured-plans__sub {
  margin: 0 auto 2rem;
  max-width: 42rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  line-height: 1.65;
}

.home-featured-plans .section-title {
  color: var(--orange);
  margin-bottom: 0.65rem;
}

.home-featured-plans .section-sub {
  margin: 0 auto 2.25rem;
  max-width: 42rem;
}

.home-featured-plans__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: left;
  align-items: stretch;
}

.home-featured-plans--in-built-around .home-featured-plans__grid {
  max-width: var(--layout-max);
  margin-inline: auto;
}

/* Keep all five featured cards equal width (override floor-plans index odd-last rule) */
.home-featured-plans__grid .floor-plan-card:last-child:nth-child(odd) {
  grid-column: auto;
  max-width: none;
  width: auto;
  margin-inline: 0;
}

.home-featured-plans__grid .floor-plan-card {
  height: 100%;
}

.home-featured-plans__grid .floor-plan-card__title {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  padding: clamp(0.85rem, 1.5vw, 1rem) clamp(0.75rem, 1.2vw, 1rem) 0.65rem;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
}

.home-featured-plans__grid .floor-plan-card__media {
  flex-shrink: 0;
}

.home-featured-plans__cta {
  margin: 2.25rem 0 0;
}

.home-featured-plans__cta .view-all {
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(220, 38, 38, 0.35);
  transition: color 0.15s, border-color 0.15s;
}

.home-featured-plans--in-built-around .home-featured-plans__cta .view-all {
  color: var(--deep-mid);
  border-bottom-color: rgba(30, 41, 59, 0.35);
}

.home-featured-plans__cta .view-all:hover {
  color: var(--orange-dark);
  border-bottom-color: var(--orange);
}

.home-featured-plans--in-built-around .home-featured-plans__cta .view-all:hover {
  color: var(--blue-dark);
  border-bottom-color: var(--blue);
}

@media (max-width: 1200px) {
  .home-featured-plans__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-featured-plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .home-featured-plans__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* ── HOME FEELING ── */
.home-feeling {
  background: var(--page);
  border-top: 1px solid var(--border-grey);
  padding: clamp(3.5rem, 7vw, 5rem) var(--layout-pad);
  text-align: center;
  overflow-x: clip;
}

.home-feeling__inner {
  width: 100%;
  max-width: min(1480px, 100%);
  margin: 0 auto;
}

.home-feeling__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 56ch) minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(2.5rem, 6vw, 5.5rem);
  row-gap: 0.5rem;
}

.home-feeling__photos--heading.home-feeling__photos--left {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
}

.home-feeling__title {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-family: var(--font-family);
  font-size: clamp(1.15rem, 2.1vw, 1.85rem);
  font-weight: 700;
  color: var(--deep-mid);
  line-height: 1.35;
  margin: 0 auto;
  max-width: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.home-feeling.is-revealed .home-feeling__title {
  opacity: 1;
}
.home-feeling__photos--heading.home-feeling__photos--right {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
}

.home-feeling__photos--quote.home-feeling__photos--left {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: start;
}

.home-feeling__content {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.home-feeling__photos--quote.home-feeling__photos--right {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}

.home-feeling__photos {
  position: relative;
  width: clamp(190px, 18vw, 250px);
  height: clamp(190px, 18vw, 250px);
  flex-shrink: 0;
  margin-inline: 0;
  margin-top: 0;
}

.home-feeling__photo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid var(--white);
  box-shadow: 0 10px 24px rgba(30, 41, 59, 0.18);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s ease,
    box-shadow 0.3s ease-in-out;
  will-change: transform, opacity;
}

.home-feeling__photos--left .home-feeling__photo {
  transform: translateX(-120vw) rotate(-5deg);
}

.home-feeling__photos--right .home-feeling__photo {
  transform: translateX(120vw) rotate(5deg);
}

.home-feeling.is-revealed .home-feeling__photo {
  opacity: 1;
}

.home-feeling.is-revealed .home-feeling__photos--heading .home-feeling__photo {
  transition-delay: 0ms;
}

.home-feeling.is-revealed .home-feeling__photos--quote .home-feeling__photo {
  transition-delay: 125ms;
}

.home-feeling.is-revealed .home-feeling__photos--left .home-feeling__photo {
  transform: translateX(0) rotate(-5deg);
}

.home-feeling.is-revealed .home-feeling__photos--right .home-feeling__photo {
  transform: translateX(0) rotate(5deg);
}

.home-feeling.is-revealed .home-feeling__photo {
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.home-feeling.is-revealed .home-feeling__photos--left .home-feeling__photo:hover {
  transform: translateY(-5px) scale(1.05) rotate(-5deg);
  box-shadow:
    0 20px 44px rgba(185, 28, 28, 0.22),
    0 10px 28px rgba(220, 38, 38, 0.14);
}

.home-feeling.is-revealed .home-feeling__photos--right .home-feeling__photo:hover {
  transform: translateY(-5px) scale(1.05) rotate(5deg);
  box-shadow:
    0 20px 44px rgba(185, 28, 28, 0.22),
    0 10px 28px rgba(220, 38, 28, 0.14);
}

@media (max-width: 1024px) {
  .home-feeling__stage {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-feeling__title,
  .home-feeling__content {
    grid-column: 1;
  }

  .home-feeling__title {
    grid-row: 1;
    white-space: normal;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    line-height: 1.35;
    max-width: 36ch;
  }

  .home-feeling__content {
    grid-row: 2;
  }

  .home-feeling__photos {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-feeling__photo {
    opacity: 1;
    transition: none;
    transform: none !important;
  }

  .home-feeling__photos--left .home-feeling__photo {
    transform: rotate(-5deg);
  }

  .home-feeling__photos--right .home-feeling__photo {
    transform: rotate(5deg);
  }
}

.home-feeling__quote {
  display: block;
  margin: 1.75rem auto clamp(-1.25rem, -3vw, -2rem);
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 400;
  line-height: 0.5;
  color: rgba(220, 38, 38, 0.28);
  user-select: none;
}

.home-feeling__text {
  margin: 0 auto;
  max-width: 62ch;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 400;
  line-height: 2;
  color: var(--text-muted);
}

.home-feeling__emphasis {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.45em;
  color: #8B5E3C;
}

.home-feeling__signoff {
  margin: 1rem auto 0;
  max-width: 62ch;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-style: italic;
  color: var(--text-muted);
}

/* ── BUILT AROUND YOU ── */
    .built-around {
      background: var(--white);
      border-top: none;
      text-align: center;
      padding-top: 0;
      padding-bottom: clamp(3rem, 6vw, 4.5rem);
    }

    .built-around__panel {
      background: transparent;
      border: none;
      padding: clamp(1.25rem, 2.5vw, 1.75rem) 0 clamp(3rem, 6vw, 4.5rem);
      margin: 0;
      width: 100%;
      max-width: none;
      box-shadow: none;
      overflow: visible;
    }

    .built-around__panel .section-title,
    .built-around__panel .section-sub,
    .built-around__panel .built-around__process-link {
      padding-left: var(--layout-pad);
      padding-right: var(--layout-pad);
    }

    .built-around .section-title {
      color: var(--orange);
      width: 100%;
      max-width: var(--layout-max);
      margin-left: auto;
      margin-right: auto;
    }

    .built-around .section-sub {
      margin-left: auto;
      margin-right: auto;
      font-style: italic;
      white-space: nowrap;
      width: fit-content;
      max-width: calc(100% - 2 * var(--layout-pad));
    }

    @media (max-width: 1100px) {
      .built-around .section-sub {
        white-space: normal;
        width: 100%;
        max-width: min(920px, 100%);
      }
    }

    .built-around__panel .section-title {
      color: var(--orange);
      margin-top: 0;
      padding-top: 0;
    }

    .built-around__panel .section-sub {
      color: var(--text-muted);
    }

    .built-around__panel .view-all {
      color: var(--orange);
      border-bottom-color: rgba(220, 38, 38, 0.35);
    }

    .built-around__panel .view-all:hover {
      color: var(--orange-dark);
      border-bottom-color: var(--orange);
    }

    .built-around > p {
      width: 100%;
      max-width: var(--layout-max);
      margin-left: auto;
      margin-right: auto;
    }

    .pillar-grid {
      position: relative;
      left: 50%;
      right: 50%;
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(1.25rem, 2.5vw, 2rem);
      width: 100vw;
      max-width: 100vw;
      margin: 2.5rem 0 0;
      margin-left: -50vw;
      margin-right: -50vw;
    }

    .pillar-card {
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
      align-items: stretch;
      width: 100%;
      border: none;
      border-top: 1px solid var(--border-grey);
      border-bottom: 1px solid var(--border-grey);
      border-radius: 0;
      overflow: hidden;
      background: var(--white);
      box-shadow: none;
      transition: background 0.2s ease;
    }

    .pillar-card:hover {
      background: var(--cream);
    }

    .pillar-card--reverse {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
    }

    @media (max-width: 768px) {
      .pillar-card {
        grid-template-columns: 1fr;
      }
    }

    .pillar-card__img {
      min-height: 100%;
      height: 100%;
      overflow: hidden;
      background: var(--surface);
    }

    .pillar-card__img img {
      width: 100%;
      height: 100%;
      min-height: clamp(320px, 48vw, 520px);
      object-fit: cover;
      object-position: center;
      display: block;
    }

    @media (max-width: 768px) {
      .pillar-card__img {
        aspect-ratio: 16 / 10;
      }

      .pillar-card__img img {
        min-height: 0;
        aspect-ratio: 16 / 10;
      }
    }

    .pillar-card__body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-self: stretch;
      text-align: left;
      padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
    }

    .pillar-card__body h3 {
      font-family: 'Great Vibes', 'Brush Script MT', cursive;
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 400;
      color: var(--orange);
      text-align: center;
      margin-bottom: 1rem;
      line-height: 1.15;
    }

    .pillar-card__body p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin: 0;
    }

    .pillar-card__body:has(.pillar-card__prose) {
      align-items: center;
      text-align: center;
    }

    .pillar-card__prose {
      font-family: var(--font-family);
      font-size: clamp(1.28rem, 1.85vw, 1.5rem);
      font-weight: 400;
      color: var(--text-muted);
      line-height: 1.8;
      text-align: center;
      width: 100%;
      max-width: 52ch;
      margin: 0 auto;
      letter-spacing: 0.01em;
    }

    .pillar-card__list {
      list-style: disc;
      margin: 0 auto;
      padding-left: 1.25rem;
      width: fit-content;
      max-width: 100%;
      font-size: clamp(1.02rem, 1.4vw, 1.12rem);
      font-weight: 600;
      color: var(--deep-mid);
      line-height: 1.65;
      text-align: left;
    }

    .pillar-card__list li + li {
      margin-top: 1.5rem;
    }

    .btn-primary {
      background: linear-gradient(180deg, var(--orange-mid) 0%, var(--orange) 100%);
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      border: 1px solid var(--orange-dark);
      box-shadow: 0 2px 10px rgba(220, 38, 38, 0.22);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      background: linear-gradient(180deg, var(--accent) 0%, var(--orange-dark) 100%);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(220, 38, 38, 0.28);
    }

    .btn-secondary {
      border: 1px solid var(--border-grey);
      color: var(--deep-mid);
      background: rgba(250, 248, 245, 0.92);
      padding: 0.85rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--orange-mid);
      background: var(--cream);
    }

/* ── STATS BAR ── */
    .stats-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border-grey);
      border-top: 1px solid #fafaf9;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      width: 100%;
    }

    .stat {
      text-align: center;
      padding: 1.75rem 1.75rem 1.25rem;
      border-right: 1px solid var(--border-grey);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
    }

    .stat:last-child { border-right: none; }

    .stat-num {
      font-family: var(--font-family);
      font-size: clamp(1.05rem, 1.6vw, 1.35rem);
      font-weight: 700;
      color: var(--deep-mid);
      line-height: 1.15;
      white-space: nowrap;
    }

    .stat-label {
      font-size: 0.68rem;
      color: var(--text-muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.4;
      max-width: 12rem;
    }

    .stat-icon {
      display: block;
      width: clamp(4rem, 6.5vw, 5.25rem);
      height: clamp(4rem, 6.5vw, 5.25rem);
      object-fit: contain;
      margin-bottom: 0.15rem;
    }

    @media (max-width: 720px) {
      .stats-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .stat:nth-child(2) { border-right: none; }

      .stat:nth-child(1),
      .stat:nth-child(2) {
        border-bottom: 1px solid var(--border-grey);
      }

      .stat-num { white-space: normal; }
    }

    @media (max-width: 400px) {
      .stats-bar { grid-template-columns: 1fr; }

      .stat {
        border-right: none;
        border-bottom: 1px solid var(--border-grey);
        padding: 1.5rem 1.25rem;
      }

      .stat:last-child { border-bottom: none; }
    }

/* ── CTA BAND ── */
    .cta-band {
      position: relative;
      isolation: isolate;
      background: url('../images/houseKey.jpg') center center / cover no-repeat;
      text-align: center;
      width: 100%;
      padding: 4rem var(--layout-pad);
      border-top: 1px solid var(--border-grey);
    }

    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.38) 0%,
        rgba(255, 255, 255, 0.28) 55%,
        rgba(255, 255, 255, 0.34) 100%
      );
      z-index: 0;
    }

    .cta-band > * {
      position: relative;
      z-index: 1;
    }

    .cta-band h2 {
      font-family: var(--font-family);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--deep-mid);
      margin-bottom: 0.75rem;
      text-shadow: 0 1px 12px rgba(255, 255, 255, 0.85);
    }

    .cta-band p {
      color: var(--text-muted);
      font-size: 1rem;
      margin-bottom: 2rem;
      text-shadow: 0 1px 10px rgba(255, 255, 255, 0.8);
    }

    .cta-band p.cta-contact {
      margin-top: -1rem;
      margin-bottom: 1.75rem;
      font-size: 0.95rem;
    }

    .cta-band .cta-contact a {
      color: var(--ember);
      text-decoration: none;
      border-bottom: 1px solid var(--blue-glow);
      transition: color 0.15s, border-color 0.15s;
    }

    .cta-band .cta-contact a:hover {
      color: var(--blue-dark);
      border-bottom-color: rgba(29, 78, 216, 0.45);
    }

    .cta-band .cta-sep {
      color: #d6d3d1;
      padding: 0 0.35rem;
    }

    .cta-band .cta-extra {
      margin-top: 1.25rem;
      margin-bottom: 0;
      font-size: 0.9rem;
    }

    .cta-band .cta-extra a {
      color: var(--ember);
      text-decoration: none;
      border-bottom: 1px solid var(--blue-glow);
      transition: color 0.15s, border-color 0.15s;
    }

    .cta-band .cta-extra a:hover {
      color: var(--blue-dark);
      border-bottom-color: rgba(29, 78, 216, 0.45);
    }
