@charset "UTF-8";

/* RealSandpoint production homepage — scoped to .home-page only */

.home-page {
  --hp-void: #0a0c0f;
  --hp-ink: #12161c;
  --hp-ink-soft: #3a424d;
  --hp-stone: #6b6560;
  --hp-mist: #f3f1ec;
  --hp-paper: #faf9f7;
  --hp-ivory: #fffef9;
  --hp-gold: #9a8660;
  --hp-gold-hover: #b09870;
  --hp-champagne: #d4c9b0;
  --hp-line: rgba(255, 255, 255, 0.14);
  --hp-line-dark: rgba(18, 22, 28, 0.12);
  --hp-shadow: 0 18px 48px rgba(10, 12, 15, 0.12);
  --hp-gutter: clamp(1.25rem, 4.5vw, 3rem);
  --hp-serif: "aviano-serif", "Bree Serif", Georgia, serif;
  --hp-sans: "rig-sans", system-ui, sans-serif;
  --hp-cond: "interstate-condensed", "Arial Narrow", sans-serif;
  background: var(--hp-mist);
  overflow-x: hidden;
}

.home-page #main-cont {
  max-width: none;
  border: none;
  background: var(--hp-mist);
  padding-left: 0;
  padding-right: 0;
  z-index: auto;
}

.home-page #body-foot {
  max-width: none;
  background: transparent;
  padding: 0;
  margin: 0;
}

/* ========== HERO ========== */

.home-page .hp-hero__stage.full-screen-video-container {
  position: relative;
  width: 100%;
  max-width: none;
  height: min(100vh, 920px);
  min-height: 520px;
  overflow: hidden;
  display: block;
}

.home-page .hp-hero__stage.full-screen-video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transform: none;
  min-width: 0;
  min-height: 0;
  z-index: 1;
}

.home-page .hp-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 15, 0.55) 0%,
    rgba(10, 12, 15, 0.35) 45%,
    rgba(10, 12, 15, 0.72) 100%
  );
  pointer-events: none;
}

.home-page .hp-hero__inner {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: clamp(0.75rem, 2vw, 1.25rem) var(--hp-gutter) clamp(5rem, 12vw, 7rem);
}

.home-page .hp-hero__masthead {
  text-align: center;
}

.home-page .hp-hero__logo {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.home-page .hp-hero__logo img {
  width: clamp(110px, 14vw, 165px);
  height: auto;
}

.home-page .hp-hero__nav .navbar {
  margin-top: 0;
  background: rgba(10, 12, 15, 0.45) !important;
  border-color: var(--hp-line);
}

.home-page .hp-hero__editorial {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 52rem;
  margin: 0 auto;
  padding: 1rem 0;
}

.home-page .hp-eyebrow {
  font-family: var(--hp-cond);
  font-size: clamp(0.72rem, 1.6vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-champagne);
  margin-bottom: 1rem;
}

.home-page .hp-hero__title {
  font-family: var(--hp-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.8vw, 3.15rem);
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  margin-bottom: 1rem;
}

.home-page .hp-hero__lead {
  font-family: var(--hp-sans);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.home-page .hp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

.home-page .hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.5rem;
  font-family: var(--hp-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-page .hp-btn--primary {
  background: var(--hp-gold);
  color: var(--hp-void);
  border: 1px solid var(--hp-gold);
}

.home-page .hp-btn--primary:hover,
.home-page .hp-btn--primary:focus {
  background: var(--hp-gold-hover);
  border-color: var(--hp-gold-hover);
  color: var(--hp-void);
  text-decoration: none;
}

.home-page .hp-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.home-page .hp-btn--ghost:hover,
.home-page .hp-btn--ghost:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

.home-page .hp-btn--outline {
  background: transparent;
  color: var(--hp-ink);
  border: 1px solid var(--hp-line-dark);
}

.home-page .hp-btn--outline:hover,
.home-page .hp-btn--outline:focus {
  border-color: var(--hp-gold);
  color: var(--hp-ink);
  text-decoration: none;
}

.home-page .hp-btn--dark {
  background: var(--hp-ink);
  color: #fff;
  border: 1px solid var(--hp-ink);
}

.home-page .hp-btn--dark:hover,
.home-page .hp-btn--dark:focus {
  background: #1e242d;
  color: #fff;
  text-decoration: none;
}

.home-page .hp-text-link {
  font-family: var(--hp-cond);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-champagne);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.home-page .hp-text-link:hover,
.home-page .hp-text-link:focus {
  color: #fff;
}

.home-page .hp-hero__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  font-family: var(--hp-cond);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  padding-top: 0.5rem;
}

.home-page .hp-hero__contact a {
  color: #fff;
  font-weight: 700;
}

.home-page .hp-hero__contact a:hover,
.home-page .hp-hero__contact a:focus {
  color: var(--hp-champagne);
}

.home-page .hp-hero__divider {
  opacity: 0.45;
}

/* ========== SEARCH PANEL ========== */

.home-page .hp-search {
  position: relative;
  z-index: 10;
  margin-top: clamp(-3.5rem, -8vw, -2rem);
  padding: 0 var(--hp-gutter);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.home-page .hp-search__panel {
  max-width: 920px;
  margin: 0 auto;
  background: var(--hp-ivory);
  border: 1px solid var(--hp-line-dark);
  box-shadow: var(--hp-shadow);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
}

.home-page .hp-search__label {
  font-family: var(--hp-cond);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-gold);
  margin-bottom: 0.75rem;
}

.home-page .hp-search__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.home-page .hp-search__grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  text-align: center;
  font-family: var(--hp-cond);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--hp-ink);
  background: var(--hp-paper);
  border: 1px solid var(--hp-line-dark);
  transition: border-color 0.2s, background 0.2s;
}

