.vh-section { padding-block: clamp(76px, 9vw, 128px); }
.vh-section--paper { background: #fff; }
.vh-section--cream { background: var(--vh-cream); }
.vh-section--ink { color: #e9e3d8; background: var(--vh-ink); }
.vh-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.vh-section-heading h2 { max-width: 760px; margin: 0; }
.vh-section-heading > a { flex-shrink: 0; font-weight: 700; }
.vh-section-heading--light h2, .vh-section-heading--light > a { color: #fff; }
.vh-section-heading--compact { align-items: center; margin-bottom: 24px; }
.vh-section-heading--compact h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); }

.vh-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(780px, calc(100vh - 84px));
  display: grid;
  align-items: end;
  color: #fff;
  background-color: #302d27;
}
.vh-hero-slides, .vh-hero-slide, .vh-hero-slide picture, .vh-hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; }
.vh-hero-slides { z-index: -2; }
.vh-hero-slide { opacity: 0; transform: scale(1.025); transition: opacity 1.15s ease, transform 7s ease; }
.vh-hero-slide.is-active { z-index: 1; opacity: 1; transform: scale(1); }
.vh-hero-slide img { object-fit: cover; }
.vh-hero-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7,7,6,.73) 0%, rgba(7,7,6,.44) 47%, rgba(7,7,6,.18) 100%), linear-gradient(0deg, rgba(7,7,6,.38) 0%, transparent 52%); pointer-events: none; }
.vh-hero-inner { position: relative; z-index: 2; padding-top: 110px; padding-bottom: 76px; }
.vh-hero-copy { max-width: 790px; margin-bottom: 54px; }
.vh-hero-copy h1 { max-width: 770px; margin-bottom: 24px; text-wrap: balance; }
.vh-hero-copy > p:last-child { max-width: 600px; color: rgba(255,255,255,.84); font-size: 1.08rem; }
.vh-hero-search { color: var(--vh-ink); background: #fff; box-shadow: var(--vh-shadow); }
.vh-hero-slider-controls { position: absolute; z-index: 3; right: max(24px, calc((100vw - 1180px)/2)); bottom: 24px; display: flex; align-items: center; gap: 10px; }
.vh-hero-slider-arrow { display: grid; width: 38px; height: 38px; padding: 0; place-items: center; color: #fff; background: rgba(9,9,8,.42); border: 1px solid rgba(255,255,255,.52); border-radius: 50%; backdrop-filter: blur(6px); cursor: pointer; transition: color .2s, background-color .2s, border-color .2s; }
.vh-hero-slider-arrow:hover, .vh-hero-slider-arrow:focus-visible { color: #0a0908; background: var(--vh-gold); border-color: var(--vh-gold); outline: none; }
.vh-hero-slider-dots { display: flex; align-items: center; gap: 7px; padding: 8px 10px; background: rgba(9,9,8,.34); border-radius: 999px; backdrop-filter: blur(6px); }
.vh-hero-slider-dot { width: 7px; height: 7px; padding: 0; background: rgba(255,255,255,.58); border: 0; border-radius: 999px; cursor: pointer; transition: width .25s, background-color .25s; }
.vh-hero-slider-dot.is-active { width: 22px; background: var(--vh-gold); }
.vh-hero-slider-dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.vh-hero-slider-status { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.vh-search-tabs { display: flex; gap: 4px; padding: 0 24px; border-bottom: 1px solid var(--vh-line); }
.vh-search-tabs label { cursor: pointer; }
.vh-search-tabs input { position: absolute; opacity: 0; pointer-events: none; }
.vh-search-tabs span { display: block; padding: 17px 16px 14px; border-bottom: 2px solid transparent; font-size: .82rem; font-weight: 700; }
.vh-search-tabs input:checked + span { border-color: var(--vh-gold); }
.vh-hero-search-grid { display: grid; grid-template-columns: 1.5fr 1fr auto; align-items: end; gap: 0; padding: 22px 24px 24px; }
.vh-hero-search-grid label { display: grid; gap: 7px; padding-right: 20px; }
.vh-hero-search-grid label > span, .vh-catalog-filters label > span, .vh-quick-contact label > span, .vh-contact-form label > span, .vh-property-lead-form label > span { color: var(--vh-muted); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.vh-hero-search input, .vh-hero-search select, .vh-catalog-filters input, .vh-catalog-filters select, .vh-quick-contact input, .vh-contact-form input, .vh-contact-form textarea, .vh-property-lead-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--vh-ink);
  background: #fff;
  border: 1px solid var(--vh-line);
  border-radius: 0;
  outline: none;
}
.vh-hero-search input:focus, .vh-hero-search select:focus, .vh-catalog-filters input:focus, .vh-catalog-filters select:focus, .vh-contact-form input:focus, .vh-contact-form textarea:focus, .vh-property-lead-form input:focus { border-color: var(--vh-gold); box-shadow: 0 0 0 3px rgba(183,139,47,.13); }

.vh-property-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 25px; }
.vh-property-card { min-width: 0; background: #fff; border: 1px solid var(--vh-line); transition: transform .25s, box-shadow .25s; }
.vh-property-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(25,21,13,.11); }
.vh-property-card-image { position: relative; isolation: isolate; display: block; overflow: hidden; aspect-ratio: 4/3; background: var(--vh-cream-deep); }
.vh-property-card-slide { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1); transition: opacity .72s ease, transform 1.15s cubic-bezier(.22,1,.36,1); }
.vh-property-card-slide.is-active { z-index: 1; opacity: 1; }
.vh-property-card:hover .vh-property-card-slide.is-active { transform: scale(1.035); }
.vh-property-card-image.is-gallery-playing .vh-property-card-slide.is-active { transform: scale(1.075); }
.vh-featured-properties .vh-property-card-image { aspect-ratio: 1 / 1; }
.vh-featured-properties .vh-property-card-slide { object-position: 50% 50%; }
.vh-featured-properties .vh-property-card-image.is-gallery-playing .vh-property-card-slide.is-active { transform: scale(1.025); }
.vh-image-placeholder { display: grid; width: 100%; height: 100%; place-items: center; }
.vh-image-placeholder-mark { width: 86px; height: 86px; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(183,139,47,.2)); }
.vh-property-badge { position: absolute; z-index: 3; top: 16px; left: 16px; padding: 7px 10px; color: #fff; background: rgba(8,8,7,.86); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.vh-property-card-gallery-count { position: absolute; z-index: 3; top: 16px; right: 16px; padding: 6px 9px; color: #fff; background: rgba(8,8,7,.58); backdrop-filter: blur(8px); font-size: .63rem; letter-spacing: .08em; }
.vh-property-card-gallery-count b { color: var(--vh-gold-light); }
.vh-property-card-gallery-dots { position: absolute; z-index: 3; right: 16px; bottom: 14px; left: 16px; display: flex; gap: 5px; }
.vh-property-card-gallery-dots i { height: 2px; flex: 1 1 0; background: rgba(255,255,255,.44); box-shadow: 0 1px 3px rgba(0,0,0,.22); transition: background .25s, transform .25s; }
.vh-property-card-gallery-dots i.is-active { background: var(--vh-gold-light); transform: scaleY(1.7); }
.vh-property-card-body { padding: 22px; }
.vh-property-card-zone { margin-bottom: 9px; color: var(--vh-muted); font-size: .72rem; }
.vh-property-card h3 { min-height: 2.2em; margin-bottom: 12px; font-size: 1.35rem; }
.vh-card-price { display: block; margin-bottom: 18px; font-size: 1.05rem; }
.vh-property-card-specs { display: flex; flex-wrap: wrap; gap: 8px 15px; padding-top: 16px; border-top: 1px solid var(--vh-line); color: var(--vh-muted); font-size: .7rem; }
.vh-property-card-specs b { color: var(--vh-ink); font-weight: 700; }

.vh-district-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 14px; }
.vh-district-card { position: relative; display: flex; align-items: end; padding: 24px; color: #fff; background: #2e2a22 center/cover no-repeat; overflow: hidden; }
.vh-district-card::after { content: "→"; position: absolute; top: 20px; right: 20px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.65); opacity: 0; transform: translateX(-8px); transition: opacity .2s, transform .2s; }
.vh-district-card:hover::after { opacity: 1; transform: translateX(0); }
.vh-district-card--large { grid-column: span 2; grid-row: span 2; }
.vh-district-card span { display: grid; position: relative; z-index: 1; }
.vh-district-card strong { font-family: var(--vh-serif); font-size: 1.5rem; font-weight: 500; }
.vh-district-card small { color: rgba(255,255,255,.72); }

