:root {
  --landing-bg: #0a0a0a;
  --landing-panel: #111111;
  --landing-panel-soft: #161616;
  --landing-copy: rgba(255, 255, 255, 0.74);
  --landing-border: rgba(255, 255, 255, 0.12);
  --landing-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  --hero-parallax: 0px;
}

html {
  background: var(--landing-bg);
  overflow-x: hidden;
  overscroll-behavior-y: auto;
}

body {
  background: linear-gradient(180deg, #070707 0%, #0b0b0b 30%, #111 100%);
  color: var(--white);
  font-family: 'Manrope', system-ui, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
  touch-action: auto;
}

.btn {
  font-family: 'Manrope', system-ui, sans-serif;
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-outline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.06);
}

body.menu-open {
  overflow: hidden;
}

body.har-search-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

img.img-fallback {
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #111111 0%, #232323 100%);
}

main {
  overflow-x: clip;
  touch-action: auto;
}

.section-shell {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.section-dark {
  background: transparent;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  isolation: isolate;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-nav.solid {
  height: 84px;
  background: rgba(8, 8, 8, 0.97);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-logo {
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
}

.brand-logo-nav {
  height: 72px;
  filter: brightness(0) invert(1) drop-shadow(0 12px 20px rgba(0, 0, 0, 0.42));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
}

.nav-links-header,
.nav-close,
.nav-scrim {
  display: none;
}

.nav-scrim[hidden] {
  display: none !important;
}

.nav-links-header {
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.nav-links-title {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: scaleX(0.2);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-current::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-links a.is-current {
  color: var(--white);
}

.nav-cta {
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

.nav-signin {
  color: rgba(255, 255, 255, 0.82);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  font-size: 1.3rem;
  font-family: inherit;
  line-height: 1;
}

.har-embed-shell {
  background: #0d0d0d;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  --har-frame-scale: 0.72;
  --har-frame-size: 139%;
  height: min(62dvh, 660px);
  min-height: 480px;
}

.har-embed-frame {
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--har-frame-size);
  height: var(--har-frame-size);
  min-height: 0;
  border: none;
  background: #0d0d0d;
  transform: scale(var(--har-frame-scale));
  transform-origin: top left;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
}

.hero::before {
  content: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  touch-action: pan-y;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--hero-parallax), 0) scale(1.08);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
  filter: saturate(1.04) contrast(1.07) brightness(0.96);
  backface-visibility: hidden;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.48) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 360px);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.hero-subheadline {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-brand-line {
  margin-top: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
}

.hero-supporting-line {
  margin-top: -0.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.7;
}

.hero-copy > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy > *:nth-child(1) { transition-delay: 0.08s; }
.hero-copy > *:nth-child(2) { transition-delay: 0.16s; }
.hero-copy > *:nth-child(3) { transition-delay: 0.24s; }
.hero-copy > *:nth-child(4) { transition-delay: 0.34s; }

.hero.in .hero-copy > *,
.hero.in .hero-aside > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
}

.hero-kicker::before,
.section-tag::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.hero-kicker::before {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.45s;
}

.hero.in .hero-kicker::before {
  transform: scaleX(1);
}

.hero h1 {
  margin: 1.5rem 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 500;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero h1 em,
.section-title span {
  color: var(--gold-lt);
  font-style: italic;
  font-weight: 400;
}

.hero-lead,
.section-copy,
.experience-item p,
.process-card p,
.contact-row strong,
.contact-row a,
.footer-brand p {
  color: var(--landing-copy);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-lead {
  max-width: 46rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.hero-btn {
  min-width: 210px;
  justify-content: center;
  font-size: 0.72rem;
  padding: 1rem 1.75rem;
}

.hero-btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-aside {
  display: grid;
  gap: 1rem;
}

.hero-aside > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-aside > *:nth-child(1) { transition-delay: 0.24s; }
.hero-aside > *:nth-child(2) { transition-delay: 0.34s; }
.hero-aside > *:nth-child(3) { transition-delay: 0.44s; }

.hero-stat-card,
.process-card,
.contact-form-box {
  background: rgba(17, 17, 17, 0.74);
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow);
  backdrop-filter: blur(14px);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem;
  transform: translateY(0);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.hero-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.hero-stat-value {
  font-family: var(--serif);
  font-size: 2.3rem;
  color: var(--white);
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  animation: heroScrollPulse 2.4s ease-in-out infinite;
}

.experience,
.process,
.contact,
.residences {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.residences .section-tag {
  color: rgba(255, 255, 255, 0.72);
}

.residences .section-tag::before {
  background: rgba(255, 255, 255, 0.5);
}

.positioning-strip {
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.positioning-strip-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.9rem 2rem;
  align-items: center;
}

.positioning-strip-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.experience-grid-copy-only {
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.experience-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border: 1px solid var(--landing-border);
  background: #111;
}

.experience-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
}

.experience-image-wrap img {
  height: 100%;
  object-fit: cover;
}

.section-title {
  margin: 1.25rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.experience-list {
  margin-top: 2rem;
  border-top: 1px solid var(--landing-border);
}

.experience-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--landing-border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.experience-item:hover {
  transform: translateX(10px);
  border-color: rgba(255, 255, 255, 0.2);
}

.experience-item h3,
.process-card h3 {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.residence-meta h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.3;
}

.experience-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading .section-title {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading .section-copy {
  max-width: 420px;
}

.residence-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-chip {
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  padding: 0.85rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.residence-grid {
  columns: 3 320px;
  column-gap: 1.5rem;
}

.residence-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  touch-action: pan-y;
}

.residence-card.is-hidden {
  display: none;
}

.residence-media {
  overflow: hidden;
  background: #111;
  border: 1px solid var(--landing-border);
  touch-action: pan-y;
}

.residence-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.9s ease;
  pointer-events: none;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

.residence-media.tall img {
  min-height: 560px;
}

.residence-media.square img {
  min-height: 360px;
}

.residence-media.wide img {
  min-height: 300px;
}

.residence-card:hover .residence-media img {
  transform: scale(1.05);
}

.residence-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 0.35rem 0.25rem;
}

.market-card-action {
  margin-top: 1rem;
  align-self: flex-start;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.market-card-action:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.residence-meta-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.residence-price {
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.residence-location {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.residence-specs {
  display: flex;
  gap: 0;
  margin-top: 0.35rem;
}

.residence-specs span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding-right: 0.875rem;
  margin-right: 0.875rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.residence-specs span:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.philosophy {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.philosophy-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 42%),
    url('https://enabled-locust.10web.cloud/wp-content/uploads/2026/04/residence_marble.webp') center/cover;
  background-attachment: fixed;
  pointer-events: none;
  touch-action: pan-y;
}

.philosophy-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.philosophy-content .section-tag {
  justify-content: center;
}

.philosophy-content h2 {
  max-width: 920px;
  margin: 1.5rem auto 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.1;
  font-weight: 400;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.process-card {
  min-height: 280px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 36px 76px rgba(0, 0, 0, 0.34);
}

.process-card:hover::after {
  opacity: 1;
}

.process-card span {
  display: inline-block;
  margin-bottom: 1.3rem;
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.28);
  transition: transform 0.35s ease;
}

.contact-copy .section-title {
  max-width: 620px;
}

.cta-break {
  padding: 0 0 clamp(4.5rem, 9vw, 6rem);
}

.cta-break-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-rows {
  margin-top: 2rem;
  border-top: 1px solid var(--landing-border);
}

.contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--landing-border);
}

.contact-row span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-row a {
  color: var(--white);
  text-decoration: none;
}

.contact-form-box {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-form-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.34);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.app-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  min-height: 58px;
  padding: 0.95rem 1rem;
  font: inherit;
  line-height: 1.35;
  border-radius: 0;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.75rem;
  background-color: rgba(255, 255, 255, 0.04);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.72) 50%),
    linear-gradient(135deg, rgba(255,255,255,0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 1.2rem) 50%,
    calc(100% - 0.85rem) 50%;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
  background-repeat: no-repeat;
}

.form-group select option {
  color: var(--dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.journey-launch-box {
  display: grid;
  gap: 1.4rem;
}

.journey-launch-eyebrow,
.journey-modal-tag,
.journey-step-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.journey-launch-copy h3 {
  margin: 0.6rem 0 0.7rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
  font-weight: 400;
}

.journey-launch-copy p,
.journey-step-head p,
.journey-modal-aside p,
.journey-agreement-list div,
.journey-checkbox span {
  color: var(--landing-copy);
  line-height: 1.85;
}

.journey-modal-aside p {
  font-size: 0.9rem;
  line-height: 1.55;
}

.journey-launch-points {
  display: grid;
  gap: 0.85rem;
}

.journey-launch-point {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.journey-launch-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.journey-launch-note {
  color: rgba(255, 255, 255, 0.54);
}

/* ── Portal account section ─────────────────────────── */
.form-portal-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-portal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122,122,122,0.35), transparent);
  margin: 0.5rem 0;
}

.form-portal-header { display: flex; flex-direction: column; gap: 0.3rem; }

.form-portal-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Manrope', system-ui, sans-serif;
}

.form-portal-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.form-portal-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  font-size: 0.85rem;
}

/* ── Submit / message ───────────────────────────────── */
.form-submit {
  justify-content: center;
  margin-top: 0.5rem;
}

.form-message {
  display: none;
  padding: 1rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
}

.form-message.success {
  display: block;
  background: rgba(32, 112, 80, 0.16);
  border-color: rgba(32, 112, 80, 0.35);
  color: #b9efc8;
}

.form-message.error {
  display: block;
  background: rgba(176, 48, 32, 0.16);
  border-color: rgba(176, 48, 32, 0.35);
  color: #ffcdc6;
}

.form-message.loading {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.32);
}

.footer-brand-line {
  margin-top: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.footer-brand {
  max-width: 460px;
}

.footer-brand p {
  margin-top: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.95s ease, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1), filter 0.95s ease;
}

.reveal {
  transform: translateY(38px);
}

.reveal-left {
  transform: translateX(-38px);
}

.reveal-right {
  transform: translateX(38px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

/* ── HERO LINE ANIMATIONS ─────────────────────────────────── */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero h1 per-line clip reveal */
.hero-line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}

.hero-line > span,
.hero-line > em {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

.hero.in .hero-line > span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.hero.in .hero-line > em {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.process-card:hover span {
  transform: scale(1.08);
}

/* Page enter animation */
main {
  animation: pageEnter 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroGlowDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }
  50% {
    transform: translate3d(28px, 18px, 0) scale(1.08);
    opacity: 0.92;
  }
}

@keyframes heroScrollPulse {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-scroll {
    animation: none;
  }

  main {
    animation: none;
  }

  .hero-media img,
  .hero-copy > *,
  .hero-aside > *,
  .hero-kicker::before,
  .hero-line > span,
  .hero-line > em,
  .reveal,
  .reveal-left,
  .reveal-right,
  .filter-chip,
  .process-card,
  .contact-form-box,
  .hero-stat-card,
  .experience-item,
  .footer-links a,
  .nav-links a::after {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .experience-grid,
  .contact-grid,
  .section-heading,
  .footer-grid,
  .cta-break-shell {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-grid,
  .experience-grid,
  .contact-grid {
    gap: 2rem;
  }

  .section-heading .section-copy {
    max-width: none;
  }

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

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .hero-media,
  .hero-media img,
  .hero-overlay,
  .residence-media,
  .residence-media img,
  .philosophy-backdrop {
    pointer-events: none !important;
    touch-action: pan-y !important;
  }

  .residence-card,
  .residence-meta,
  .market-card-action {
    pointer-events: auto;
  }

  .market-card-action {
    position: relative;
    z-index: 2;
    touch-action: manipulation;
  }

  .philosophy-backdrop {
    background-attachment: scroll;
  }

  .site-nav {
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: -1;
    flex-shrink: 0;
    position: relative;
    z-index: 1230;
  }

  .nav-logo {
    margin-right: auto;
    position: relative;
    z-index: 1230;
  }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    bottom: auto;
    height: calc(100dvh - 84px);
    width: min(88vw, 320px);
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1rem 1.25rem;
    background: rgba(9, 9, 9, 0.98);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1220;
    overflow-y: auto;
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.32);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
  }

  .nav-links-header,
  .nav-close {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a,
  .nav-cta {
    display: block;
    text-align: left;
    width: 100%;
    padding: 1rem 0;
  }

  .nav-scrim { display: none !important; }

  .hero {
    align-items: center;
    padding-top: 7rem;
  }

  .hero-scroll {
    display: none;
  }

  .form-grid,
  .contact-row {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .positioning-strip-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .residence-grid {
    columns: 1;
  }

  .philosophy-backdrop {
    background-attachment: scroll;
  }
}

@media (max-width: 540px) {
  .section-shell,
  .hero-grid {
    width: min(100% - 1.5rem, 1280px);
  }

  .site-nav {
    padding-inline: 0.85rem;
  }

  .brand-logo-nav {
    height: 58px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-btn {
    width: 100%;
  }

  .experience-image-wrap {
    min-height: 460px;
  }

  .residence-meta {
    flex-direction: column;
    align-items: start;
  }

  .har-search-section {
    padding: 4.5rem 0;
  }

  .har-search-launch {
    grid-template-columns: 1fr;
  }

  .har-launch-btn {
    width: 100%;
    justify-content: center;
  }

  .har-search-bar {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }

  .har-search-heading {
    font-size: 1.6rem;
  }

  .har-custom-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .har-form-actions {
    flex-direction: column;
  }

  .har-search-submit,
  .har-search-reset {
    width: 100%;
  }

  .har-embed-shell {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
    height: 88svh;
    min-height: 720px;
  }

  .har-embed-frame {
    height: var(--har-frame-size);
    min-height: 0;
    background: transparent;
    -webkit-overflow-scrolling: touch;
    touch-action: auto;
  }

  .har-mobile-tip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .har-mobile-toggle {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .har-search-wrap.har-mobile-locked .har-embed-frame {
    pointer-events: none;
  }

  .har-search-wrap.har-mobile-active .har-scroll-guard {
    display: none;
  }

  .har-search-wrap.har-mobile-active .har-embed-shell,
  .har-embed-shell.har-mobile-active {
    position: fixed;
    inset: 0;
    z-index: 1800;
    display: block !important;
    background: #fff;
    overflow: hidden;
    border-radius: 0;
    touch-action: auto;
    height: 100dvh;
    min-height: 0;
  }

  .har-search-wrap.har-mobile-active .har-mobile-active-bar:not([hidden]),
  .har-embed-shell.har-mobile-active .har-mobile-active-bar:not([hidden]) {
    display: flex;
  }

  .har-search-wrap.har-mobile-active .har-embed-frame,
  .har-embed-shell.har-mobile-active .har-embed-frame {
    pointer-events: auto;
    touch-action: auto;
    display: block;
    top: 58px;
    width: var(--har-frame-size);
    height: calc(139dvh - 81px);
    min-height: 0;
    margin-top: 0;
    background: #fff;
  }

  .har-landing-placeholder {
    min-height: 260px;
    padding: 2rem 1.25rem;
  }
}

@media (min-width: 801px) {
  .har-scroll-guard {
    display: none !important;
  }
}

/* ── AGENT BIO MODAL ──────────────────────────────────── */
.agent-modal-overlay {
  position: fixed; inset: 0; z-index: 1400;
  background: rgba(4,4,4,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.agent-modal-overlay.open {
  opacity: 1; pointer-events: all;
}

.agent-modal {
  background: #0e0e0e;
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%; max-width: 960px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34,1.3,0.64,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.agent-modal-overlay.open .agent-modal {
  transform: translateY(0) scale(1);
}

.agent-modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; color: rgba(255,255,255,0.6);
  font-size: 13px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.agent-modal-close:hover {
  background: rgba(255,255,255,0.14); color: var(--white);
}

.agent-modal.calendly-modal {
  max-width: 700px;
  padding: 3rem 1.5rem 1.5rem;
  overflow: hidden;
}
.agent-modal.calendly-modal .calendly-inline-widget {
  border-radius: 4px;
  overflow: hidden;
}

.market-modal {
  max-width: 1080px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.market-modal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 3.25rem;
}

.market-modal-title {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
}

.market-modal-link {
  flex-shrink: 0;
}

.market-modal-frame-shell {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #090909;
  min-height: 70dvh;
  height: 70dvh;
  position: relative;
  --har-frame-scale: 0.72;
  --har-frame-size: 139%;
}

.market-modal-frame {
  display: block;
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--har-frame-size);
  height: var(--har-frame-size);
  min-height: 0;
  border: none;
  background: #090909;
  transform: scale(var(--har-frame-scale));
  transform-origin: top left;
}

.har-modal {
  max-width: 1120px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.har-modal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 3.25rem;
}

.har-modal-title {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
}

.har-modal-link {
  flex-shrink: 0;
}

.journey-modal {
  max-width: 1240px;
  width: min(1240px, 100%);
  padding: 0;
  overflow: hidden;
  height: min(88dvh, 900px);
  max-height: calc(100dvh - 3rem);
  display: flex;
  flex-direction: column;
  background: #0b0b0b !important;
  isolation: isolate;
}

.journey-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0b0b0b;
  pointer-events: none;
}

.journey-modal-shell {
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.journey-modal-aside {
  background:
    linear-gradient(180deg, #111111 0%, #090909 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.05rem 2rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.22) rgba(255,255,255,0.04);
}

.journey-modal-aside::-webkit-scrollbar {
  width: 8px;
}

.journey-modal-aside::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04);
}

.journey-modal-aside::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
}

.journey-modal-aside h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
}

.journey-progress {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.journey-progress-shell {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.journey-progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.journey-progress-meta span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
}

.journey-progress-meta strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.journey-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.journey-progress-fill {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.96));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
  transition: width 0.35s ease;
}

.journey-progress-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  line-height: 1.5;
}

.journey-progress-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.58rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.journey-progress-item span {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.journey-progress-item strong {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.journey-progress-item.is-active {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  transform: none;
}

.journey-step-caption {
  margin-top: auto;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.journey-modal-main {
  padding: 2.6rem clamp(2rem, 3.2vw, 3rem) 1.75rem;
  background: #0b0b0b;
  overflow-y: scroll;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.journey-modal-main::-webkit-scrollbar {
  width: 12px;
}

.journey-modal-main::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-modal-main::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(9, 9, 9, 0.95);
  border-radius: 999px;
}

.journey-modal-main::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.34);
}

.journey-quick-actions {
  display: none;
}

.journey-quick-btn {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.journey-form {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding-top: 0.35rem;
  padding-bottom: 7rem;
}

.journey-step {
  display: none;
  gap: 1rem;
  animation: journeyStepFade 0.35s ease;
  align-content: start;
}

.journey-step.is-active {
  display: grid;
}

.journey-step[data-step="3"] {
  gap: 0.85rem;
}

.journey-step[data-step="3"] .journey-step-head {
  margin-bottom: 0.15rem;
}

.journey-step[data-step="3"] .journey-har-shell {
  padding: 0.85rem;
}

.journey-step[data-step="3"] .journey-har-frame-shell {
  min-height: clamp(220px, 24dvh, 300px);
}

.journey-step[data-step="3"] .journey-har-frame {
  height: clamp(220px, 24dvh, 300px);
}

.journey-step[data-step="3"] #appHomes {
  min-height: 110px;
}

.journey-step-head {
  margin-bottom: 0.4rem;
}

.journey-step-head h3 {
  margin: 0.55rem 0 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.06;
  font-weight: 400;
}

.journey-form .form-group textarea {
  min-height: 140px;
}

.journey-har-shell,
.journey-agreement-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
}

.journey-har-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.journey-har-head strong,
.journey-agreement-card h4 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.journey-har-jump {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-har-frame-shell {
  position: relative;
  min-height: clamp(280px, 34dvh, 420px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #090909;
  overflow: hidden;
  --har-frame-scale: 0.72;
  --har-frame-size: 139%;
}

.journey-har-frame {
  position: absolute;
  inset: 0 auto auto 0;
  width: var(--har-frame-size);
  height: var(--har-frame-size);
  border: none;
  background: #090909;
  transform: scale(var(--har-frame-scale));
  transform-origin: top left;
}

.journey-har-guard {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.24), rgba(6, 6, 6, 0.66));
  backdrop-filter: blur(14px);
  z-index: 3;
}

.journey-har-guard-panel {
  width: min(100%, 420px);
  padding: 1.2rem 1.15rem;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 9, 0.82);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

.journey-har-guard-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.journey-har-guard-panel h4 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  line-height: 1.05;
  color: var(--white);
  font-weight: 400;
}

.journey-har-guard-panel p {
  margin: 0 0 0.95rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  font-size: 0.88rem;
}

.journey-har-controls {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.journey-har-controls p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.5;
}

.journey-har-toggle {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  cursor: pointer;
}

.journey-har-frame-shell.journey-har-locked .journey-har-frame {
  pointer-events: none;
}

.journey-har-frame-shell.journey-har-active .journey-har-guard {
  display: none;
}

.journey-har-frame-shell.journey-har-active .journey-har-frame {
  pointer-events: auto;
}

.journey-har-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.52);
}

.journey-agreement-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.journey-agreement-copy {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.journey-dotloop-splash {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080808;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.journey-dotloop-splash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-dotloop-splash h4 {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 400;
  color: #fff;
}

.journey-dotloop-status {
  margin: 0;
  padding: 0.9rem 1rem;
  color: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-dotloop-frame-shell {
  min-height: clamp(420px, 58dvh, 680px);
  background: #111;
}

.journey-dotloop-frame-shell.is-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
}

.journey-dotloop-frame-shell.is-empty::before {
  content: "Dotloop form window";
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.journey-dotloop-frame {
  display: block;
  width: 100%;
  min-height: clamp(420px, 58dvh, 680px);
  border: 0;
  background: #fff;
}

.journey-checkbox {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  cursor: pointer;
}

.journey-checkbox input {
  margin-top: 0.28rem;
  accent-color: #ffffff;
}

.journey-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.25rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 9, 0.92);
  position: static;
  z-index: 2;
  box-shadow: none;
}

#journeySubmitBtn {
  display: none;
  margin-left: 0;
}

#journeyQuickSubmitBtn {
  display: none;
}