.home-page .hp-search__grid a:hover,
.home-page .hp-search__grid a:focus {
  border-color: var(--hp-gold);
  background: #fff;
  text-decoration: none;
  color: var(--hp-ink);
}

.home-page .hp-search__note {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  color: var(--hp-stone);
  text-align: center;
}

/* ========== MAIN SECTIONS ========== */

.home-page .hp-main {
  overflow-x: hidden;
}

.home-page .hp-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--hp-gutter);
}

.home-page .hp-section--paper {
  background: var(--hp-paper);
}

.home-page .hp-section--dark {
  background: var(--hp-ink);
  color: #fff;
}

.home-page .hp-section__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.home-page .hp-kicker {
  font-family: var(--hp-cond);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hp-gold);
  margin-bottom: 0.65rem;
}

.home-page .hp-section--dark .hp-kicker {
  color: var(--hp-champagne);
}

.home-page .hp-heading {
  font-family: var(--hp-serif);
  font-weight: 500;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  color: var(--hp-ink);
  margin-bottom: 1rem;
}

.home-page .hp-section--dark .hp-heading {
  color: #fff;
}

.home-page .hp-lede {
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.7;
  color: var(--hp-ink-soft);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.home-page .hp-section--dark .hp-lede {
  color: rgba(255, 255, 255, 0.82);
}

/* Trust bar */

.home-page .hp-trust {
  background: var(--hp-ink);
  color: #fff;
  padding: 1rem var(--hp-gutter);
}

.home-page .hp-trust__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-page .hp-trust__marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.home-page .hp-trust__marks img {
  height: auto;
  max-height: 52px;
  width: auto;
}

.home-page .hp-trust__phone {
  font-family: var(--hp-cond);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  margin: 0;
}

.home-page .hp-trust__phone a {
  color: #fff;
}

.home-page .hp-trust__tag {
  font-size: 0.88rem;
  color: var(--hp-champagne);
  margin: 0;
}

/* Featured / IDX */

.home-page .hp-featured-section .hp-section__inner {
  max-width: 1320px;
}

.home-page .hp-featured__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .home-page .hp-featured__header {
    grid-template-columns: 1fr 1.4fr;
    align-items: end;
  }
}