.vh-about-preview { overflow: hidden; }
.vh-about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: clamp(45px, 8vw, 110px); }
.vh-about-visual { position: relative; display: grid; min-height: 540px; padding: 52px; place-items: center; perspective: 1200px; color: var(--vh-ink); background: radial-gradient(circle at 51% 38%, rgba(255,255,255,.82), transparent 37%), linear-gradient(145deg, #eee7d9, #cbb992 78%); border: 1px solid rgba(83,66,34,.16); box-shadow: inset 0 0 0 1px rgba(255,255,255,.36); overflow: hidden; }
.vh-about-visual::before { content: ""; position: absolute; inset: 28px; border: 1px solid rgba(83,66,34,.26); pointer-events: none; }
.vh-about-visual::after { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(83,66,34,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(83,66,34,.14) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(135deg, transparent 7%, #000 48%, transparent 90%); pointer-events: none; }
.vh-brochure { position: relative; z-index: 1; width: min(76%, 330px); aspect-ratio: 3/4.15; transform: translateZ(18px) rotateY(-6deg) rotateZ(-1.25deg); transform-style: preserve-3d; filter: drop-shadow(18px 24px 22px rgba(49,39,21,.38)); }
.vh-brochure-sheet { position: absolute; inset: 0; border: 1px solid rgba(30,27,21,.3); background: #e8dfcc; transform-origin: left center; }
.vh-brochure-sheet--back { transform: translate(17px, 12px) rotate(1.15deg); background: linear-gradient(135deg, #b79957, #d2bc84); box-shadow: 8px 12px 20px rgba(55,42,18,.18); }
.vh-brochure-sheet--middle { transform: translate(9px, 6px) rotate(.45deg); background: linear-gradient(90deg, #cab98f, #f6f0e4 14%, #ded2ba); }
.vh-brochure-cover { position: relative; z-index: 2; display: flex; height: 100%; flex-direction: column; align-items: center; padding: clamp(28px, 4vw, 42px); color: #fff; background: linear-gradient(155deg, rgba(255,255,255,.06), transparent 29%), radial-gradient(circle at 50% 36%, rgba(190,145,54,.09), transparent 32%), linear-gradient(145deg, #171715, #070706 80%); border: 1px solid rgba(215,189,120,.72); box-shadow: inset 10px 0 20px rgba(0,0,0,.34), inset 0 0 38px rgba(0,0,0,.24); text-align: center; }
.vh-brochure-cover::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(215,189,120,.22); pointer-events: none; }
.vh-brochure-cover::after { content: ""; position: absolute; top: 0; bottom: 0; left: 11px; width: 1px; background: linear-gradient(transparent, rgba(215,189,120,.32) 14%, rgba(215,189,120,.32) 86%, transparent); }
.vh-brochure-kicker { position: relative; align-self: flex-start; color: #aaa69d; font-size: .52rem; font-weight: 600; letter-spacing: .21em; text-transform: uppercase; }
.vh-brochure-brand { position: relative; display: grid; justify-items: center; margin: auto 0; }
.vh-brochure-brand img { width: clamp(78px, 10vw, 116px); height: auto; margin-bottom: 15px; filter: drop-shadow(0 8px 14px rgba(183,139,47,.18)); }
.vh-brochure-brand span { display: grid; line-height: 1; text-transform: uppercase; }
.vh-brochure-brand strong { font-family: var(--vh-serif); font-size: clamp(1.65rem, 3.3vw, 2.45rem); font-weight: 500; letter-spacing: .15em; }
.vh-brochure-brand small { margin-top: 9px; color: var(--vh-gold-light); font-size: .63rem; letter-spacing: .38em; }
.vh-brochure-rule { position: relative; width: 54px; height: 1px; margin-bottom: 20px; background: var(--vh-gold); }
.vh-brochure-cover p { position: relative; max-width: 230px; margin: 0 0 14px; color: #c1bdb4; font-size: .68rem; line-height: 1.6; letter-spacing: .14em; text-transform: uppercase; }
.vh-brochure-cover > small { position: relative; color: var(--vh-gold-light); font-size: .54rem; letter-spacing: .25em; text-transform: uppercase; }
.vh-about-copy { align-self: center; }
.vh-about-copy h2 { margin-bottom: 30px; }
.vh-about-copy > p:not(.vh-eyebrow) { max-width: 640px; margin-bottom: 30px; color: var(--vh-muted); font-size: 1.05rem; }

.vh-role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.15); }
.vh-role-card { min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: var(--vh-ink-soft); }
.vh-role-card > span { color: var(--vh-gold-light); font-size: .72rem; letter-spacing: .15em; }
.vh-role-card h3 { margin-bottom: 12px; color: #fff; }
.vh-role-card p { margin: 0; color: #aaa69d; font-size: .84rem; }

.vh-advisor-team { background: #fff; }
.vh-advisor-team-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: end; gap: clamp(32px, 7vw, 92px); margin-bottom: clamp(38px, 5vw, 64px); }
.vh-advisor-team-heading h2 { max-width: 720px; margin: 0; }
.vh-advisor-team-heading > p { max-width: 520px; margin: 0; color: var(--vh-muted); font-size: 1rem; line-height: 1.75; }
.vh-advisor-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 30px); }
.vh-team-card { min-width: 0; overflow: hidden; background: var(--vh-cream); border: 1px solid var(--vh-line); transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s ease; }
.vh-team-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(25,21,13,.12); }
.vh-team-card-media { position: relative; isolation: isolate; aspect-ratio: 2 / 3; margin: 0; overflow: hidden; background: var(--vh-cream-deep); }
.vh-team-card-media::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(7,7,6,.86) 0%, rgba(7,7,6,.25) 37%, transparent 66%); pointer-events: none; }
.vh-team-card-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.001); transition: transform .55s cubic-bezier(.22,1,.36,1); }
.vh-team-card:hover .vh-team-card-media img { transform: scale(1.035); }
.vh-team-card figcaption { position: absolute; z-index: 2; right: clamp(22px, 2.4vw, 30px); bottom: clamp(24px, 2.8vw, 34px); left: clamp(22px, 2.4vw, 30px); color: #fff; }
.vh-team-card figcaption span { display: block; margin-bottom: 10px; color: var(--vh-gold-light); font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.vh-team-card figcaption h3 { margin: 0; color: #fff; font-size: clamp(1.65rem, 2.4vw, 2.25rem); line-height: 1.04; text-wrap: balance; }
.vh-team-card-bio { display: grid; gap: 16px; padding: clamp(24px, 2.6vw, 34px); color: var(--vh-muted); font-size: .86rem; line-height: 1.72; }
.vh-team-card-bio p { margin: 0; }

.vh-commitment-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.vh-commitment-grid h2 { max-width: 560px; }
.vh-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(17,17,15,.15); }
.vh-stats-grid > div { min-height: 170px; display: grid; align-content: center; padding: 28px; background: var(--vh-cream); }
.vh-stats-grid strong { font-family: var(--vh-serif); font-size: 3.3rem; font-weight: 500; line-height: 1; }
.vh-stats-grid span { margin-top: 10px; color: var(--vh-muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.vh-contact-banner { position: relative; overflow: hidden; padding-block: clamp(74px, 10vw, 130px); color: #fff; background: #191813; }
.vh-contact-banner::after { content: ""; position: absolute; right: -5vw; bottom: -11vw; width: clamp(280px, 31vw, 560px); aspect-ratio: 1; background: var(--vh-brand-mark-image) center/contain no-repeat; opacity: .055; pointer-events: none; }
.vh-contact-banner-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.vh-contact-banner-inner h2 { max-width: 580px; }
.vh-contact-banner-inner > div > p:last-child { max-width: 540px; color: #aaa69d; }
.vh-quick-contact { display: grid; gap: 17px; padding: 34px; color: var(--vh-ink); background: #fff; }
.vh-quick-contact label { display: grid; gap: 7px; }

.vh-resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--vh-line); }
.vh-resource-grid article { min-height: 430px; background: #fff; }
.vh-resource-card { display: flex; min-width: 0; flex-direction: column; }
.vh-resource-card-media { display: block; overflow: hidden; aspect-ratio: 16/10; background: var(--vh-ink); }
.vh-resource-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.vh-resource-card:hover .vh-resource-card-media img { transform: scale(1.035); }
.vh-resource-card-placeholder { display: grid; width: 100%; height: 100%; place-content: center; justify-items: center; color: var(--vh-gold-light); background: linear-gradient(145deg, #1c1b17, #090908); }
.vh-resource-card-placeholder-mark { width: 82px; height: 82px; margin-bottom: 14px; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(183,139,47,.22)); }
.vh-resource-card-placeholder small { color: #aaa69d; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; }
.vh-resource-card-body { display: flex; flex: 1; flex-direction: column; padding: 28px 30px 30px; }
.vh-resource-grid h3 { margin-bottom: 17px; font-size: 1.55rem; }
.vh-resource-card-body > p:not(.vh-eyebrow) { color: var(--vh-muted); font-size: .88rem; }
.vh-resource-card-body > .vh-text-link { margin-top: auto; padding-top: 12px; }

.vh-catalog-page { background: #fff; }
.vh-catalog-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-top: 75px; padding-bottom: 45px; }
.vh-catalog-heading h1 { max-width: 820px; margin: 0; font-size: clamp(2.6rem, 5.5vw, 5rem); }
.vh-catalog-heading > p { flex-shrink: 0; color: var(--vh-muted); }
.vh-catalog-heading > p strong { color: var(--vh-ink); font-size: 1.35rem; }
.vh-catalog-filters-wrap { position: sticky; top: 84px; z-index: 500; padding-block: 17px; background: rgba(245,240,231,.96); border-block: 1px solid var(--vh-line); backdrop-filter: blur(10px); }
.vh-catalog-filters { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr) auto; align-items: end; gap: 11px; }
.vh-catalog-filters label { display: grid; gap: 6px; }
.vh-catalog-filters input, .vh-catalog-filters select { min-height: 45px; padding: 9px 11px; font-size: .78rem; }
.vh-filter-reset { min-height: 45px; padding: 8px 12px; color: var(--vh-muted); background: transparent; border: 0; cursor: pointer; font-size: .75rem; text-decoration: underline; }
.vh-mobile-view-toggle { display: none; }
.vh-catalog-split { display: grid; grid-template-columns: minmax(390px, 44vw) 1fr; min-height: calc(100vh - 190px); }
.vh-catalog-map { position: sticky !important; top: 175px; height: calc(100vh - 175px); background: #ddd7ca; }
.vh-catalog-map .leaflet-tile-pane { filter: grayscale(1) sepia(.15) contrast(.88); }
.vh-map-marker-shell { background: transparent !important; border: 0 !important; }
.vh-map-marker { display: grid; width: 44px; height: 44px; place-items: center; overflow: hidden; background: radial-gradient(circle at 50% 42%, #262118, #0c0c0a 72%); border: 1px solid var(--vh-gold-light); border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.3); }
.vh-map-marker img { width: 32px !important; max-width: 32px !important; height: 32px !important; max-height: 32px !important; object-fit: contain; filter: drop-shadow(0 3px 6px rgba(215,189,120,.2)); }
.vh-catalog-results { padding: 28px clamp(24px, 4vw, 56px) 90px; }
.vh-catalog-note { display: flex; gap: 11px; align-items: center; margin-bottom: 24px; padding: 13px 15px; background: var(--vh-cream); }
.vh-catalog-note span { width: 16px; height: 16px; flex: 0 0 auto; background: var(--vh-brand-mark-image) center/contain no-repeat; }
.vh-catalog-note p { margin: 0; color: var(--vh-muted); font-size: .72rem; }
.vh-catalog-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.vh-property-card--compact .vh-property-card-body { padding: 18px; }
.vh-property-card--compact h3 { font-size: 1.16rem; }
.vh-property-card--compact .vh-property-card-specs { font-size: .64rem; }
.vh-no-results { padding: 70px 30px; text-align: center; color: var(--vh-muted); background: var(--vh-cream); }

.vh-inner-hero { display: grid; min-height: 530px; align-items: end; padding-block: 100px 80px; background: var(--vh-cream); }
.vh-inner-hero--dark { color: #fff; background: var(--vh-ink); }
.vh-inner-hero h1 { max-width: 920px; margin-bottom: 28px; }
.vh-inner-hero .vh-shell > p:last-child { max-width: 680px; color: var(--vh-muted); font-size: 1.08rem; }
.vh-inner-hero--dark .vh-shell > p:last-child { color: #aaa69d; }
.vh-about-hero { position: relative; isolation: isolate; overflow: hidden; color: #fff; background: var(--vh-ink); }
.vh-about-hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7,7,6,.82) 0%, rgba(7,7,6,.52) 54%, rgba(7,7,6,.24) 100%), linear-gradient(0deg, rgba(7,7,6,.5), transparent 60%); }
.vh-about-hero-media, .vh-about-hero-media img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.vh-about-hero-media img { object-fit: cover; object-position: center 58%; }
.vh-about-hero .vh-shell { position: relative; z-index: 1; }
.vh-about-hero .vh-shell > p:last-child { color: rgba(255,255,255,.8); }
.vh-story-grid, .vh-delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 120px); }
.vh-story-grid > div:last-child { color: var(--vh-muted); font-size: 1.08rem; }
.vh-about-story-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: clamp(55px, 7vw, 90px); }
.vh-about-story-gallery figure { position: relative; min-width: 0; min-height: 0; aspect-ratio: 1 / 1; margin: 0; overflow: hidden; background: var(--vh-cream); }
.vh-about-story-gallery picture, .vh-about-story-gallery img { display: block; width: 100%; height: 100%; }
.vh-about-story-gallery img { object-fit: cover; object-position: 50% 50%; transition: transform .55s cubic-bezier(.22,1,.36,1); }
.vh-about-story-gallery figure:hover img { transform: scale(1.035); }
.vh-about-story-gallery figcaption { position: absolute; right: auto; bottom: 18px; left: 18px; max-width: calc(100% - 36px); padding: 12px 14px; color: #fff; background: rgba(9,9,8,.68); backdrop-filter: blur(9px); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.vh-principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--vh-line); }
.vh-principles-grid article { min-height: 300px; padding: 34px; background: var(--vh-cream); }
.vh-principles-grid article > span { color: var(--vh-gold); font-size: .72rem; }
.vh-principles-grid h3 { margin-top: 90px; }
.vh-principles-grid p { color: var(--vh-muted); }
.vh-about-showcase { overflow: hidden; }
.vh-about-showcase-frame { position: relative; min-height: clamp(530px, 63vw, 720px); overflow: hidden; background: #050504; }
.vh-about-showcase-slides, .vh-about-showcase-slide, .vh-about-showcase-slide picture, .vh-about-showcase-slide img { position: absolute; inset: 0; width: 100%; height: 100%; }
.vh-about-showcase-slide { margin: 0; opacity: 0; visibility: hidden; transform: scale(1.025); transition: opacity .8s ease, visibility .8s ease, transform 1.25s cubic-bezier(.22,1,.36,1); }
.vh-about-showcase-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.vh-about-showcase-slide img { object-fit: cover; }
.vh-about-showcase-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,6,5,.84) 0%, rgba(6,6,5,.18) 58%, transparent 100%); }
.vh-about-showcase-slide figcaption { position: absolute; z-index: 2; bottom: clamp(34px, 5vw, 60px); left: clamp(28px, 5vw, 64px); display: grid; max-width: min(660px, calc(100% - 240px)); gap: 7px; color: #fff; }
.vh-about-showcase-slide figcaption span { color: var(--vh-gold-light); font-size: .7rem; letter-spacing: .14em; }
.vh-about-showcase-slide figcaption strong { font-family: var(--vh-serif); font-size: clamp(2rem, 4.4vw, 4.2rem); font-weight: 500; line-height: .98; }
.vh-about-showcase-slide figcaption small { color: rgba(255,255,255,.7); font-size: .74rem; letter-spacing: .04em; }
.vh-about-showcase-controls { position: absolute; z-index: 3; right: clamp(24px, 4vw, 52px); bottom: clamp(30px, 4vw, 52px); display: flex; align-items: center; gap: 14px; }
.vh-about-showcase-controls > button { display: grid; width: 46px; height: 46px; place-items: center; padding: 0; color: #fff; background: rgba(8,8,7,.5); border: 1px solid rgba(255,255,255,.4); cursor: pointer; font-size: 1.15rem; transition: color .2s, background .2s, border-color .2s; }
.vh-about-showcase-controls > button:hover, .vh-about-showcase-controls > button:focus-visible { color: var(--vh-ink); background: var(--vh-gold-light); border-color: var(--vh-gold-light); }
.vh-about-showcase-dots { display: flex; gap: 8px; align-items: center; }
.vh-about-showcase-dots button { width: 19px; height: 2px; padding: 0; background: rgba(255,255,255,.42); border: 0; cursor: pointer; transition: width .25s, background .25s; }
.vh-about-showcase-dots button.is-active { width: 34px; background: var(--vh-gold-light); }
.vh-delivery-grid ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: delivery; }
.vh-delivery-grid li { position: relative; padding: 18px 0 18px 45px; border-bottom: 1px solid var(--vh-line); }
.vh-delivery-grid li::before { counter-increment: delivery; content: counter(delivery, decimal-leading-zero); position: absolute; left: 0; color: var(--vh-gold); font-size: .72rem; }
.vh-contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 100px); }
.vh-contact-options { display: grid; align-content: start; gap: 0; }
.vh-contact-options article { display: grid; grid-template-columns: 38px 1fr; gap: 20px; padding-block: 28px; border-bottom: 1px solid var(--vh-line); }
.vh-contact-options article > span { color: var(--vh-gold); font-size: .7rem; }
.vh-contact-options h2 { margin-bottom: 10px; font-size: 1.7rem; }
.vh-contact-options p { color: var(--vh-muted); }
.vh-contact-form { display: grid; gap: 17px; padding: clamp(28px, 5vw, 55px); background: var(--vh-cream); }
.vh-contact-form h2 { font-size: 2.5rem; }
.vh-contact-form label { display: grid; gap: 7px; }
.vh-contact-form textarea { resize: vertical; }
.vh-contact-form small { color: var(--vh-muted); }
.vh-faq { border-top: 1px solid var(--vh-line); }
.vh-faq details { border-bottom: 1px solid var(--vh-line); }
.vh-faq summary { position: relative; padding: 24px 45px 24px 0; cursor: pointer; font-family: var(--vh-serif); font-size: 1.35rem; list-style: none; }
.vh-faq summary::after { content: "+"; position: absolute; right: 0; color: var(--vh-gold); font-family: var(--vh-sans); }
.vh-faq details[open] summary::after { content: "−"; }
.vh-faq details p { max-width: 800px; padding-bottom: 24px; color: var(--vh-muted); }

.vh-property-detail { background: #fff; }
.vh-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 28px; color: var(--vh-muted); font-size: .72rem; }
.vh-property-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-block: 42px 34px; }
.vh-property-heading h1 { max-width: 850px; margin-bottom: 14px; font-size: clamp(2.4rem, 5vw, 4.8rem); }
.vh-property-zone { margin: 0; color: var(--vh-muted); }
.vh-property-price { flex-shrink: 0; display: grid; justify-items: end; }
.vh-property-price strong { font-family: var(--vh-serif); font-size: clamp(1.7rem, 3vw, 2.7rem); font-weight: 500; }
.vh-property-price span { color: var(--vh-muted); font-size: .72rem; letter-spacing: .08em; }
.vh-gallery { position: relative; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, minmax(190px, 270px)); gap: 8px; overflow: hidden; }
.vh-gallery button, .vh-room-gallery button { padding: 0; background: var(--vh-cream); border: 0; cursor: zoom-in; overflow: hidden; }
.vh-gallery img, .vh-room-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.vh-gallery button:hover img, .vh-room-gallery button:hover img { transform: scale(1.025); }
.vh-gallery-primary { grid-row: 1 / 3; }
.vh-gallery-count { position: absolute; right: 18px; bottom: 18px; min-height: 46px; padding: 10px 16px !important; color: var(--vh-ink); background: #fff !important; box-shadow: 0 8px 24px rgba(0,0,0,.15); cursor: pointer !important; font-weight: 700; }
.vh-property-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(50px, 7vw, 95px); padding-block: 70px 110px; }
.vh-property-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-bottom: 68px; background: var(--vh-line); }
.vh-property-specs > div { min-height: 110px; display: grid; align-content: center; padding: 20px; background: var(--vh-cream); }
.vh-property-specs span { color: var(--vh-muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }
.vh-property-specs strong { margin-top: 7px; font-size: 1.05rem; }
.vh-property-section { padding-block: 50px; border-top: 1px solid var(--vh-line); }
.vh-property-section > h2 { margin-bottom: 22px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.vh-prose { max-width: 780px; color: #4f4c46; font-size: 1.02rem; }
.vh-prose ul { padding-left: 20px; }
.vh-property-highlight { padding: 40px; border: 0; background: var(--vh-cream); }
.vh-room-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 26px; }
.vh-room-gallery button { aspect-ratio: 4/3; }
.vh-video-grid { display: grid; gap: 15px; }
.vh-video-frame { display: grid; gap: 10px; margin: 0; }
.vh-video-frame video { display: block; width: 100%; max-height: min(72vh, 680px); background: #090908; object-fit: contain; box-shadow: 0 18px 44px rgba(17,17,15,.12); }
.vh-video-frame figcaption { color: var(--vh-muted); font-size: .72rem; }
.vh-detail-map { height: 390px; background: #ddd7ca; }
.vh-detail-map .leaflet-tile-pane { filter: grayscale(1) sepia(.15) contrast(.88); }
.vh-privacy-note { margin-top: 12px; color: var(--vh-muted); font-size: .72rem; }
.vh-property-sidebar { min-width: 0; }
.vh-advisor-card { position: sticky; top: 115px; padding: 32px; background: var(--vh-cream); }
.vh-advisor-avatar { display: grid; width: 72px; height: 72px; place-items: center; margin-bottom: 22px; background: radial-gradient(circle at 50% 42%, #262118, #0c0c0a 72%); border: 1px solid var(--vh-gold-light); border-radius: 50%; box-shadow: 0 10px 24px rgba(17,17,15,.14); }
.vh-advisor-avatar-mark { width: 54px; height: 54px; object-fit: contain; }
.vh-advisor-card h2 { margin-bottom: 12px; font-size: 1.8rem; }
.vh-advisor-card > p:not(.vh-eyebrow) { color: var(--vh-muted); font-size: .84rem; }
.vh-advisor-card > .vh-button { width: 100%; }
.vh-advisor-card hr { margin-block: 28px; border: 0; border-top: 1px solid var(--vh-line); }
.vh-property-lead-form { display: grid; gap: 13px; }
.vh-property-lead-form h3 { margin-bottom: 4px; font-family: var(--vh-sans); font-size: 1rem; font-weight: 700; }
.vh-property-lead-form label { display: grid; gap: 6px; }
.vh-honeypot { position: absolute !important; left: -9999px; }
.vh-form-status { margin: 0; color: var(--vh-muted); font-size: .72rem; }
.vh-form-status.is-success { color: #28663c; }
.vh-form-status.is-error { color: #a13028; }
.vh-download-card { display: flex; gap: 16px; align-items: center; margin-top: 15px; padding: 20px; border: 1px solid var(--vh-line); }
.vh-download-card > span { display: grid; width: 48px; height: 48px; place-items: center; color: #fff; background: var(--vh-ink); font-size: .65rem; }
.vh-download-card div { display: grid; }
.vh-download-card small { color: var(--vh-gold); }
.vh-lightbox { position: fixed; inset: 0; z-index: 10000; display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; padding: 35px; background: rgba(0,0,0,.94); }
.vh-lightbox[hidden] { display: none; }
.vh-lightbox img { width: 100%; height: min(86vh, 900px); object-fit: contain; }
.vh-lightbox button { width: 52px; height: 52px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.3); cursor: pointer; font-size: 2rem; }
.vh-lightbox [data-vh-lightbox-close] { position: absolute; top: 22px; right: 22px; }

@media (max-width: 1180px) {
  .vh-catalog-filters { grid-template-columns: repeat(3, 1fr); }
  .vh-filter-reset { justify-self: start; }
  .vh-catalog-split { grid-template-columns: 42vw 1fr; }
  .vh-catalog-card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .vh-property-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vh-district-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-about-grid, .vh-commitment-grid, .vh-contact-banner-inner, .vh-story-grid, .vh-delivery-grid, .vh-contact-page-grid { grid-template-columns: 1fr; }
  .vh-about-visual { min-height: 500px; }
  .vh-brochure { width: min(62%, 320px); }
  .vh-role-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-advisor-team-heading { grid-template-columns: 1fr; align-items: start; }
  .vh-advisor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vh-resource-grid { grid-template-columns: 1fr; }
  .vh-resource-grid article { min-height: 0; }
  .vh-catalog-filters-wrap { top: 76px; }
  .vh-catalog-split { display: block; min-height: 0; }
  .vh-catalog-map { position: relative !important; top: 0; display: none; height: 62vh; min-height: 430px; }
  .vh-catalog-page.is-map-view .vh-catalog-map { display: block; }
  .vh-catalog-page.is-map-view .vh-catalog-results { display: none; }
  .vh-mobile-view-toggle { position: sticky; top: 244px; z-index: 450; display: grid; grid-template-columns: 1fr 1fr; width: 180px; margin: 12px auto; padding: 4px; background: #fff; border: 1px solid var(--vh-line); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .vh-mobile-view-toggle button { padding: 8px; background: transparent; border: 0; font-size: .75rem; }
  .vh-mobile-view-toggle button.is-active { color: #fff; background: var(--vh-ink); }
  .vh-catalog-results { padding: 24px max(18px, calc((100vw - 724px)/2)) 80px; }
  .vh-catalog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vh-property-layout { grid-template-columns: 1fr; }
  .vh-advisor-card { position: static; }
  .vh-about-showcase-frame { min-height: 600px; }
}

@media (max-width: 700px) {
  .vh-section { padding-block: 72px; }
  .vh-section-heading { align-items: start; flex-direction: column; margin-bottom: 30px; }
  .vh-hero { min-height: calc(100vh - 76px); align-items: center; }
  .vh-hero-inner { padding-block: 70px 82px; }
  .vh-hero-copy { margin-bottom: 34px; }
  .vh-hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .vh-hero-overlay { background: linear-gradient(90deg, rgba(7,7,6,.73), rgba(7,7,6,.43)), linear-gradient(0deg, rgba(7,7,6,.5), transparent 58%); }
  .vh-hero-slider-controls { right: 50%; bottom: 22px; transform: translateX(50%); }
  .vh-search-tabs { padding-inline: 10px; }
  .vh-search-tabs span { padding-inline: 10px; }
  .vh-hero-search-grid { grid-template-columns: 1fr; gap: 13px; padding: 18px; }
  .vh-hero-search-grid label { padding-right: 0; }
  .vh-property-grid, .vh-catalog-card-grid { grid-template-columns: 1fr; }
  .vh-about-grid { gap: 38px; }
  .vh-about-visual { min-height: 0; aspect-ratio: 1 / 1.08; padding: 30px 24px; }
  .vh-about-visual::before { inset: 14px; }
  .vh-about-visual::after { background-size: 34px 34px; }
  .vh-brochure { width: min(66%, 236px); transform: translateZ(12px) rotateY(-3deg) rotateZ(-.75deg); filter: drop-shadow(13px 17px 15px rgba(49,39,21,.34)); }
  .vh-brochure-sheet--back { transform: translate(12px, 9px) rotate(.9deg); }
  .vh-brochure-sheet--middle { transform: translate(7px, 5px) rotate(.35deg); }
  .vh-brochure-cover { padding: 25px 22px; }
  .vh-brochure-cover::before { inset: 11px; }
  .vh-brochure-brand img { width: 74px; margin-bottom: 12px; }
  .vh-brochure-brand strong { font-size: 1.55rem; }
  .vh-brochure-brand small { margin-top: 7px; font-size: .56rem; }
  .vh-brochure-rule { margin-bottom: 14px; }
  .vh-brochure-cover p { margin-bottom: 10px; font-size: .58rem; }
  .vh-district-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .vh-district-card--large { grid-column: auto; grid-row: auto; }
  .vh-role-grid { grid-template-columns: 1fr; }
  .vh-role-card { min-height: 250px; }
  .vh-advisor-grid { grid-template-columns: 1fr; }
  .vh-team-card { width: min(100%, 520px); margin-inline: auto; }
  .vh-stats-grid { grid-template-columns: 1fr 1fr; }
  .vh-stats-grid > div { min-height: 135px; padding: 20px; }
  .vh-stats-grid strong { font-size: 2.6rem; }
  .vh-quick-contact { padding: 23px; }
  .vh-catalog-heading { align-items: start; flex-direction: column; padding-top: 55px; }
  .vh-catalog-filters-wrap { position: relative; top: auto; }
  .vh-catalog-filters { grid-template-columns: 1fr 1fr; }
  .vh-catalog-filters label:first-child { grid-column: 1 / 3; }
  .vh-mobile-view-toggle { top: 88px; }
  .vh-principles-grid { grid-template-columns: 1fr; }
  .vh-principles-grid article { min-height: 230px; }
  .vh-principles-grid h3 { margin-top: 50px; }
  .vh-inner-hero { min-height: 470px; padding-block: 80px 60px; }
  .vh-about-hero { min-height: 560px; }
  .vh-about-hero::after { background: linear-gradient(90deg, rgba(7,7,6,.78), rgba(7,7,6,.42)), linear-gradient(0deg, rgba(7,7,6,.65), transparent 58%); }
  .vh-about-hero-media img { object-position: center; }
  .vh-about-story-gallery { grid-template-columns: 1fr; gap: 12px; margin-top: 48px; }
  .vh-about-story-gallery figure { aspect-ratio: 4 / 5; }
  .vh-about-story-gallery figcaption { right: auto; bottom: 14px; left: 14px; max-width: calc(100% - 28px); }
  .vh-about-showcase-frame { min-height: 560px; }
  .vh-about-showcase-slide figcaption { right: 24px; bottom: 104px; left: 24px; max-width: none; }
  .vh-about-showcase-slide figcaption strong { font-size: clamp(2rem, 10vw, 3rem); }
  .vh-about-showcase-controls { right: auto; bottom: 28px; left: 24px; }
  .vh-about-showcase-controls > button { width: 42px; height: 42px; }
  .vh-property-heading { align-items: start; flex-direction: column; }
  .vh-property-price { justify-items: start; }
  .vh-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 140px 140px; }
  .vh-gallery-primary { grid-column: 1 / 3; grid-row: auto; }
  .vh-gallery button:nth-of-type(n+4) { display: none; }
  .vh-property-layout { padding-block: 45px 75px; }
  .vh-video-frame video { max-height: 68vh; box-shadow: none; }
  .vh-property-specs { grid-template-columns: repeat(2, 1fr); margin-bottom: 45px; }
  .vh-property-section { padding-block: 40px; }
  .vh-property-highlight { padding: 25px; }
  .vh-room-gallery { grid-template-columns: 1fr; }
  .vh-detail-map { height: 310px; }
  .vh-lightbox { grid-template-columns: 44px 1fr 44px; padding: 12px; }
  .vh-lightbox button { width: 40px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .vh-hero-slide { transform: none; transition: none; }
  .vh-about-showcase-slide { transform: none; transition: none; }
  .vh-about-story-gallery img { transition: none; }
  .vh-property-card-slide { transform: none !important; transition: none; }
}

@media (max-width: 430px) {
  .vh-catalog-filters { grid-template-columns: 1fr; }
  .vh-catalog-filters label:first-child { grid-column: auto; }
  .vh-mobile-view-toggle { top: 88px; }
  .vh-stats-grid { grid-template-columns: 1fr; }
  .vh-gallery { width: 100%; grid-template-rows: 250px 130px; }
  .vh-gallery button:nth-of-type(n+4) { display: none; }
  .vh-property-specs { grid-template-columns: 1fr 1fr; }
}