.journey-final-step #journeyNextBtn {
  display: none;
}

.journey-final-step #journeySubmitBtn {
  display: inline-flex;
}

.journey-final-step #journeyQuickNextBtn {
  display: none;
}

.journey-final-step #journeyQuickSubmitBtn {
  display: inline-flex;
}

.agent-modal-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: 560px;
}

/* ── LEFT: Photo column ── */
.agent-photo-col {
  background: #080808;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
  padding: 3rem 2rem 2rem;
  gap: 2.5rem;
}

.agent-headshot-wrap {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.agent-headshot-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #1a1a1a, #111);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
}

.agent-initials {
  font-family: var(--serif);
  font-size: 4rem; font-weight: 300;
  color: var(--white);
  opacity: 0.3;
}

.agent-photo-note {
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
}

.agent-headshot-img {
  width: 100%; height: 100%; object-fit: cover;
}

.agent-photo-stats {
  display: flex; flex-direction: column; gap: 1.25rem;
}

.agent-stat {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.agent-stat:last-child { border-bottom: none; padding-bottom: 0; }

.agent-stat-num {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--white); line-height: 1;
}
.agent-stat-lbl {
  font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}

/* ── RIGHT: Bio column ── */
.agent-bio-col {
  padding: 3rem 3rem 2.5rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}