.home-page .hp-idx-viewport {
  background: #fff;
  border: 1px solid var(--hp-line-dark);
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* IDX custom showcase — larger listing cards (injected markup) */
.home-page .hp-idx-viewport > table,
.home-page .hp-idx-viewport table {
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  border-collapse: separate !important;
  border-spacing: clamp(1rem, 2.5vw, 1.75rem) !important;
  border: none !important;
  margin: 0 !important;
  background: transparent !important;
}

.home-page .hp-idx-viewport td,
.home-page .hp-idx-viewport th {
  border: none !important;
  vertical-align: top !important;
  padding: clamp(0.5rem, 1.2vw, 0.85rem) !important;
  font-family: var(--hp-sans) !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  color: var(--hp-ink-soft) !important;
}

.home-page .hp-idx-viewport td {
  min-width: min(100%, 320px);
  width: 33.333%;
}

@media (min-width: 992px) {
  .home-page .hp-idx-viewport td {
    min-width: 340px;
  }
}

.home-page .hp-idx-viewport img {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 220px;
  max-height: none !important;
  display: block !important;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  margin-bottom: 0.65rem;
  border: 1px solid var(--hp-line-dark);
}

@media (min-width: 768px) {
  .home-page .hp-idx-viewport img {
    min-height: 260px;
  }
}

@media (min-width: 1200px) {
  .home-page .hp-idx-viewport img {
    min-height: 300px;
  }
}

.home-page .hp-idx-viewport a {
  color: var(--hp-gold) !important;
  text-decoration: none !important;
  font-weight: 600;
}

.home-page .hp-idx-viewport a:hover,
.home-page .hp-idx-viewport a:focus {
  color: var(--hp-gold-hover) !important;
  text-decoration: underline !important;
}

.home-page .hp-idx-viewport b,
.home-page .hp-idx-viewport strong {
  font-family: var(--hp-cond) !important;
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: var(--hp-ink) !important;
}

.home-page .hp-idx-viewport [id^="IDX"],
.home-page .hp-idx-viewport [id^="idx"],
.home-page .hp-idx-viewport [class*="IDX-"],
.home-page .hp-idx-viewport [class*="idx-"] {
  max-width: 100%;
}

.home-page .hp-showcase-link {
  display: block;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--hp-paper);
  border: 1px solid var(--hp-line-dark);
  text-decoration: none;
  color: var(--hp-ink);
  transition: border-color 0.2s;
}

.home-page .hp-showcase-link:hover,
.home-page .hp-showcase-link:focus {
  border-color: var(--hp-gold);
  text-decoration: none;
  color: var(--hp-ink);
}

.home-page .hp-showcase-link__title {
  font-family: var(--hp-serif);
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.home-page .hp-showcase-link__meta {
  font-size: 0.95rem;
  color: var(--hp-stone);
}

/* Meet Jackie */

.home-page .hp-jackie {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .home-page .hp-jackie {
    grid-template-columns: minmax(280px, 42%) 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

.home-page .hp-jackie__portrait {
  margin: 0;
}

.home-page .hp-jackie__portrait img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--hp-line-dark);
  border-radius: 1px;
}

.home-page .hp-cred-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}

.home-page .hp-cred-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--hp-ink-soft);
}

.home-page .hp-cred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--hp-gold);
  border-radius: 50%;
}

.home-page .hp-jackie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Communities */

.home-page .hp-communities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .home-page .hp-communities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .home-page .hp-communities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-page .hp-communities__grid .hp-community-card--featured {
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .home-page .hp-communities__grid .hp-community-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.home-page .hp-community-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 200px;
  text-decoration: none;
  border: 1px solid var(--hp-line-dark);
}

.home-page .hp-community-card--featured {
  min-height: 280px;
}

.home-page .hp-community-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 2;
  transition: transform 0.45s ease;
}

.home-page .hp-community-card:hover img,
.home-page .hp-community-card:focus img {
  transform: scale(1.03);
}

.home-page .hp-community-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 12, 15, 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.15rem;
}

.home-page .hp-community-card__name {
  font-family: var(--hp-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #fff;
  margin-bottom: 0.2rem;
}

.home-page .hp-community-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

.home-page .hp-communities__cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* Pathways */

.home-page .hp-pathways {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .home-page .hp-pathways {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-page .hp-path-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.home-page .hp-path-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.45s ease;
}

.home-page .hp-path-card:hover .hp-path-card__bg,
.home-page .hp-path-card:focus .hp-path-card__bg {
  transform: scale(1.04);
}

.home-page .hp-path-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 15, 0.15) 0%, rgba(10, 12, 15, 0.78) 100%);
  z-index: 1;
}

.home-page .hp-path-card__content {
  position: relative;
  z-index: 2;
}

.home-page .hp-path-card__eyebrow {
  font-family: var(--hp-cond);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hp-champagne);
  margin-bottom: 0.35rem;
}

.home-page .hp-path-card__title {
  font-family: var(--hp-serif);
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.home-page .hp-path-card__meta {
  font-size: 0.88rem;
  opacity: 0.9;
  margin: 0;
}

/* Market */

.home-page .hp-market {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .home-page .hp-market {
    grid-template-columns: minmax(220px, 300px) 1fr;
  }
}

.home-page .hp-market__portrait img {
  width: 100%;
  height: auto;
  border: 1px solid var(--hp-line-dark);
}

.home-page .hp-market__stat-note {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--hp-stone);
  margin-bottom: 0.75rem;
}

.home-page .hp-market__excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--hp-ink-soft);
  margin-bottom: 1rem;
}

.home-page .hp-market__subhead {
  font-family: var(--hp-serif);
  font-size: 1.15rem;
  margin: 1rem 0 0.5rem;
  color: var(--hp-ink);
}

/* Buy / Sell */

.home-page .hp-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .home-page .hp-duo {
    grid-template-columns: 1fr 1fr;
  }
}

.home-page .hp-duo__panel {
  background: #fff;
  border: 1px solid var(--hp-line-dark);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.home-page .hp-duo__panel h3 {
  font-family: var(--hp-serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--hp-ink);
}

.home-page .hp-duo__panel p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--hp-ink-soft);
  margin-bottom: 1rem;
}