.agent-bio-tag {
  font-size: 0.58rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.78);
}

.agent-name {
  font-family: var(--serif); font-size: 2.5rem; font-weight: 300;
  color: var(--white); letter-spacing: -0.02em; line-height: 1;
  margin: 0;
}

.agent-title {
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4); line-height: 1.6;
}

.agent-divider {
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.24);
}

.agent-bio-text {
  font-size: 0.9rem; line-height: 1.85;
  color: rgba(255,255,255,0.6);
}

.agent-highlights {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 0.25rem;
}

.agent-highlight {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.agent-hl-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.78); flex-shrink: 0;
  margin-top: 0.45em;
}

.agent-secondary-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.875rem; margin-top: 0.5rem;
}

.agent-photo-slot {
  aspect-ratio: 4/3; overflow: hidden;
  border: 1px dashed rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.02);
}

.agent-photo-slot-label {
  font-size: 0.58rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
}

.agent-cta {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.7rem; letter-spacing: 0.16em;
}

/* ── MODAL RESPONSIVE ──────────────────────────────────── */
@media (max-width: 720px) {
  .agent-modal-overlay {
    align-items: flex-start;
    padding: 0.85rem;
  }

  .agent-modal {
    max-height: min(92dvh, 92svh);
    min-height: auto;
    margin: 0;
    border-radius: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .agent-modal-inner {
    grid-template-columns: 1fr;
  }

  .journey-modal {
    height: min(92dvh, 92svh);
    max-height: min(92dvh, 92svh);
    overflow: hidden;
  }

  .journey-modal-shell {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .journey-modal-aside {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 1rem 1rem;
    flex: 0 0 auto;
    min-height: auto;
    overflow: visible;
  }

  .journey-progress {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .journey-progress-shell {
    gap: 0.6rem;
  }

  .journey-progress-copy {
    font-size: 0.78rem;
  }

  .journey-progress-item {
    justify-content: center;
    padding: 0.7rem 0.35rem;
  }

  .journey-progress-item strong {
    display: none;
  }

  .journey-step-caption {
    margin-top: 0;
  }

  .journey-modal-main {
    padding: 1.2rem 1rem 1rem;
    flex: 1 1 auto;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: auto;
  }

  .journey-form {
    min-height: auto;
    padding-bottom: 0;
    padding-top: 0;
  }

  .journey-actions {
    flex-wrap: wrap;
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    box-shadow: none;
    backdrop-filter: none;
  }

  .journey-quick-actions {
    position: static;
    margin-bottom: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
  }

  .journey-quick-btn {
    flex: 1 1 0;
    justify-content: center;
  }

  #journeyBackBtn,
  #journeyNextBtn,
  #journeySubmitBtn {
    flex: 1 1 0;
    justify-content: center;
  }

  .agent-photo-col {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: row; flex-wrap: wrap;
    gap: 1.5rem;
  }
  .agent-headshot-wrap {
    width: 112px;
    aspect-ratio: 3/4;
  }
  .agent-photo-stats {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .agent-stat { border-bottom: none; padding-bottom: 0; }
  .agent-bio-col {
    padding: 1.4rem 1.2rem 1.5rem;
    gap: 0.9rem;
  }
  .agent-name { font-size: 1.9rem; }
  .agent-secondary-photos { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .agent-modal-overlay {
    padding: 0.5rem;
  }

  .agent-modal {
    max-height: calc(100dvh - 1rem);
  }

  .journey-modal {
    height: calc(100dvh - 1rem);
    max-height: calc(100dvh - 1rem);
    overflow: hidden;
  }

  .journey-modal-aside {
    gap: 0.65rem;
    padding: 0.9rem 0.85rem 0.75rem;
  }

  .journey-modal-aside h2 {
    font-size: 1.6rem;
  }

  .journey-modal-aside > p {
    display: none;
  }

  .journey-progress-shell {
    padding: 0.65rem;
  }

  .journey-progress-copy {
    display: none;
  }

  .journey-progress-item {
    min-height: 38px;
    padding: 0.48rem 0.25rem;
  }

  .journey-progress-item span {
    font-size: 0.92rem;
  }

  .journey-modal-main {
    padding: 1rem 0.85rem 0.9rem;
  }

  .journey-launch-actions {
    flex-direction: column;
  }

  .journey-launch-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .journey-step-head h3,
  .journey-launch-copy h3 {
    font-size: 1.65rem;
  }

  .journey-har-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .journey-har-frame-shell {
    min-height: 320px;
    height: 320px;
  }

  .journey-har-frame {
    height: var(--har-frame-size);
    min-height: 0;
  }

  .agent-modal-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 34px;
    height: 34px;
  }

  .agent-modal-inner {
    min-height: auto;
  }

  .agent-photo-col {
    padding: 1.15rem 1rem 1rem;
    gap: 1rem;
  }

  .agent-headshot-wrap,
  .agent-photo-stats {
    display: none;
  }

  .agent-bio-col {
    padding: 1.1rem 1rem 1.15rem;
    gap: 0.8rem;
  }

  .agent-bio-tag {
    font-size: 0.54rem;
    letter-spacing: 0.18em;
  }

  .agent-name {
    font-size: 1.55rem;
    padding-right: 2.5rem;
  }

  .agent-title {
    font-size: 0.68rem;
    line-height: 1.5;
  }

  .agent-bio-text {
    font-size: 0.82rem;
    line-height: 1.68;
  }

  .agent-highlights {
    gap: 0.55rem;
  }

  .agent-highlight {
    font-size: 0.76rem;
    gap: 0.6rem;
    line-height: 1.42;
  }

  .agent-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .agent-modal.calendly-modal {
    padding: 2.8rem 0.75rem 0.75rem;
  }

  .agent-modal.calendly-modal .calendly-inline-widget {
    min-width: 0 !important;
    height: min(72dvh, 620px) !important;
  }

  .market-modal {
    padding: 0.9rem;
  }

  .har-modal {
    padding: 0.9rem;
  }

  .market-modal-head,
  .har-modal-head {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 2.6rem;
  }

  .market-modal-link,
  .har-modal-link {
    width: 100%;
    justify-content: center;
  }

  .market-modal-frame-shell {
    min-height: 68dvh;
    height: 68dvh;
  }

  .market-modal-frame {
    min-height: 0;
    height: var(--har-frame-size);
  }
}

@media (min-width: 721px) and (max-height: 860px) {
  .journey-modal-shell {
    grid-template-columns: 410px minmax(0, 1fr);
  }

  .journey-modal-aside {
    padding: 2.05rem 2rem 1.35rem;
    gap: 1rem;
  }

  .journey-modal-aside h2 {
    font-size: clamp(2rem, 3vw, 2.55rem);
    line-height: 1;
  }

  .journey-modal-aside p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .journey-progress-shell {
    gap: 0.55rem;
    padding: 0.85rem;
  }

  .journey-progress-copy {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .journey-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.15rem;
  }

  .journey-progress-item {
    min-height: 48px;
    padding: 0.58rem 0.7rem;
    gap: 0.55rem;
  }

  .journey-progress-item.is-active {
    transform: none;
  }

  .journey-progress-item span {
    font-size: 1rem;
  }

  .journey-progress-item strong {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .journey-step-caption {
    margin-top: 0.15rem;
  }
}

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

/* ── HAR Home Search Section ─────────────────────── */
.har-search-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #090909 0%, #0f0f0f 100%);
}
.har-search-section .section-title {
  color: var(--white);
}
.har-search-section .section-tag {
  color: rgba(255, 255, 255, 0.55);
}
.har-search-section .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.har-search-launch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    #0d0d0d;
  box-shadow: 0 26px 70px rgba(0,0,0,0.3);
}

.har-search-launch .section-title {
  max-width: 700px;
  margin-bottom: 0.75rem;
}

.har-search-launch .section-copy {
  max-width: 650px;
  margin: 0;
}

.har-launch-btn {
  min-height: 54px;
  white-space: nowrap;
}

.har-search-shell {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: 0 28px 80px rgba(0,0,0,0.34);
  overflow: hidden;
}
.har-search-bar {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  padding: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.har-search-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.7rem;
}
.har-search-heading {
  font-family: var(--serif-landing, 'Cormorant Garamond', serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.har-search-subcopy {
  color: rgba(255,255,255,0.66);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}
.har-custom-form {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(120px, 0.95fr) repeat(2, minmax(100px, 0.75fr));
  gap: 0.85rem;
  align-items: end;
}
.har-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}
.har-form-field label {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.har-form-field input,
.har-form-field select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  min-height: 52px;
  padding: 0 1rem;
}
.har-form-field input::placeholder {
  color: rgba(255,255,255,0.4);
}
.har-form-actions {
  display: flex;
  gap: 0.7rem;
  grid-column: 1 / -1;
}
.har-search-submit,
.har-search-reset {
  min-height: 50px;
}
.har-search-reset {
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
.har-search-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transform: none !important;
  opacity: 1;
}

.har-embed-shell {
  position: relative;
}

.har-mobile-active-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: absolute;
  inset: 0 0 auto;
  height: 58px;
  padding: calc(env(safe-area-inset-top, 0px) * 0.25) 0.85rem 0;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 5;
}

.har-mobile-close,
.har-mobile-open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.har-mobile-close {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.har-mobile-open-link {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.har-scroll-guard {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.24), rgba(8, 8, 8, 0.62));
  backdrop-filter: blur(14px);
  z-index: 3;
}

.har-scroll-guard-panel {
  width: min(100%, 440px);
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.82);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.har-scroll-guard-kicker {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 0.85rem;
}

.har-scroll-guard-panel h3 {
  margin: 0 0 0.7rem;
  color: var(--white);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1;
  font-family: var(--serif-landing, 'Cormorant Garamond', serif);
  font-weight: 400;
}

.har-scroll-guard-panel p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  font-size: 0.9rem;
}

.har-scroll-guard-cta {
  min-width: 200px;
}

.har-scroll-guard-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.har-scroll-guard-link {
  border-color: rgba(255, 255, 255, 0.22);
}

.har-mobile-tip {
  display: none;
  margin: 0 0 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  line-height: 1.55;
}
.har-landing-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.12);
  text-align: center;
  padding: 3rem 2rem;
}
.har-placeholder-icon {
  color: rgba(255,255,255,0.34);
  margin-bottom: 1.25rem;
}
.har-placeholder-title {
  font-family: var(--serif-landing, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 0.75rem;
}
.har-placeholder-copy {
  color: rgba(255,255,255,0.56);
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 0;
}
.har-placeholder-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