.home-page .hp-duo__links {
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

.home-page .hp-duo__links a {
  color: var(--hp-gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.home-page .hp-duo__links a + a::before {
  content: " · ";
  color: var(--hp-stone);
  text-decoration: none;
}

/* Resources */

.home-page .hp-resources {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .home-page .hp-resources {
    grid-template-columns: repeat(2, 1fr);
  }
}

.home-page .hp-resource-link {
  display: block;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--hp-line-dark);
  text-decoration: none;
  color: var(--hp-ink);
  transition: border-color 0.2s;
}

.home-page .hp-resource-link:hover,
.home-page .hp-resource-link:focus {
  border-color: var(--hp-gold);
  text-decoration: none;
  color: var(--hp-ink);
}

.home-page .hp-resource-link__title {
  font-family: var(--hp-cond);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.home-page .hp-resource-link__desc {
  font-size: 0.88rem;
  color: var(--hp-stone);
  margin: 0;
}

/* Alerts */

.home-page .hp-alerts {
  text-align: center;
}

.home-page .hp-alerts img {
  max-width: 100%;
  height: auto;
}

/* Testimonials */

.home-page .hp-testimonials {
  background: var(--hp-paper);
}

.home-page .hp-testimonials__carousel {
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.home-page .hp-testimonials__carousel .carousel-inner {
  border-radius: 1px;
  min-height: 22rem;
}

.home-page .hp-testimonials__carousel .carousel-item {
  min-height: 22rem;
}

.home-page .hp-testimonial-card {
  margin: 0;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem);
  background: #fff;
  border: 1px solid var(--hp-line-dark);
  box-shadow: var(--hp-shadow);
  min-height: 22rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-page .hp-testimonial-card__quote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  flex: 1 1 auto;
}

.home-page .hp-testimonial-card__quote p {
  font-family: var(--hp-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--hp-ink-soft);
  margin: 0;
}

.home-page .hp-testimonial-card__quote p::before {
  content: "\201C";
  color: var(--hp-gold);
  font-size: 1.15em;
  line-height: 0;
  vertical-align: -0.12em;
  margin-right: 0.08em;
}

.home-page .hp-testimonial-card__author {
  font-family: var(--hp-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--hp-ink);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--hp-line-dark);
  flex-shrink: 0;
}

.home-page .hp-testimonials__carousel .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
}

.home-page .hp-testimonials__carousel .carousel-indicators li {
  background-color: var(--hp-gold);
  opacity: 0.35;
}

.home-page .hp-testimonials__carousel .carousel-indicators li.active {
  opacity: 1;
}

.home-page .hp-testimonials__carousel .carousel-control-prev,
.home-page .hp-testimonials__carousel .carousel-control-next {
  width: 8%;
  opacity: 0.85;
}

.home-page .hp-testimonials__carousel .carousel-control-prev-icon,
.home-page .hp-testimonials__carousel .carousel-control-next-icon {
  filter: none;
  background-color: var(--hp-ink);
  border-radius: 50%;
  padding: 1.25rem;
  background-size: 50%;
}

@media (max-width: 575px) {
  .home-page .hp-testimonials__carousel .carousel-inner,
  .home-page .hp-testimonials__carousel .carousel-item,
  .home-page .hp-testimonial-card {
    min-height: 26rem;
  }

  .home-page .hp-testimonial-card {
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .home-page .hp-testimonials__carousel .carousel-control-prev,
  .home-page .hp-testimonials__carousel .carousel-control-next {
    display: none;
  }
}

/* Final CTA */

.home-page .hp-cta-final {
  text-align: center;
  background: var(--hp-ink);
  color: #fff;
}

.home-page .hp-cta-final .hp-heading {
  color: #fff;
}

.home-page .hp-cta-final .hp-lede {
  color: rgba(255, 255, 255, 0.85);
  margin-left: auto;
  margin-right: auto;
}

.home-page .hp-cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Footer — full viewport width */

.home-page .hp-footer-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.home-page .hp-footer-full #footer-cont,
.home-page .hp-footer-full #footer-cont.col-xl-14 {
  width: 100% !important;
  max-width: none !important;
  flex: 0 0 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: linear-gradient(180deg, #383b44 0%, #2a2d35 100%);
  border-top: 1px solid rgba(212, 201, 176, 0.2);
}

.home-page .hp-footer-full #footer.row {
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: clamp(2rem, 5vw, 3rem) var(--hp-gutter);
  background: transparent;
  color: #eee;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.home-page .hp-footer-full #footer.row > [class*="col-"] {
  flex: none !important;
  max-width: none !important;
  width: 100%;
}

.home-page .hp-footer-full #foot-top {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  padding: 0 0 1.25rem;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .hp-footer-full #foot-top a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.home-page .hp-footer-full #foot-top a:hover,
.home-page .hp-footer-full #foot-top a:focus {
  color: var(--hp-champagne);
}

.home-page .hp-footer-full #foot-cells {
  border-right: none;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.88);
}

.home-page .hp-footer-full #foot-cells a {
  color: #fff;
}

.home-page .hp-footer-full #foot-cells strong {
  color: var(--hp-champagne);
  letter-spacing: 0.06em;
}

.home-page .hp-footer-full #contact-button-foot {
  background-color: var(--hp-gold);
  border: 1px solid var(--hp-gold);
  color: var(--hp-void);
  font-weight: 700;
}

@media (min-width: 992px) {
  .home-page .hp-footer-full #footer.row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }

  .home-page .hp-footer-full #foot-top {
    grid-column: 1 / -1;
  }

  .home-page .hp-footer-full #footer > div#foot-cells:nth-of-type(2) {
    text-align: left;
    justify-content: flex-start !important;
  }

  .home-page .hp-footer-full #footer > div#foot-cells:nth-of-type(3) {
    text-align: center;
    justify-content: center !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
  }

  .home-page .hp-footer-full #footer > div#foot-cells:nth-of-type(4) {
    text-align: right;
    justify-content: flex-end !important;
  }
}

/* Reveal animation */

.home-page .hp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.home-page .hp-reveal--visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-page .hp-community-card img,
  .home-page .hp-path-card__bg {
    transition: none;
  }
}

/* Focus visibility */

.home-page a:focus-visible,
.home-page button:focus-visible {
  outline: 2px solid var(--hp-gold);
  outline-offset: 2px;
}

/* Mobile */

@media (max-width: 575px) {
  .home-page .hp-search__grid {
    grid-template-columns: 1fr;
  }

  .home-page .hp-hero__inner {
    padding-bottom: 5.5rem;
  }
}
