:root {
    --color-bg: #ffffff;
    --color-soft: #ffffff;
    --color-soft-2: #ffffff;
    --color-text: #000000;
    --color-muted: #000000;
    --color-line: #000000;
    --color-accent: #000000;
    --color-accent-dark: #000000;
    --color-dark: #000000;
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --shell: min(1180px, calc(100vw - 40px));
    --font-main: Aptos, "Aptos Display", "Aptos Text", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
    color: var(--color-muted);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-main);
    font-weight: 600;
    line-height: 1.05;
}

h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 6.75rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: 1.35rem;
}

input,
select,
textarea,
button {
    font: inherit;
}

.site-shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    padding: 0.65rem 0.9rem;
    background: var(--color-dark);
    color: #fff;
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    position: relative;
    width: min(1476px, calc(100vw - 60px));
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-name {
    width: max-content;
    border-bottom: 1px solid currentColor;
    font-family: var(--font-main);
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1;
}

.brand-estate {
    font-weight: 700;
}

.brand-line {
    color: #000;
    font-family: var(--font-main);
    font-size: 0.72rem;
    letter-spacing: 0;
}

.brand-logo {
    display: block;
    width: auto;
    max-height: 50px;
    object-fit: contain;
}

.brand-logo-lockup {
    width: clamp(230px, 18.5vw, 282px);
    max-height: 58px;
}

.brand-logo-light {
    display: none;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.2rem, 2.5vw, 2.7rem);
    flex: 1;
    color: #000;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.primary-nav a {
    padding-bottom: 0.72rem;
    border-bottom: 2px solid transparent;
    color: inherit;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: inherit;
    border-bottom-color: currentColor;
}

.text-link:hover,
.listing-card-link:hover .listing-card-title,
.simple-card a:hover {
    color: #000;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    min-height: 40px;
    padding: 0.55rem 0.75rem;
    border: 1px solid #000;
    border-radius: var(--radius);
    background: #fff;
    color: #000;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.nav-toggle-state {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle:focus-visible {
    outline: 2px solid #050505;
    outline-offset: 3px;
}

.nav-toggle-mark,
.nav-toggle-mark::before,
.nav-toggle-mark::after {
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
}

.nav-toggle-mark {
    position: relative;
}

.nav-toggle-mark::before,
.nav-toggle-mark::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-mark::before {
    top: -5px;
}

.nav-toggle-mark::after {
    top: 5px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    border: 1px solid var(--color-dark);
    border-radius: var(--radius);
    background: var(--color-dark);
    color: #fff;
    font-weight: 650;
    line-height: 1;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
    background: #000;
}

.button-secondary {
    background: #000;
    border-color: #000;
}

.button-secondary:hover {
    background: #000;
    border-color: #000;
}

.button-ghost {
    background: rgba(255, 255, 255, 0.82);
    color: #000;
    border-color: #000;
}

.button-ghost:hover {
    background: #fff;
    border-color: var(--color-dark);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.hero {
    position: relative;
    min-height: 76vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-soft);
}

.hero-bg,
.hero-fade {
    position: absolute;
    inset: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.hero-fade {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.82) 30%, rgba(255, 255, 255, 0.36) 58%, rgba(255, 255, 255, 0.04) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-block: 8rem;
}

.hero-content h1 {
    max-width: 680px;
    font-size: clamp(2.75rem, 5.6vw, 5.5rem);
}

.hero-content p {
    max-width: 620px;
    margin-top: 1.25rem;
    font-size: 1.18rem;
}

.template-homepage .hero {
    min-height: clamp(620px, 68svh, 760px);
    background: #efe6d8;
}

.template-homepage .hero-bg {
    object-position: center 42%;
}

.template-homepage .hero-fade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.34) 24%, rgba(255, 255, 255, 0) 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 44%);
}

.template-homepage .hero-content {
    width: min(1560px, calc(100vw - 200px));
    padding-block: 0;
    transform: translateY(-4rem);
}

.template-homepage .hero-title {
    display: inline-block;
    max-width: min(680px, 50vw);
    padding: 0;
    border-left: 0;
    background: transparent;
    color: #050505;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.9rem;
    font-weight: 400;
    line-height: 1.04;
    text-shadow: none;
    box-shadow: none;
    backdrop-filter: none;
}

.template-homepage .hero-title span {
    display: block;
}

.template-homepage .hero-title .hero-title-to-desktop,
.template-homepage .hero-title .hero-title-mobile-nowrap {
    display: inline;
}

.template-homepage .hero-title .hero-title-to-mobile {
    display: none;
}

.template-homepage .hero-title-image-panel {
    max-width: min(780px, calc(100vw - 110px));
}

.hero-copy-image {
    display: block;
    width: min(720px, 100%);
    height: auto;
}

.template-homepage .hero-title-accent {
    margin-top: 1.75rem;
    margin-left: 0;
    color: #050505;
    font-size: 1.45rem;
    line-height: 1.25;
}

.template-homepage .hero-title strong {
    font-weight: 800;
}

.template-homepage .hero-title em {
    font-style: italic;
}

.template-homepage .button-row {
    margin-top: 1.7rem;
}

.template-homepage .button-row .button {
    min-height: 62px;
    min-width: 234px;
    border-color: #000;
    border-radius: 2px;
    background: #000;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.homepage-search-section {
    --homepage-search-overlap: clamp(108px, 10svh, 124px);

    position: relative;
    z-index: 8;
    margin-top: calc(-1 * var(--homepage-search-overlap));
    padding-bottom: clamp(8rem, 9svh, 8.75rem);
    background:
        linear-gradient(
            to bottom,
            transparent 0,
            transparent var(--homepage-search-overlap),
            #fff var(--homepage-search-overlap),
            #fff 100%
        );
}

.homepage-search-shell {
    width: min(1080px, calc(100vw - 56px));
}

.homepage-search-island {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
}

.homepage-search-tabs {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0 1.45rem;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.homepage-search-tabs label {
    position: relative;
    display: inline-flex;
}

.homepage-search-tabs input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.homepage-search-tabs span {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    padding-inline: 1.2rem;
    border-bottom: 3px solid transparent;
    color: #000;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
}

.homepage-search-tabs input:checked + span {
    border-bottom-color: #000;
}

.homepage-search-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(135px, 1fr)) minmax(128px, 0.7fr);
    gap: 0.85rem;
    align-items: end;
    padding: 1.35rem 1.45rem 1.55rem;
}

.homepage-search-grid label {
    display: grid;
    gap: 0.42rem;
}

.homepage-search-grid label span {
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.homepage-search-grid input,
.homepage-search-grid select {
    width: 100%;
    min-height: 52px;
    padding: 0.78rem 0.85rem;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-family: var(--font-main);
    font-size: 0.875rem;
}

.homepage-search-grid input::placeholder {
    color: rgba(0, 0, 0, 0.48);
}

.homepage-search-submit {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.homepage-search-more {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.85rem 1.55rem;
}

.homepage-search-more summary {
    display: flex;
    order: 2;
    width: fit-content;
    min-height: 2.2rem;
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
    color: #000;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.homepage-search-more summary::-webkit-details-marker {
    display: none;
}

.homepage-search-more summary svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.homepage-search-more-close,
.homepage-search-more[open] .homepage-search-more-open {
    display: none;
}

.homepage-search-more[open] .homepage-search-more-close {
    display: inline;
}

.homepage-search-feature-row {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.55rem;
}

.homepage-search-feature-row label.homepage-search-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.homepage-search-feature-row label.homepage-search-feature input {
    width: 1rem;
    height: 1rem;
    min-height: 1rem;
    padding: 0;
    accent-color: #000;
}

.homepage-search-feature-row label.homepage-search-feature span {
    color: #1e2430;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
}

.homepage-search-clear {
    border: 0;
    background: transparent;
    color: #000;
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

.section {
    padding-block: 5.5rem;
}

.section-muted {
    background: var(--color-soft);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading p {
    margin-top: 1rem;
    font-size: 0.955rem;
}

.section-heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.text-link {
    color: #000;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

main :is(p, li, input, select, textarea, button, .button) {
    font-size: 0.875rem;
}

.featured-properties-section {
    background: #fff;
    padding-block: 4.25rem 5.2rem;
}

.audience-flow-section,
.principal-support-section {
    background: #fff;
}

.principal-support-section {
    padding-block: 4.6rem 5.7rem;
    border-bottom: 1px solid #000;
    color: #000;
}

.principal-support-shell {
    display: block;
}

.principal-support-copy h2 {
    max-width: 820px;
    color: #000;
    font-size: clamp(1.925rem, 3.2vw, 2.825rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.principal-support-body {
    max-width: 1080px;
    margin-top: 1.8rem;
}

.principal-support-body p {
    margin: 0;
    color: #000;
    font-size: 0.925rem;
    line-height: 1.65;
}

.template-homepage .principal-support-section {
    padding-block: 3.1rem 4.2rem;
    border-bottom: 0;
    text-align: center;
}

.template-homepage .principal-support-shell {
    width: min(880px, calc(100vw - 48px));
}

.template-homepage .principal-support-copy h2 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
    text-transform: none;
}

.template-homepage .principal-support-body {
    max-width: 760px;
    margin: 1.45rem auto 0;
}

.principal-support-body p + p {
    margin-top: 1rem;
}

.company-profile-page {
    background: #fff;
    color: #000;
}

.company-profile-intro {
    padding-block: calc(78px + 4.8rem) 4.7rem;
    border-bottom: 1px solid #000;
}

.company-profile-principles,
.company-profile-statements {
    border-bottom: 1px solid #000;
}

.company-profile-shell {
    max-width: 1080px;
}

.company-profile-label {
    margin-bottom: 1rem;
    color: #000;
    font-weight: 750;
    line-height: 1;
    text-transform: uppercase;
}

.company-profile-intro h1,
.company-profile-principles h2,
.company-profile-statement h2 {
    color: #000;
    text-transform: uppercase;
}

.company-profile-intro h1 {
    max-width: 860px;
    font-size: clamp(1.65rem, calc(4vw - 0.375rem), 3.1rem);
}

.company-profile-kicker {
    max-width: 780px;
    margin-top: 0.65rem;
    color: #000;
    font-size: clamp(0.955rem, 1.4vw, 1.175rem);
    line-height: 1.35;
}

.company-profile-body {
    max-width: 1080px;
    margin-top: 1.8rem;
}

.company-profile-body p,
.company-profile-values li,
.company-profile-statement p {
    color: #000;
    font-size: 0.925rem;
    line-height: 1.65;
}

.company-profile-body p + p {
    margin-top: 1rem;
}

.company-profile-values {
    max-width: 1080px;
    margin: 2rem 0 0;
}

.company-profile-values ol {
    margin: 0;
    padding-left: 1.25rem;
}

.company-profile-values li + li {
    margin-top: 0.8rem;
}

.company-profile-values strong {
    color: #000;
    text-transform: uppercase;
}

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

.company-profile-statement {
    padding-top: 1.35rem;
    border-top: 1px solid #000;
}

.company-profile-statement h2 {
    font-size: clamp(1.225rem, 2vw, 1.775rem);
}

.company-profile-statement p {
    margin-top: 1rem;
}

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

.audience-flow-card {
    display: grid;
    gap: 0.9rem;
    align-content: start;
    padding: 1.35rem;
    border: 1px solid #000;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.audience-flow-card h3 {
    font-size: 1.295rem;
    line-height: 1.12;
}

.audience-flow-card p {
    margin: 0;
}

.audience-flow-card .button {
    width: max-content;
    margin-top: 0.35rem;
}

.featured-properties-shell {
    width: min(1560px, calc(100vw - 40px));
}

.featured-properties-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 2rem;
    margin-bottom: 1.85rem;
}

.featured-properties-heading-main h2 {
    font-size: clamp(1.35rem, 2vw, 1.875rem);
    font-weight: 700;
    line-height: 1;
    text-transform: none;
}

.featured-properties-heading-main::after {
    content: "";
    display: block;
    width: min(870px, 100%);
    height: 1px;
    margin-top: 1.8rem;
    background: #000;
}

.featured-properties-link {
    margin-bottom: 1.4rem;
    color: #000;
    font-size: 0.925rem;
    font-weight: 800;
    text-underline-offset: 0.45rem;
}

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

.simple-card,
.empty-state,
.listing-card,
.detail-sidebar,
.inline-cta {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
}

.simple-card p {
    margin-top: 0.7rem;
}

.listing-card {
    overflow: hidden;
    border-color: #000;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.listing-card-link {
    display: block;
    height: 100%;
    color: inherit;
}

.listing-image {
    display: block;
    position: relative;
    aspect-ratio: 1.69 / 1;
    background: var(--color-soft-2);
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.025);
}

.listing-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.listing-card-body {
    display: block;
    padding: 1.3rem 1.45rem 1.75rem;
}

.listing-facts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-top: 1rem;
}

.listing-card-title {
    display: block;
    margin-top: 0.2rem;
    color: var(--color-text);
    font-size: clamp(1rem, 1.45vw, 1.35rem);
    font-weight: 650;
    line-height: 1.15;
}

.listing-location,
.listing-price {
    margin: 0.5rem 0 0;
}

.listing-price,
.detail-price {
    color: var(--color-text);
    font-weight: 800;
}

.listing-price {
    display: block;
    margin-top: 0;
    font-size: clamp(1.3rem, 1.75vw, 1.75rem);
    line-height: 1.15;
}

.listing-location {
    display: block;
    color: var(--color-muted);
    font-size: 0.8125rem;
}

.listing-fact {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1;
}

.listing-fact + .listing-fact {
    margin-left: 1.15rem;
    padding-left: 1.15rem;
    border-left: 1px solid var(--color-line);
}

.listing-fact-icon {
    width: 1.35rem;
    height: 1.35rem;
    color: #000;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.listing-card-description {
    display: block;
    margin-top: 1.05rem;
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.listing-demo-note {
    display: block;
    margin: 0.55rem 0 0;
    color: #8b0000;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.4;
}

.listing-demo-badge {
    background: #8b0000;
}

.listing-demo-ribbon {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 145%;
    padding: 0.7rem 1rem;
    transform: translate(-50%, -50%) rotate(-10deg);
    background: #b00020;
    box-shadow: 0 0.35rem 1.2rem rgba(0, 0, 0, 0.38);
    color: #fff;
    font-size: clamp(0.68rem, 1vw, 0.9rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.small-label {
    color: #000;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.empty-state {
    padding: 2rem;
}

.contact-section {
    padding-block: 5.5rem;
    background: #000;
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
}

.contact-grid > div > p {
    margin-top: 1rem;
    color: #fff;
    font-size: 1.08rem;
}

.contact-intro h2,
.contact-route-panel .small-label,
.contact-reveal-placeholder,
.contact-reveal-empty {
    color: #fff;
}

.contact-route-panel {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.contact-route-actions,
.contact-reveal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.contact-reveal-placeholder,
.contact-reveal-empty {
    margin: 0;
    font-size: 0.92rem;
}

.contact-section .button-secondary {
    border-color: #fff;
    background: #fff;
    color: #000;
}

.contact-section .button-ghost {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

.contact-section .button-ghost:hover {
    background: #fff;
    color: #000;
}

.sale-listing-hero {
    display: grid;
    grid-template-columns: minmax(360px, 40.55%) minmax(0, 59.45%);
    min-height: 555px;
    background: #fff;
}

.sale-listing-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.4rem clamp(2rem, 4.7vw, 4.55rem) 4.25rem;
    transform: translateY(1.25rem);
}

.sale-listing-hero-copy h1,
.sale-bond-cta-panel h2 {
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: 0;
}

.sale-listing-hero-copy h1 {
    max-width: 560px;
    font-size: clamp(3.425rem, calc(4.6vw - 0.375rem), 4.225rem);
    line-height: 0.97;
}

.sale-listing-hero-copy p {
    max-width: 560px;
    margin-top: 3rem;
    margin-bottom: 0;
    color: #000;
    font-size: clamp(1rem, 1.22vw, 1.18rem);
    line-height: 1.68;
}

.sale-listing-hero-media {
    min-width: 0;
}

.sale-listing-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 555px;
    object-fit: cover;
    object-position: center center;
}

.sale-guidance-section {
    padding-block: 2.55rem 2.15rem;
    background: #fff;
}

.sale-guidance-grid {
    width: min(768px, calc(100vw - 40px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.25rem;
    margin-inline: auto;
}

.sale-guidance-item + .sale-guidance-item {
    padding-left: 4.25rem;
    border-left: 1px solid rgba(0, 0, 0, 0.14);
}

.sale-guidance-item h3 {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.18;
}

.sale-guidance-item p {
    margin-top: 0.8rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1.02rem;
    line-height: 1.56;
}

.sale-bond-cta-section {
    background: #fff;
}

.sale-bond-cta-panel {
    width: min(1560px, calc(100vw - 40px));
    min-height: 156px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-inline: auto;
    padding: 2rem 3rem 2rem 4.45rem;
    background: #f7f7f7;
}

.sale-bond-cta-panel h2 {
    font-size: clamp(1.8rem, 2vw, 2.05rem);
    line-height: 1.12;
}

.sale-bond-cta-panel p {
    max-width: 620px;
    margin-top: 0.42rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1.05rem;
    line-height: 1.45;
}

.sale-bond-cta-panel .button {
    min-width: 255px;
    min-height: 68px;
    border-radius: 4px;
    font-size: 1.08rem;
    font-weight: 800;
    text-transform: uppercase;
}

.template-listing-sale .listing-results-section {
    padding-top: 4.75rem;
}

.sell-page-hero {
    display: grid;
    grid-template-columns: minmax(360px, 37.8%) minmax(0, 62.2%);
    min-height: 516px;
    background: #fff;
}

.sell-page-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.35rem clamp(2rem, 5.1vw, 4.9rem) 4.1rem;
    transform: translateY(0.35rem);
}

.sell-page-hero-copy h1,
.sell-market-cta-panel h2 {
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: 0;
}

.sell-page-hero-copy h1 {
    max-width: 520px;
    font-size: clamp(3.275rem, calc(4.4vw - 0.375rem), 4.075rem);
    line-height: 0.98;
}

.sell-page-hero-copy p {
    max-width: 510px;
    margin-top: 2.65rem;
    margin-bottom: 0;
    color: #000;
    font-size: clamp(1rem, 1.18vw, 1.12rem);
    line-height: 1.72;
}

.sell-page-hero-media {
    min-width: 0;
}

.sell-page-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 516px;
    object-fit: cover;
    object-position: center center;
}

.seller-guidance-section {
    padding-block: 2.75rem 2.3rem;
    background: #fff;
}

.seller-guidance-grid {
    width: min(1314px, calc(100vw - 110px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3.7rem;
    margin-inline: auto;
}

.seller-guidance-item + .seller-guidance-item {
    padding-left: 3.7rem;
    border-left: 1px solid rgba(0, 0, 0, 0.14);
}

.seller-guidance-item h3 {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.18;
}

.seller-guidance-item p {
    margin-top: 0.82rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1rem;
    line-height: 1.58;
}

.sell-market-cta-section {
    padding-bottom: 2.15rem;
    background: #fff;
}

.sell-market-cta-panel {
    width: min(1452px, calc(100vw - 84px));
    min-height: 172px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-inline: auto;
    padding: 2rem 4rem 2rem 4.6rem;
    background: #f5f4f2;
}

.sell-market-cta-panel h2 {
    font-size: clamp(1.85rem, 2.2vw, 2.35rem);
    line-height: 1.12;
}

.sell-market-cta-panel p {
    max-width: 620px;
    margin-top: 0.42rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1.02rem;
    line-height: 1.45;
}

.sell-market-cta-panel .button {
    min-width: 310px;
    min-height: 74px;
    border-radius: 4px;
    font-size: 1.08rem;
    font-weight: 800;
    text-transform: uppercase;
}

.sell-page-body-section {
    padding-top: 3rem;
}

.rent-page-hero {
    display: grid;
    grid-template-columns: minmax(360px, 35%) minmax(0, 65%);
    min-height: 511px;
    background: #fff;
}

.rent-page-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4.2rem clamp(2rem, 3vw, 3rem) 4rem clamp(2rem, 5.2vw, 5rem);
    transform: translateY(0.35rem);
}

.rent-page-hero-copy h1,
.rent-guidance-item h3,
.rent-search-cta-panel h2 {
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: 0;
}

.rent-page-hero-copy h1 {
    max-width: 480px;
    font-size: clamp(2.975rem, calc(4.2vw - 0.375rem), 3.775rem);
    line-height: 0.98;
}

.rent-page-hero-copy p {
    max-width: 430px;
    margin-top: 2.45rem;
    margin-bottom: 0;
    color: #000;
    font-size: clamp(1rem, 1.18vw, 1.12rem);
    line-height: 1.63;
}

.rent-page-hero-media {
    min-width: 0;
}

.rent-page-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 511px;
    object-fit: cover;
    object-position: center center;
}

.rent-guidance-section {
    padding-block: 3rem 2.55rem;
    background: #fff;
}

.rent-guidance-grid {
    width: min(1376px, calc(100vw - 160px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3.95rem;
    margin-inline: auto;
}

.rent-guidance-item + .rent-guidance-item {
    padding-left: 3.95rem;
    border-left: 1px solid rgba(0, 0, 0, 0.13);
}

.rent-guidance-item h3 {
    font-size: clamp(1.65rem, 1.9vw, 1.9rem);
    line-height: 1.08;
}

.rent-guidance-item p {
    margin-top: 0.88rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1.02rem;
    line-height: 1.6;
}

.rent-search-cta-section {
    padding-bottom: 2rem;
    background: #fff;
}

.rent-search-cta-panel {
    width: min(1452px, calc(100vw - 80px));
    min-height: 166px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-inline: auto;
    padding: 2rem 5.3rem 2rem 4.55rem;
    background: #f5f4f2;
}

.rent-search-cta-panel h2 {
    font-size: clamp(1.9rem, 2.15vw, 2.35rem);
    line-height: 1.1;
}

.rent-search-cta-panel p {
    max-width: 560px;
    margin-top: 0.8rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1.02rem;
    line-height: 1.5;
}

.rent-search-cta-panel .button {
    min-width: 285px;
    min-height: 72px;
    border-radius: 4px;
    font-size: 1.08rem;
    font-weight: 800;
    text-transform: uppercase;
}

.rent-page-body-section {
    padding-top: 3rem;
}

.manage-page-hero {
    display: grid;
    grid-template-columns: minmax(420px, 39.35%) minmax(0, 60.65%);
    min-height: 474px;
    background: #fff;
}

.manage-page-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.55rem clamp(2.25rem, 4.2vw, 4.85rem) 3.4rem;
    transform: translateY(0.35rem);
}

.manage-page-hero-copy h1,
.manage-guidance-item h3,
.manage-support-cta-panel h2 {
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: 0;
}

.manage-page-hero-copy h1 {
    max-width: 520px;
    font-size: clamp(2.725rem, calc(3.65vw - 0.375rem), 3.275rem);
    line-height: 1.13;
}

.manage-page-hero-copy p {
    max-width: 520px;
    margin-top: 1.45rem;
    margin-bottom: 0;
    color: #000;
    font-size: clamp(1rem, 1.16vw, 1.12rem);
    line-height: 1.55;
}

.manage-page-hero-media {
    min-width: 0;
}

.manage-page-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 474px;
    object-fit: cover;
    object-position: center center;
}

.manage-guidance-section {
    padding-block: 2.75rem 2.45rem;
    background: #fff;
}

.manage-guidance-grid {
    width: min(1272px, calc(100vw - 264px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3.9rem;
    margin-inline: auto;
}

.manage-guidance-item + .manage-guidance-item {
    padding-left: 3.9rem;
    border-left: 1px solid rgba(0, 0, 0, 0.13);
}

.manage-guidance-item h3 {
    font-size: clamp(1.55rem, 1.75vw, 1.75rem);
    line-height: 1.1;
}

.manage-guidance-item p {
    margin-top: 1rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1rem;
    line-height: 1.56;
}

.manage-support-cta-section {
    padding-bottom: 2.1rem;
    background: #fff;
}

.manage-support-cta-panel {
    width: min(1452px, calc(100vw - 84px));
    min-height: 174px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-inline: auto;
    padding: 2rem 6.25rem 2rem 5.9rem;
    background: #f5f4f2;
}

.manage-support-cta-panel h2 {
    font-size: clamp(1.9rem, 2.15vw, 2.25rem);
    line-height: 1.1;
}

.manage-support-cta-panel p {
    max-width: 600px;
    margin-top: 0.85rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1.02rem;
    line-height: 1.5;
}

.manage-support-cta-panel .button {
    min-width: 320px;
    min-height: 82px;
    border-radius: 4px;
    font-size: 1.14rem;
    font-weight: 800;
    text-transform: uppercase;
}

.manage-page-body-section {
    padding-top: 3rem;
}

.about-page-hero {
    display: grid;
    grid-template-columns: minmax(420px, 42.3%) minmax(0, 57.7%);
    min-height: 485px;
    background: #fff;
}

.about-page-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.9rem clamp(2.25rem, 5.35vw, 5.1rem) 3.55rem;
    transform: translateY(0.15rem);
}

.about-page-hero-copy h1,
.about-page-tagline,
.about-value-item h3,
.about-services-panel h2,
.about-help-cta-panel h2 {
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: 0;
}

.about-page-hero-copy h1 {
    max-width: 560px;
    font-size: clamp(2.875rem, calc(3.75vw - 0.375rem), 3.375rem);
    line-height: 1.02;
    white-space: nowrap;
}

.about-page-tagline {
    max-width: 520px;
    margin-top: 2.35rem;
    margin-bottom: 0;
    color: #000;
    font-size: clamp(2.05rem, 2.65vw, 2.55rem);
    line-height: 1.06;
}

.about-page-hero-body {
    max-width: 520px;
    margin-top: 1.55rem;
    color: #000;
    font-size: clamp(1rem, 1.1vw, 1.08rem);
    line-height: 1.6;
}

.about-page-hero-body p {
    margin: 0;
}

.about-page-hero-body p + p {
    margin-top: 1.45rem;
}

.about-page-hero-media {
    min-width: 0;
}

.about-page-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 485px;
    object-fit: cover;
    object-position: center center;
}

.about-values-section {
    padding-block: 2.1rem 2rem;
    background: #fff;
}

.about-values-grid {
    width: min(1210px, calc(100vw - 220px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3.9rem;
    margin-inline: auto;
}

.about-value-item + .about-value-item {
    padding-left: 3.9rem;
    border-left: 1px solid rgba(0, 0, 0, 0.13);
}

.about-value-item h3 {
    font-size: clamp(1.6rem, 1.85vw, 1.85rem);
    line-height: 1.1;
}

.about-value-item p {
    margin-top: 0.95rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1rem;
    line-height: 1.55;
}

.about-services-section,
.about-help-cta-section {
    background: #fff;
}

.about-services-section {
    padding-bottom: 1.1rem;
}

.about-services-panel {
    width: min(1424px, calc(100vw - 112px));
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) repeat(3, minmax(0, 1fr));
    align-items: center;
    margin-inline: auto;
    padding: 1rem 4.9rem;
    background: #f5f4f2;
}

.about-services-panel h2 {
    font-size: clamp(1.75rem, 2vw, 2rem);
    line-height: 1.1;
}

.about-services-panel p {
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.16);
    color: #000;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-help-cta-section {
    padding-bottom: 2rem;
}

.about-help-cta-panel {
    width: min(1424px, calc(100vw - 112px));
    min-height: 136px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-inline: auto;
    padding: 2rem 9.3rem 2rem 6.1rem;
    background: #f5f4f2;
}

.about-help-cta-panel h2 {
    font-size: clamp(1.9rem, 2.15vw, 2.25rem);
    line-height: 1.1;
}

.about-help-cta-panel p {
    max-width: 570px;
    margin-top: 0.65rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1.02rem;
    line-height: 1.5;
}

.about-help-cta-panel .button {
    min-width: 400px;
    min-height: 76px;
    border-radius: 4px;
    font-size: 1.14rem;
    font-weight: 800;
    text-transform: uppercase;
}

.buyer-process-section {
    padding-block: 4.8rem 5.1rem;
    border-bottom: 1px solid #000;
    background: #fff;
}

.buyer-process-shell {
    width: min(1560px, calc(100vw - 40px));
}

.buyer-process-heading {
    max-width: 820px;
}

.buyer-process-heading .small-label,
.listing-results-heading .small-label {
    margin-bottom: 0.75rem;
}

.buyer-process-heading h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 400;
    line-height: 1.08;
}

.buyer-process-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.45rem;
    margin: 3rem 0 0;
    padding: 0;
    list-style: none;
}

.buyer-process-step {
    min-width: 0;
}

.buyer-process-number-row {
    display: grid;
    grid-template-columns: auto minmax(32px, 1fr);
    gap: 1.1rem;
    align-items: center;
    margin-bottom: 1.35rem;
}

.buyer-process-number {
    color: #000;
    font-size: clamp(2rem, 3vw, 2.65rem);
    font-weight: 400;
    line-height: 1;
}

.buyer-process-rule {
    display: block;
    height: 1px;
    background: rgba(0, 0, 0, 0.18);
}

.buyer-process-step h3 {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
}

.buyer-process-step p {
    margin-top: 0.8rem;
    color: #000;
    font-size: 0.95rem;
    line-height: 1.55;
}

.listing-results-section {
    padding-block: 4.5rem 5.7rem;
    background: #fff;
}

.listing-results-shell {
    width: min(1560px, calc(100vw - 40px));
}

.listing-results-heading {
    margin-bottom: 1.6rem;
}

.listing-results-heading-main h2 {
    font-size: clamp(1.85rem, 2.8vw, 2.75rem);
    font-weight: 400;
    line-height: 1.06;
    text-transform: none;
}

.listing-search-panel {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    align-items: end;
    margin-bottom: 2rem;
    padding: 1.2rem;
    border: 1px solid #000;
    border-radius: var(--radius);
    background: #fff;
}

.listing-search-panel label,
.result-sort {
    display: grid;
    gap: 0.4rem;
}

.listing-search-panel span,
.result-sort span {
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.listing-search-panel input,
.listing-search-panel select,
.result-sort select {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 0.875rem;
}

.listing-search-submit {
    width: 100%;
    min-height: 50px;
    font-size: 0.86rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.listing-feature-filters {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem 1.2rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.listing-feature-filters legend {
    width: 100%;
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.listing-feature-filters label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text);
    font-size: 0.8125rem;
    font-weight: 600;
}

.listing-search-panel .listing-feature-filters input {
    width: 1rem;
    height: 1rem;
    min-height: 1rem;
    padding: 0;
    accent-color: #000;
}

.listing-search-panel .listing-feature-filters span {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
}

.listing-results-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.listing-results-more .button {
    min-width: 240px;
    text-transform: uppercase;
}

.results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.65rem;
    padding-top: 1.1rem;
    border-top: 1px solid #000;
}

.listing-results-fragment.htmx-request,
.listing-search-panel.htmx-request {
    opacity: 0.62;
}

.results-count {
    margin: 0;
    color: var(--color-text);
    font-size: 0.925rem;
}

.results-count strong {
    color: var(--color-accent-dark);
    font-size: 1.225rem;
}

.result-sort {
    grid-auto-flow: column;
    align-items: center;
}

.result-sort select {
    min-width: 150px;
    min-height: 42px;
}

.buyer-requirements-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    margin-top: 3.5rem;
    padding: 2rem 3rem;
    background: #f5f5f5;
}

.buyer-requirements-panel h2 {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 400;
    line-height: 1.15;
}

.buyer-requirements-panel p {
    max-width: 640px;
    margin-top: 0.7rem;
    color: #000;
}

.buyer-requirements-panel .button {
    min-width: 220px;
}

.lead-form,
.listing-filter {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.2rem;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
}

.lead-form label,
.listing-filter label {
    display: grid;
    gap: 0.4rem;
}

.lead-form span,
.listing-filter span {
    color: var(--color-muted);
    font-size: 0.84rem;
    font-weight: 750;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.listing-filter input,
.listing-filter select {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--color-text);
}

.lead-form textarea {
    resize: vertical;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-span {
    grid-column: 1 / -1;
}

.checkbox-label {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.checkbox-label input {
    width: 18px;
    min-height: 18px;
    margin-top: 0.2rem;
}

.form-note {
    margin: 0;
    padding: 0.9rem 1rem;
    border-left: 3px solid #d0a557;
    background: #fbf7ef;
    color: #5f5646;
    font-size: 0.92rem;
    line-height: 1.5;
}

.page-hero,
.listing-detail-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-block: calc(6rem + 78px) 5.5rem;
    background: var(--color-dark);
}

.page-hero.compact {
    min-height: 400px;
    padding-block: calc(5rem + 78px) 4.5rem;
}

.listing-results-hero {
    min-height: min(760px, 78svh);
    align-items: center;
    padding-block: calc(7rem + 78px) 5.8rem;
}

.page-hero-bg,
.page-hero-shade {
    position: absolute;
    inset: 0;
}

.page-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-shade {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.4) 48%, rgba(0, 0, 0, 0.66) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.16) 100%);
}

.listing-results-hero .page-hero-bg {
    object-position: center bottom;
}

.listing-results-hero .page-hero-shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.26) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-copy-panel {
    width: min(760px, 100%);
    padding: 1.25rem 1.45rem 1.35rem;
    border-left: 3px solid #d0a557;
    background: rgba(0, 0, 0, 0.76);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(6px);
}

.listing-hero-copy {
    max-width: 720px;
    padding: 0;
    border-left: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.page-hero-content h1,
.page-hero-content p,
.page-hero-content .small-label {
    color: #fff;
}

.page-hero-content h1,
.hero-copy-panel h1 {
    max-width: 780px;
    font-size: clamp(1.975rem, calc(4.2vw - 0.375rem), 4.175rem);
}

.listing-results-hero .page-hero-content h1 {
    max-width: 760px;
    font-size: clamp(2.275rem, calc(5vw - 0.375rem), 4.825rem);
    font-weight: 400;
    line-height: 1.08;
}

.page-hero-content p,
.hero-copy-panel p {
    max-width: 660px;
    margin-top: 1rem;
    font-size: 1.16rem;
}

.listing-results-hero .page-hero-content p {
    max-width: 640px;
    color: #fff;
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    line-height: 1.55;
}

.listing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.9rem;
}

.listing-hero-actions .button {
    border-color: #fff;
    background: rgba(0, 0, 0, 0.76);
    color: #fff;
}

.listing-hero-actions .button:hover {
    background: #fff;
    color: #000;
}

.template-standardpage .standard-page-hero,
.template-blogindexpage .editorial-page-hero,
.template-blogpage .editorial-page-hero {
    min-height: min(660px, 72svh);
    align-items: center;
    padding-block: calc(6.5rem + 78px) 5.4rem;
}

.template-blogindexpage .editorial-page-hero {
    min-height: min(580px, 64svh);
}

.template-standardpage .standard-page-hero .page-hero-shade,
.template-blogindexpage .editorial-page-hero .page-hero-shade,
.template-blogpage .editorial-page-hero .page-hero-shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.42) 46%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.template-standardpage .hero-copy-panel,
.template-blogindexpage .hero-copy-panel,
.template-blogpage .hero-copy-panel {
    max-width: 760px;
    padding: 0;
    border-left: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.template-standardpage .page-hero-content h1,
.template-blogindexpage .page-hero-content h1,
.template-blogpage .page-hero-content h1 {
    font-size: clamp(2.325rem, calc(5vw - 0.375rem), 4.825rem);
    font-weight: 400;
    line-height: 1.08;
}

.template-standardpage .page-hero-content p,
.template-blogindexpage .page-hero-content p,
.template-blogpage .page-hero-content p {
    max-width: 640px;
    color: #fff;
    font-size: clamp(1.05rem, 1.45vw, 1.34rem);
    line-height: 1.55;
}

.hero-copy-panel .small-label {
    margin-bottom: 0.6rem;
}

.page-hero-content .detail-price {
    color: #fff;
}

.listing-detail-content {
    max-width: 820px;
}

.listing-detail-demo-ribbon {
    z-index: 1;
    top: 2.25rem;
    width: min(1300px, 145vw);
    padding-block: 0.9rem;
    transform: translate(-50%, 0) rotate(-6deg);
    font-size: clamp(1rem, 2.3vw, 1.85rem);
}

.hero-copy-panel .listing-demo-unavailable {
    max-width: 620px;
    margin-top: 1.4rem;
    padding: 0.85rem 1rem;
    border: 2px solid #fff;
    background: #8b0000;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.45;
}

.listing-gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.listing-gallery-item img {
    display: block;
}

.listing-gallery-demo-ribbon {
    font-size: clamp(0.58rem, 0.8vw, 0.76rem);
}

.detail-gallery img,
.image-grid img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.prose {
    max-width: 760px;
}

.prose h2,
.prose h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.prose p,
.prose li {
    color: var(--color-muted);
}

.standard-page-section {
    border-bottom: 1px solid #000;
    background: #fff;
}

.standard-page-shell,
.blog-article-shell {
    width: min(1080px, calc(100vw - 40px));
}

.standard-page-prose {
    max-width: 960px;
}

.standard-page-prose > p:first-child {
    max-width: 880px;
    color: #000;
    font-size: clamp(1.18rem, 2vw, 1.48rem);
    line-height: 1.48;
}

.standard-page-prose h2,
.standard-page-prose h3 {
    max-width: 860px;
    margin-top: 2.7rem;
    padding-top: 1.2rem;
    border-top: 1px solid #000;
    color: #000;
    line-height: 1.1;
    text-transform: uppercase;
}

.standard-page-prose h2:first-child,
.standard-page-prose h3:first-child {
    margin-top: 0;
}

.standard-page-prose h2 {
    font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.standard-page-prose h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.standard-page-prose p,
.standard-page-prose li,
.blog-article-shell p,
.blog-article-shell li {
    color: #000;
    font-size: 1.05rem;
    line-height: 1.68;
}

.inline-cta {
    margin-top: 2.5rem;
    padding: 1.5rem;
}

.legal-section {
    background: #fff;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 3rem;
    align-items: start;
}

.legal-prose {
    max-width: 860px;
}

.legal-prose h2 {
    font-size: clamp(1.45rem, 2vw, 2.1rem);
    line-height: 1.14;
}

.legal-prose h3 {
    font-size: 1.18rem;
}

.legal-review-note {
    margin-bottom: 2rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid #d0a557;
    background: #fbf7ef;
    color: #5f5646;
    font-size: 0.95rem;
}

.legal-details-panel {
    position: sticky;
    top: 6.5rem;
    padding: 1.2rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-soft);
}

.legal-details-panel h2 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
}

.legal-details-panel p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.legal-details-panel p + p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.legal-details-panel strong {
    color: var(--color-text);
}

.inline-cta .button {
    margin-top: 0.5rem;
}

.card-list {
    display: grid;
    gap: 1rem;
}

.simple-card {
    padding: 1.4rem;
}

.news-page-hero {
    display: grid;
    grid-template-columns: minmax(360px, 33.72%) minmax(0, 66.28%);
    min-height: 392px;
    background: #fff;
}

.news-page-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem clamp(2.5rem, 4.7vw, 4.6rem) 3.75rem;
}

.news-page-hero-copy h1,
.news-list-copy h2,
.news-subscribe-panel h2 {
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: 0;
}

.news-page-hero-copy h1 {
    font-size: clamp(3.325rem, calc(5.05vw - 0.375rem), 4.175rem);
    line-height: 1;
}

.news-page-hero-copy p {
    max-width: 370px;
    margin-top: 2.2rem;
    margin-bottom: 0;
    color: #000;
    font-size: 1.05rem;
    line-height: 1.7;
}

.news-page-hero-media {
    min-width: 0;
}

.news-page-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 392px;
    object-fit: cover;
    object-position: center center;
}

.news-list-section,
.news-subscribe-section {
    background: #fff;
}

.news-list-section {
    padding-top: 1.55rem;
}

.news-list-shell,
.news-subscribe-panel {
    width: min(1408px, calc(100vw - 130px));
    margin-inline: auto;
}

.news-list-item {
    display: grid;
    grid-template-columns: minmax(280px, 371px) minmax(0, 1fr) auto;
    gap: 2.75rem;
    align-items: center;
    min-height: 0;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.news-list-item + .news-list-item {
    padding-top: 0.35rem;
}

.news-list-image {
    display: block;
    height: 120px;
    overflow: hidden;
    background: #f5f4f2;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 200ms ease;
}

.news-list-item:hover .news-list-image img {
    transform: scale(1.02);
}

.news-list-copy {
    min-width: 0;
}

.news-list-date {
    margin: 0 0 0.55rem;
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.88rem;
    line-height: 1.2;
}

.news-list-copy h2 {
    font-size: clamp(1.28rem, 1.65vw, 1.52rem);
    line-height: 1.18;
}

.news-list-copy h2 a:hover,
.news-read-more:hover {
    text-decoration: underline;
    text-underline-offset: 0.28rem;
}

.news-list-intro {
    max-width: 610px;
    margin-top: 0.62rem;
    margin-bottom: 0;
    color: #000;
    font-size: 0.96rem;
    line-height: 1.48;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 1.35rem;
    justify-self: end;
    color: #000;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-subscribe-section {
    padding-block: 1rem 1.5rem;
}

.news-subscribe-panel {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 690px);
    gap: 2rem;
    align-items: center;
    padding: 1.45rem 2.7rem;
    background: #f5f4f2;
}

.news-subscribe-panel h2 {
    font-size: clamp(1.6rem, 2vw, 1.85rem);
    line-height: 1.1;
}

.news-subscribe-panel p {
    max-width: 440px;
    margin-top: 0.55rem;
    margin-bottom: 0;
    color: #000;
    font-size: 0.98rem;
    line-height: 1.45;
}

.news-subscribe-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 205px);
    gap: 1rem;
    align-items: center;
}

.news-subscribe-form input {
    width: 100%;
    min-height: 50px;
    padding: 0 1.35rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 2px;
    background: #fff;
    color: #000;
    font-size: 0.96rem;
}

.news-subscribe-form .button {
    min-height: 50px;
    border-radius: 3px;
    font-size: 0.98rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-empty-state {
    border-color: #000;
}

.contact-page-hero {
    display: grid;
    grid-template-columns: minmax(360px, 38.4%) minmax(0, 61.6%);
    min-height: 456px;
    background: #fff;
}

.contact-page-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 3.05rem clamp(1.8rem, 3.1vw, 2.9rem) 2.9rem;
}

.contact-page-hero-media {
    min-width: 0;
}

.contact-page-hero-copy h1,
.contact-method-card h3,
.contact-message-intro h2 {
    font-family: var(--font-main);
    font-weight: 400;
    letter-spacing: 0;
}

.contact-page-hero-copy h1 {
    max-width: 430px;
    font-size: clamp(3.1rem, calc(4.35vw - 0.25rem), 3.8rem);
    line-height: 1.06;
}

.contact-page-hero-copy p {
    max-width: 400px;
    margin-top: 1.55rem;
    margin-bottom: 0;
    color: #000;
    font-size: clamp(0.98rem, 1.08vw, 1.08rem);
    line-height: 1.5;
}

.contact-whatsapp-button {
    align-self: flex-start;
    gap: 0.8rem;
    min-width: 230px;
    min-height: 62px;
    margin-top: 1.55rem;
    border-radius: 3px;
    font-size: 0.98rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-whatsapp-button img {
    width: 30px;
    height: 30px;
}

.contact-page-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 456px;
    object-fit: cover;
    object-position: center center;
}

.contact-methods-section {
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-methods-grid {
    width: min(1448px, calc(100vw - 88px));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: auto;
    padding-block: 1rem 1.05rem;
}

.contact-method-card {
    min-height: 78px;
    padding-inline: 2.25rem 3.6rem;
}

.contact-method-card + .contact-method-card {
    border-left: 1px solid rgba(0, 0, 0, 0.13);
}

.contact-method-card h3 {
    padding-bottom: 0.42rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    font-size: clamp(1.22rem, 1.38vw, 1.42rem);
    line-height: 1.05;
}

.contact-method-card a,
.contact-method-card p {
    display: inline-block;
    margin-top: 0.58rem;
    margin-bottom: 0;
    color: #000;
    font-family: var(--font-main);
    font-size: clamp(1.14rem, 1.32vw, 1.36rem);
    line-height: 1.16;
}

.contact-method-card a:hover {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.contact-message-section {
    padding-bottom: 1.65rem;
    background: #fff;
}

.contact-message-panel.lead-form {
    width: min(1448px, calc(100vw - 88px));
    min-height: 236px;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 2.45rem;
    align-items: start;
    margin-inline: auto;
    padding: 1.55rem 2.05rem;
    border: 0;
    border-radius: 0;
    background: #f5f4f2;
}

.contact-message-intro {
    display: grid;
    min-height: 186px;
    align-content: space-between;
}

.contact-message-intro h2 {
    max-width: 230px;
    font-size: clamp(1.55rem, 1.72vw, 1.78rem);
    line-height: 1.1;
}

.contact-message-intro .button {
    width: 220px;
    min-height: 52px;
    border-radius: 3px;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-message-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 1rem;
}

.contact-message-fields input,
.contact-message-fields textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 2px;
    background: #fff;
    color: #000;
    font-size: 0.92rem;
}

.contact-message-fields input {
    min-height: 46px;
    padding: 0 1rem;
}

.contact-message-fields textarea {
    height: 90px;
    min-height: 90px;
    padding: 0.9rem 1rem;
    resize: vertical;
}

.contact-message-fields .form-note {
    grid-column: 1 / 2;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.72);
    font-size: 0.68rem;
    line-height: 1.25;
}

.contact-message-fields .checkbox-label {
    display: grid;
    grid-column: 2 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
}

.contact-message-fields .checkbox-label input {
    width: 18px;
    min-height: 18px;
    margin-top: 0.15rem;
}

.contact-message-fields .checkbox-label span {
    color: rgba(0, 0, 0, 0.78);
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 1.28;
}

.listing-filter {
    align-items: end;
    margin-bottom: 2rem;
}

.listing-detail-hero {
    padding-block: calc(4.5rem + 78px) 4.5rem;
    background: var(--color-soft);
}

.listing-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 3rem;
    align-items: center;
}

.detail-price {
    margin-block: 1rem;
    font-size: 1.5rem;
}

.detail-facts {
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.detail-gallery img {
    aspect-ratio: 1.45 / 1;
    box-shadow: var(--shadow-soft);
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 3rem;
    align-items: start;
}

.detail-sidebar {
    padding: 1.3rem;
    position: sticky;
    top: 100px;
}

.detail-sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.detail-sidebar dl {
    margin: 0;
}

.detail-sidebar div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.75rem;
    border-top: 1px solid var(--color-line);
}

.detail-sidebar dt {
    color: var(--color-muted);
}

.detail-sidebar dd {
    margin: 0;
    text-align: right;
    font-weight: 700;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.image-grid img {
    aspect-ratio: 1.45 / 1;
}

.message-stack {
    padding-top: 1rem;
}

.message {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--color-line);
    background: #fff;
}

.message-success {
    border-color: #98c7a0;
}

.message-error {
    border-color: #d59c9c;
}

.internal-auth-shell {
    max-width: 520px;
}

.internal-auth-form {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.internal-auth-form label {
    display: grid;
    gap: 0.4rem;
}

.internal-auth-form span,
.internal-card-status {
    color: var(--color-muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.internal-auth-form input {
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    font-family: var(--font-main);
}

.form-error {
    margin: 0;
    color: #8b2424;
    font-weight: 750;
}

.internal-dashboard-shell .section-heading {
    max-width: 760px;
}

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

.internal-dashboard-card {
    min-height: 180px;
    padding: 1.35rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 38px rgba(28, 27, 25, 0.07);
}

.internal-dashboard-card h3 {
    margin-top: 0.75rem;
}

.internal-dashboard-card p {
    margin-top: 0.75rem;
}

.internal-documents-shell .section-heading {
    max-width: 760px;
}

.internal-document-groups {
    display: grid;
    gap: 1.5rem;
}

.internal-document-group h3 {
    margin-bottom: 0.8rem;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.internal-document-list {
    display: grid;
    gap: 0.9rem;
}

.internal-document-card,
.internal-documents-empty {
    padding: 1.15rem;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 38px rgba(28, 27, 25, 0.07);
}

.internal-document-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.internal-document-card h4 {
    margin: 0.3rem 0 0;
    font-size: 1.05rem;
}

.internal-document-meta {
    margin: 0.35rem 0 0;
    color: var(--color-muted);
}

.internal-document-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.internal-document-tags span {
    display: inline-flex;
    padding: 0.25rem 0.55rem;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    color: var(--color-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.template-agent-hub {
    background: #eef8f8;
}

.template-agent-hub .site-header,
.template-agent-hub .site-footer {
    display: none;
}

.template-agent-hub .message-stack {
    margin-block: 1rem;
}

.agent-hub-shell {
    min-height: 100vh;
    background: #eef8f8;
    color: #1c1b19;
}

.agent-hub-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    box-shadow: 0 2px 16px rgba(20, 20, 18, 0.08);
}

.agent-hub-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding-inline: max(1rem, calc((100vw - 1400px) / 2));
    background: #141412;
    color: #fff;
}

.agent-hub-brand {
    display: inline-flex;
    align-items: center;
}

.agent-hub-brand img {
    width: auto;
    height: 34px;
}

.agent-hub-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    min-height: 2.1rem;
    padding: 0.35rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.agent-hub-nav {
    display: flex;
    gap: 0.2rem;
    overflow-x: auto;
    padding-inline: max(1rem, calc((100vw - 1400px) / 2));
    background: #f5f4f1;
    border-bottom: 1px solid #dedbd4;
}

.agent-hub-nav a {
    position: relative;
    flex: 0 0 auto;
    padding: 0.85rem 1rem;
    color: #272521;
    font-size: 0.98rem;
    font-weight: 600;
    white-space: nowrap;
}

.agent-hub-nav a::after {
    position: absolute;
    right: 1rem;
    bottom: 0;
    left: 1rem;
    height: 3px;
    background: transparent;
    content: "";
}

.agent-hub-nav a:hover,
.agent-hub-nav a[aria-current="page"] {
    color: #0a716f;
}

.agent-hub-nav a[aria-current="page"]::after {
    background: #0a716f;
}

.agent-hub-hero {
    position: relative;
    min-height: 265px;
    overflow: hidden;
    isolation: isolate;
}

.agent-hub-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-hub-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(20, 20, 18, 0.78), rgba(20, 20, 18, 0.3)),
        linear-gradient(0deg, rgba(20, 20, 18, 0.36), rgba(20, 20, 18, 0.08));
}

.agent-hub-hero-content {
    display: grid;
    align-content: center;
    min-height: 265px;
    width: min(1180px, calc(100vw - 40px));
    margin-inline: auto;
    color: #fff;
}

.agent-hub-hero-content h1 {
    max-width: 760px;
    color: #fff;
    font-size: 3.4rem;
    line-height: 0.98;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.32);
}

.agent-hub-hero-content p {
    max-width: 680px;
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.15rem;
}

.agent-hub-section {
    padding-block: 3.2rem 3.8rem;
}

.agent-hub-section-light {
    background: #eef8f8;
}

.agent-hub-section-accent {
    background: #087b79;
}

.agent-hub-section-inner {
    width: min(1180px, calc(100vw - 40px));
    margin-inline: auto;
}

.agent-hub-section h2 {
    margin-bottom: 1.25rem;
    color: #1c1b19;
    font-size: 1.28rem;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: uppercase;
}

.agent-hub-section-accent h2 {
    color: #fff;
}

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

.agent-shortcut-card,
.agent-resource-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(28, 27, 25, 0.12);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(28, 27, 25, 0.12);
}

.agent-shortcut-card-logo {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0.75rem 1rem;
    background: #d7d7d4;
    border-bottom: 1px solid rgba(28, 27, 25, 0.1);
    color: #0a716f;
}

.agent-shortcut-card-logo img {
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
}

.agent-shortcut-card-logo span {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    color: #0a716f;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
}

.agent-shortcut-card-body {
    flex: 1;
    padding: 0.85rem 1rem 1rem;
}

.agent-shortcut-card h3 {
    font-size: 1.05rem;
    line-height: 1.18;
}

.agent-shortcut-subtitle {
    margin: 0.25rem 0 0.65rem;
    color: #5f5b54;
    font-size: 0.88rem;
    line-height: 1.35;
}

.agent-shortcut-card ul {
    display: grid;
    gap: 0.15rem;
    margin: 0.6rem 0 0;
    padding: 0;
    list-style: none;
}

.agent-shortcut-card li {
    color: #272521;
    font-size: 0.95rem;
    line-height: 1.3;
}

.agent-shortcut-card-action {
    padding: 0.8rem 1rem 1rem;
    border-top: 1px solid #ebe8e2;
}

.agent-shortcut-card-action a,
.agent-shortcut-card-action span,
.agent-resource-card-body a,
.agent-resource-card-body > span {
    color: #1c1b19;
    font-size: 0.92rem;
    font-weight: 750;
}

.agent-shortcut-card-action span,
.agent-resource-card-body > span {
    color: #79736b;
}

.agent-resource-media {
    display: grid;
    min-height: 155px;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(169, 130, 91, 0.2), rgba(10, 113, 111, 0.16)),
        #e9e5de;
    color: #0a716f;
}

.agent-resource-media img {
    width: 100%;
    height: 100%;
    min-height: 155px;
    object-fit: cover;
}

.agent-resource-media span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.2rem;
    height: 4.2rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 1.45rem;
    font-weight: 800;
}

.agent-resource-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem;
}

.agent-resource-card h3 {
    font-size: 1rem;
    line-height: 1.28;
}

.agent-resource-card p {
    flex: 1;
    margin: 0.5rem 0 0.85rem;
    color: #5f5b54;
    font-size: 0.9rem;
    line-height: 1.45;
}

.agent-hub-page {
    min-height: calc(100vh - 108px);
    padding-block: 3.5rem 4.5rem;
    background: #eef8f8;
}

.agent-hub-page-inner {
    width: min(980px, calc(100vw - 40px));
    margin-inline: auto;
}

.agent-hub-page h1 {
    max-width: 860px;
    font-size: 2.8rem;
    line-height: 1.02;
}

.agent-hub-prose,
.agent-hub-form,
.agent-hub-search,
.agent-empty-state,
.agent-results-table-wrap {
    margin-top: 1.4rem;
}

.agent-hub-prose {
    max-width: 760px;
}

.agent-hub-prose p {
    color: #3b3833;
    font-size: 1.08rem;
}

.agent-hub-form-header p {
    max-width: 760px;
    margin-top: 0.8rem;
    color: #5f5b54;
}

.agent-hub-form,
.agent-hub-search,
.agent-empty-state,
.agent-results-table-wrap {
    border: 1px solid rgba(28, 27, 25, 0.12);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(28, 27, 25, 0.1);
}

.agent-hub-form {
    padding: 1.35rem;
}

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

.agent-form-grid label,
.agent-hub-search label {
    display: grid;
    gap: 0.4rem;
    color: #272521;
    font-weight: 700;
}

.agent-form-grid input,
.agent-form-grid textarea,
.agent-hub-search input {
    width: 100%;
    border: 1px solid #d6d1c9;
    border-radius: 4px;
    padding: 0.68rem 0.75rem;
    background: #fff;
    color: #1c1b19;
}

.agent-form-span {
    grid-column: 1 / -1;
}

.agent-checkbox {
    display: flex !important;
    grid-column: 1 / -1;
    align-items: center;
    gap: 0.55rem !important;
}

.agent-checkbox input {
    width: auto;
}

.agent-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.agent-hub-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.85rem;
    align-items: end;
    padding: 1rem;
}

.agent-result-summary {
    margin-top: 1.2rem;
    color: #272521;
    font-size: 1rem;
}

.agent-results-table-wrap {
    overflow-x: auto;
}

.agent-results-table {
    width: 100%;
    border-collapse: collapse;
}

.agent-results-table th,
.agent-results-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #ebe8e2;
    text-align: left;
    vertical-align: top;
}

.agent-results-table th {
    background: #f5f4f1;
    color: #272521;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.agent-results-table td span {
    display: block;
    margin-top: 0.2rem;
    color: #79736b;
    font-size: 0.86rem;
}

.agent-status {
    display: inline-flex !important;
    width: max-content;
    margin: 0 !important;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: #eeeae4;
    color: #5f5b54 !important;
    font-size: 0.78rem !important;
    font-weight: 800;
    text-transform: uppercase;
}

.agent-status-active {
    background: rgba(10, 113, 111, 0.12);
    color: #0a716f !important;
}

.template-developer-roadmap .agent-hub-page {
    padding-block: 2rem 3.5rem;
    background: #f4f7f8;
}

.template-developer-roadmap .agent-hub-page-inner {
    width: min(1480px, calc(100vw - 32px));
}

.developer-roadmap-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: end;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid #d7dee5;
}

.template-developer-roadmap .developer-roadmap-header h1 {
    max-width: none;
    margin-top: 0.28rem;
    color: #16202a;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1;
}

.developer-roadmap-source {
    display: grid;
    gap: 0.22rem;
    min-width: 220px;
    padding: 0.85rem 1rem;
    border: 1px solid #d7dee5;
    border-left: 5px solid #0b766f;
    border-radius: 6px;
    background: #fff;
    color: #56616c;
    font-size: 0.84rem;
}

.developer-roadmap-source strong {
    color: #16202a;
    font-size: 0.96rem;
}

.developer-roadmap-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.developer-roadmap-metric {
    display: grid;
    gap: 0.35rem;
    min-height: 82px;
    padding: 0.9rem 1rem;
    border: 1px solid #d7dee5;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(22, 32, 42, 0.06);
}

.developer-roadmap-metric span {
    color: #66717c;
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
}

.developer-roadmap-metric strong {
    color: #16202a;
    font-size: 2rem;
    line-height: 1;
}

.developer-roadmap-filters {
    display: grid;
    grid-template-columns: minmax(280px, 1.3fr) minmax(160px, 0.6fr) minmax(150px, 0.5fr) auto;
    gap: 0.85rem;
    align-items: end;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid #d7dee5;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(22, 32, 42, 0.06);
}

.developer-roadmap-filters label {
    display: grid;
    gap: 0.38rem;
    color: #26313c;
    font-size: 0.82rem;
    font-weight: 750;
}

.developer-roadmap-filters input,
.developer-roadmap-filters select {
    min-height: 44px;
    width: 100%;
    border: 1px solid #cbd4dc;
    border-radius: 5px;
    padding: 0.62rem 0.72rem;
    background: #fff;
    color: #16202a;
    font: inherit;
}

.developer-roadmap-filters input:focus,
.developer-roadmap-filters select:focus {
    outline: 3px solid rgba(11, 118, 111, 0.18);
    border-color: #0b766f;
}

.developer-roadmap-filter-actions {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.developer-roadmap-filter-actions .button {
    min-height: 44px;
    padding: 0.72rem 1rem;
    border-radius: 5px;
    white-space: nowrap;
}

.developer-roadmap-table-shell {
    margin-top: 1rem;
    overflow-x: auto;
    border: 1px solid #d7dee5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(22, 32, 42, 0.09);
}

.developer-roadmap-table-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: baseline;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #d7dee5;
    color: #66717c;
}

.developer-roadmap-table-toolbar strong {
    color: #16202a;
    font-size: 1.3rem;
}

.developer-roadmap-table {
    width: 100%;
    min-width: 1180px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.developer-roadmap-table th,
.developer-roadmap-table td {
    padding: 0.82rem 0.9rem;
    border-bottom: 1px solid #e6ebef;
    text-align: left;
    vertical-align: top;
}

.developer-roadmap-table th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #16202a;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.developer-roadmap-table th:nth-child(1),
.developer-roadmap-table td:nth-child(1) {
    width: 11%;
}

.developer-roadmap-table th:nth-child(2),
.developer-roadmap-table td:nth-child(2) {
    width: 27%;
}

.developer-roadmap-table th:nth-child(3),
.developer-roadmap-table td:nth-child(3),
.developer-roadmap-table th:nth-child(4),
.developer-roadmap-table td:nth-child(4),
.developer-roadmap-table th:nth-child(5),
.developer-roadmap-table td:nth-child(5),
.developer-roadmap-table th:nth-child(9),
.developer-roadmap-table td:nth-child(9) {
    width: 7%;
}

.developer-roadmap-table th:nth-child(6),
.developer-roadmap-table td:nth-child(6) {
    width: 10%;
}

.developer-roadmap-table th:nth-child(7),
.developer-roadmap-table td:nth-child(7),
.developer-roadmap-table th:nth-child(8),
.developer-roadmap-table td:nth-child(8) {
    width: 12%;
}

.developer-roadmap-table tbody tr:nth-child(odd) {
    background: #fbfcfd;
}

.developer-roadmap-table tbody tr:hover {
    background: #f0f6f6;
}

.developer-roadmap-table tbody tr:last-child td {
    border-bottom: 0;
}

.developer-roadmap-phase {
    color: #3b4652;
    font-size: 0.86rem;
    font-weight: 750;
}

.developer-roadmap-phase strong,
.developer-roadmap-phase span {
    display: block;
}

.developer-roadmap-phase strong {
    color: #16202a;
}

.developer-roadmap-phase span {
    margin-top: 0.2rem;
    color: #66717c;
    font-size: 0.78rem;
    line-height: 1.32;
}

.developer-roadmap-item {
    min-width: 0;
}

.developer-roadmap-item strong {
    display: block;
    color: #16202a;
    font-size: 0.96rem;
    line-height: 1.35;
}

.developer-roadmap-item span,
.developer-roadmap-detail {
    color: #5b6671;
    font-size: 0.84rem;
    line-height: 1.42;
    overflow-wrap: anywhere;
}

.developer-roadmap-item span {
    display: block;
    margin-top: 0.28rem;
}

.developer-roadmap-detail {
    max-width: none;
}

.developer-roadmap-date {
    color: #3b4652;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.developer-roadmap-status,
.developer-roadmap-priority {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border-radius: 999px;
    padding: 0.24rem 0.58rem;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

.developer-roadmap-status-proposed,
.developer-roadmap-status-pending {
    background: #eceff3;
    color: #47525d;
}

.developer-roadmap-status-ready {
    background: #e7f0ff;
    color: #1f5f9f;
}

.developer-roadmap-status-wip {
    background: #fff2cf;
    color: #875a00;
}

.developer-roadmap-status-blocked,
.developer-roadmap-status-wont_do {
    background: #fde7e5;
    color: #a13327;
}

.developer-roadmap-status-done {
    background: #e4f4ec;
    color: #146b43;
}

.developer-roadmap-status-deferred {
    background: #eee7f6;
    color: #5f3f8c;
}

.developer-roadmap-priority-p0 {
    background: #fde7e5;
    color: #a13327;
}

.developer-roadmap-priority-p1 {
    background: #fff2cf;
    color: #875a00;
}

.developer-roadmap-priority-p2 {
    background: #e7f0ff;
    color: #1f5f9f;
}

.developer-roadmap-priority-p3 {
    background: #eceff3;
    color: #47525d;
}

.developer-roadmap-empty {
    margin: 1rem;
    box-shadow: none;
}

.agent-empty-state {
    padding: 1.2rem;
}

.agent-empty-state h2 {
    font-size: 1.4rem;
}

.agent-empty-state p {
    max-width: 680px;
    margin-top: 0.5rem;
}

.site-footer {
    padding-block: 2.6rem 2.4rem;
    background: #000;
    color: #fff;
    border-top: 0;
}

.site-footer p,
.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) minmax(220px, 1fr);
    gap: 2.2rem;
    align-items: start;
}

.footer-branding {
    display: grid;
    gap: 0.65rem;
    justify-items: start;
}

.footer-logo-link {
    display: inline-flex;
    width: min(260px, 100%);
    margin-bottom: 0.35rem;
}

.footer-logo {
    width: 100%;
    height: auto;
}

.footer-ppra {
    margin: 0;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
}

.footer-summary {
    margin: 0;
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.45;
}

.footer-email {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 750;
}

.footer-email a {
    color: #fff;
    text-decoration: none;
}

.footer-legal-links {
    display: grid;
    gap: 0.62rem;
    align-content: start;
    justify-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1.25;
}

.footer-legal-links a {
    white-space: nowrap;
}

.footer-actions {
    display: grid;
    justify-items: end;
    gap: 0.9rem;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0;
    color: #fff;
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.footer-social-icon-muted {
    opacity: 0.75;
}

.footer-login-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.55rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 650;
}

.footer-login-links a,
.footer-login-links span {
    display: inline;
    margin: 0;
    color: inherit;
}

.footer-copyright {
    margin: 0;
    color: #fff;
    font-size: 0.85rem;
}

@media (max-width: 1040px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        padding-block: 0.8rem;
    }

    .primary-nav {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
        gap: 1.15rem;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scrollbar-width: none;
    }

    .primary-nav::-webkit-scrollbar {
        display: none;
    }

    .brand-logo-lockup {
        width: 240px;
        max-height: 48px;
    }

    .header-inner {
        width: var(--shell);
        min-height: 82px;
        gap: 1rem;
    }

    .sale-listing-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .sale-listing-hero-copy {
        min-height: 430px;
        transform: none;
    }

    .sale-listing-hero-media img {
        min-height: 420px;
        max-height: 560px;
    }

    .news-page-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .news-page-hero-copy {
        min-height: 380px;
    }

    .news-page-hero-media img {
        min-height: 340px;
        max-height: 500px;
    }

    .news-list-shell,
    .news-subscribe-panel {
        width: min(100vw - 40px, 1408px);
    }

    .news-list-item {
        grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
        gap: 1.8rem;
    }

    .news-read-more {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.1rem;
    }

    .news-subscribe-panel {
        grid-template-columns: 1fr;
    }

    .news-subscribe-form {
        max-width: 690px;
    }

    .contact-page-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .contact-page-hero-copy {
        min-height: 350px;
    }

    .contact-page-hero-media img {
        min-height: 300px;
        max-height: 470px;
    }

    .contact-methods-grid,
    .contact-message-panel.lead-form {
        width: min(100vw - 40px, 1448px);
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        padding-block: 1.5rem;
    }

    .contact-method-card {
        min-height: 0;
        padding: 1.15rem 0;
    }

    .contact-method-card + .contact-method-card {
        border-top: 1px solid rgba(0, 0, 0, 0.13);
        border-left: 0;
    }

    .contact-message-panel.lead-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-message-intro {
        min-height: 0;
        gap: 1rem;
    }

    .contact-message-fields {
        grid-template-columns: 1fr;
    }

    .contact-message-fields .form-note,
    .contact-message-fields .checkbox-label {
        grid-column: 1 / -1;
    }

    .sell-page-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .sell-page-hero-copy {
        min-height: 430px;
        transform: none;
    }

    .sell-page-hero-media img {
        min-height: 420px;
        max-height: 560px;
    }

    .rent-page-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .rent-page-hero-copy {
        min-height: 430px;
        transform: none;
    }

    .rent-page-hero-media img {
        min-height: 420px;
        max-height: 560px;
    }

    .manage-page-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .manage-page-hero-copy {
        min-height: 430px;
        transform: none;
    }

    .manage-page-hero-media img {
        min-height: 420px;
        max-height: 560px;
    }

    .about-page-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-page-hero-copy {
        min-height: 440px;
        transform: none;
    }

    .about-page-hero-copy h1 {
        white-space: normal;
    }

    .about-page-hero-media img {
        min-height: 420px;
        max-height: 560px;
    }

    .seller-guidance-grid {
        width: min(100vw - 40px, 1314px);
        gap: 2rem;
    }

    .seller-guidance-item + .seller-guidance-item {
        padding-left: 2rem;
    }

    .sell-market-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        padding-inline: 2.4rem;
    }

    .rent-guidance-grid {
        width: min(100vw - 40px, 1376px);
        gap: 2rem;
    }

    .rent-guidance-item + .rent-guidance-item {
        padding-left: 2rem;
    }

    .rent-search-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        padding-inline: 2.4rem;
    }

    .manage-guidance-grid {
        width: min(100vw - 40px, 1272px);
        gap: 2rem;
    }

    .manage-guidance-item + .manage-guidance-item {
        padding-left: 2rem;
    }

    .manage-support-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        padding-inline: 2.4rem;
    }

    .about-values-grid {
        width: min(100vw - 40px, 1210px);
        gap: 2rem;
    }

    .about-value-item + .about-value-item {
        padding-left: 2rem;
    }

    .about-services-panel,
    .about-help-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        padding-inline: 2.4rem;
    }

    .about-help-cta-panel .button {
        min-width: 310px;
    }

    .sale-bond-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        padding-inline: 2.4rem;
    }

    .featured-properties-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1rem;
    }

    .featured-properties-link {
        width: max-content;
        margin-bottom: 0;
    }

    .company-profile-statement-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .listing-grid,
    .audience-flow-grid,
    .news-card-list,
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .listing-search-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .listing-search-submit {
        grid-column: span 3;
    }

    .homepage-search-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .homepage-search-keyword,
    .homepage-search-submit {
        grid-column: span 3;
    }

    .contact-grid,
    .listing-detail-grid,
    .detail-layout,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar,
    .legal-details-panel {
        position: static;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .footer-legal-links {
        justify-items: start;
        justify-content: flex-start;
    }

    .footer-actions {
        justify-items: start;
    }

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

    .agent-hub-search {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    :root {
        --shell: min(100vw - 28px, 1180px);
    }

    h1 {
        font-size: clamp(2.65rem, 15vw, 4.5rem);
    }

    .header-inner {
        width: var(--shell);
        min-height: 70px;
        align-items: center;
        gap: 0.65rem;
    }

    .brand-logo-lockup {
        width: min(200px, calc(100vw - 178px));
        min-width: 142px;
    }

    .nav-toggle {
        order: 2;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 0;
        right: 0;
        z-index: 80;
        flex-basis: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0.4rem 0.85rem;
        border: 1px solid rgba(5, 5, 5, 0.14);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(18px);
        box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
        font-size: 0.94rem;
        overflow: visible;
    }

    .site-header.nav-open .primary-nav {
        display: flex;
    }

    .nav-toggle-state:checked ~ .primary-nav {
        display: flex;
    }

    .primary-nav a {
        width: 100%;
        padding: 0.8rem 0.1rem;
        border-bottom: 1px solid rgba(5, 5, 5, 0.1);
    }

    .primary-nav a:hover {
        border-bottom-color: rgba(5, 5, 5, 0.1);
    }

    .primary-nav a[aria-current="page"] {
        border-bottom-color: #000;
    }

    .primary-nav a:last-child {
        border-bottom: 0;
    }

    .primary-nav a[aria-current="page"] {
        border-bottom: 2px solid #000;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: 82vh;
    }

    .hero-content {
        padding-block: 5rem;
    }

    .template-homepage .hero {
        min-height: 660px;
        align-items: flex-start;
    }

    .template-homepage .hero-bg {
        object-position: 34% 40%;
    }

    .template-homepage .hero-content {
        width: min(720px, calc(100vw - 48px));
        padding-block: calc(70px + 3.2rem) 4rem;
        transform: none;
    }

    .template-homepage .hero-title {
        max-width: min(640px, 74vw);
        font-size: 3.6rem;
    }

    .homepage-search-section {
        --homepage-search-overlap: 76px;

        margin-top: calc(-1 * var(--homepage-search-overlap));
        padding-bottom: 2.5rem;
    }

    .homepage-search-shell {
        width: calc(100vw - 32px);
    }

    .homepage-search-tabs {
        padding-inline: 1rem;
    }

    .homepage-search-tabs span {
        min-height: 3rem;
        padding-inline: 0.9rem;
    }

    .homepage-search-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .homepage-search-keyword,
    .homepage-search-submit {
        grid-column: auto;
    }

    .homepage-search-more summary {
        margin-left: 0;
    }

    .homepage-search-more {
        display: grid;
        justify-content: stretch;
    }

    .homepage-search-more summary {
        order: 0;
    }

    .homepage-search-feature-row {
        padding-top: 0.4rem;
    }

    .page-hero,
    .listing-detail-hero {
        min-height: 390px;
        padding-block: calc(3.5rem + 70px) 3.5rem;
    }

    .page-hero.compact {
        min-height: 350px;
        padding-block: calc(3rem + 70px) 3rem;
    }

    .listing-results-hero {
        min-height: 420px;
        padding-block: calc(4rem + 70px) 4rem;
    }

    .sale-listing-hero-copy {
        min-height: auto;
        padding: 3.2rem 14px 3.4rem;
    }

    .sale-listing-hero-copy h1 {
        font-size: clamp(2.775rem, calc(14vw - 0.375rem), 3.875rem);
    }

    .sale-listing-hero-copy p {
        margin-top: 1.8rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .sale-listing-hero-media img {
        min-height: 300px;
        max-height: 420px;
    }

    .news-page-hero-copy {
        min-height: auto;
        padding: 3.15rem 14px 3.25rem;
    }

    .news-page-hero-copy h1 {
        font-size: clamp(2.725rem, calc(15vw - 0.375rem), 3.825rem);
    }

    .news-page-hero-copy p {
        max-width: none;
        margin-top: 1.9rem;
        font-size: 1rem;
        line-height: 1.62;
    }

    .news-page-hero-media img {
        min-height: 260px;
        max-height: 360px;
    }

    .news-list-section {
        padding-top: 1.25rem;
    }

    .news-list-shell,
    .news-subscribe-panel {
        width: calc(100vw - 40px);
    }

    .news-list-item {
        grid-template-columns: 1fr;
        gap: 0.95rem;
        min-height: 0;
        padding-bottom: 1.35rem;
    }

    .news-list-item + .news-list-item {
        padding-top: 1.35rem;
    }

    .news-list-image {
        height: auto;
        aspect-ratio: 371 / 120;
    }

    .news-list-copy h2 {
        font-size: clamp(1.45rem, 7vw, 1.9rem);
    }

    .news-read-more {
        grid-column: auto;
        justify-self: start;
        margin-top: 0.1rem;
    }

    .news-subscribe-section {
        padding-block: 1.35rem 1.8rem;
    }

    .news-subscribe-panel {
        min-height: 0;
        gap: 1.25rem;
        padding: 1.55rem 1.35rem;
    }

    .news-subscribe-panel h2 {
        font-size: clamp(1.7rem, 8vw, 2.05rem);
    }

    .news-subscribe-form {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .news-subscribe-form .button {
        width: 100%;
    }

    .contact-page-hero-copy {
        min-height: auto;
        padding: 2.7rem 14px 2.85rem;
    }

    .contact-page-hero-copy h1 {
        font-size: clamp(2.1rem, calc(11.8vw - 0.25rem), 2.9rem);
        line-height: 1.04;
    }

    .contact-page-hero-copy p {
        max-width: none;
        margin-top: 1.45rem;
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .contact-whatsapp-button {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        justify-content: center;
        font-size: 0.94rem;
    }

    .contact-page-hero-media img {
        min-height: 230px;
        max-height: 320px;
    }

    .contact-methods-grid {
        width: calc(100vw - 40px);
        padding-block: 0.95rem;
    }

    .contact-method-card h3 {
        font-size: clamp(1.24rem, 6.4vw, 1.55rem);
    }

    .contact-method-card a,
    .contact-method-card p {
        font-size: clamp(1.08rem, 5.8vw, 1.38rem);
        overflow-wrap: anywhere;
    }

    .contact-message-section {
        padding-bottom: 1.55rem;
    }

    .contact-message-panel.lead-form {
        width: calc(100vw - 40px);
        padding: 1.35rem 1.2rem;
    }

    .contact-message-intro h2 {
        max-width: none;
        font-size: clamp(1.42rem, 6.5vw, 1.72rem);
    }

    .contact-message-intro .button {
        width: 100%;
    }

    .sell-page-hero-copy {
        min-height: auto;
        padding: 3.2rem 14px 3.4rem;
    }

    .sell-page-hero-copy h1 {
        font-size: clamp(2.775rem, calc(14vw - 0.375rem), 3.875rem);
    }

    .sell-page-hero-copy p {
        margin-top: 1.8rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .sell-page-hero-media img {
        min-height: 300px;
        max-height: 420px;
    }

    .rent-page-hero-copy {
        min-height: auto;
        padding: 3.2rem 14px 3.4rem;
    }

    .rent-page-hero-copy h1 {
        font-size: clamp(2.675rem, calc(13vw - 0.375rem), 3.625rem);
    }

    .rent-page-hero-copy p {
        max-width: none;
        margin-top: 1.8rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .rent-page-hero-media img {
        min-height: 300px;
        max-height: 420px;
    }

    .manage-page-hero-copy {
        min-height: auto;
        padding: 3.2rem 14px 3.4rem;
    }

    .manage-page-hero-copy h1 {
        font-size: clamp(2.275rem, calc(11vw - 0.375rem), 3.175rem);
    }

    .manage-page-hero-copy p {
        max-width: none;
        margin-top: 1.55rem;
        font-size: 1rem;
        line-height: 1.58;
    }

    .manage-page-hero-media img {
        min-height: 300px;
        max-height: 420px;
    }

    .about-page-hero-copy {
        min-height: auto;
        padding: 3.2rem 14px 3.2rem;
    }

    .about-page-hero-copy h1 {
        font-size: clamp(2.575rem, calc(12vw - 0.375rem), 3.425rem);
    }

    .about-page-tagline {
        max-width: none;
        margin-top: 1.85rem;
        font-size: clamp(1.85rem, 8vw, 2.45rem);
    }

    .about-page-hero-body {
        max-width: none;
        margin-top: 1.35rem;
        font-size: 1rem;
        line-height: 1.58;
    }

    .about-page-hero-media img {
        min-height: 300px;
        max-height: 420px;
    }

    .sale-guidance-section {
        padding-block: 2.25rem;
    }

    .seller-guidance-section {
        padding-block: 2.25rem;
    }

    .rent-guidance-section {
        padding-block: 2.25rem;
    }

    .manage-guidance-section {
        padding-block: 2.25rem;
    }

    .about-values-section {
        padding-block: 2.25rem;
    }

    .sale-guidance-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        width: var(--shell);
    }

    .seller-guidance-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        width: min(1560px, calc(100vw - 40px));
    }

    .rent-guidance-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        width: min(1560px, calc(100vw - 40px));
    }

    .manage-guidance-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        width: min(1560px, calc(100vw - 40px));
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1.7rem;
        width: min(1560px, calc(100vw - 40px));
    }

    .sale-guidance-item + .sale-guidance-item {
        padding-top: 1.7rem;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.14);
        border-left: 0;
    }

    .seller-guidance-item + .seller-guidance-item {
        padding-top: 1.7rem;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.14);
        border-left: 0;
    }

    .rent-guidance-item + .rent-guidance-item {
        padding-top: 1.7rem;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.14);
        border-left: 0;
    }

    .manage-guidance-item + .manage-guidance-item {
        padding-top: 1.7rem;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.14);
        border-left: 0;
    }

    .about-value-item + .about-value-item {
        padding-top: 1.7rem;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.14);
        border-left: 0;
    }

    .sell-market-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 1.6rem;
    }

    .sell-market-cta-panel .button {
        width: 100%;
        min-width: 0;
    }

    .rent-search-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 1.6rem;
    }

    .rent-search-cta-panel .button {
        width: 100%;
        min-width: 0;
    }

    .manage-support-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 1.6rem;
    }

    .manage-support-cta-panel .button {
        width: 100%;
        min-width: 0;
    }

    .about-services-panel {
        width: min(1560px, calc(100vw - 40px));
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1.45rem 1.6rem;
    }

    .about-services-panel h2 {
        margin-bottom: 0.75rem;
    }

    .about-services-panel p {
        justify-content: flex-start;
        min-height: 0;
        padding-block: 0.9rem;
        border-top: 1px solid rgba(0, 0, 0, 0.14);
        border-left: 0;
    }

    .about-help-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 1.6rem;
    }

    .about-help-cta-panel .button {
        width: 100%;
        min-width: 0;
    }

    .sale-bond-cta-panel {
        width: min(1560px, calc(100vw - 40px));
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 1.6rem;
    }

    .sale-bond-cta-panel .button {
        width: 100%;
        min-width: 0;
    }

    .template-homepage .hero-title {
        max-width: 100%;
        padding: 0;
        font-size: 2.55rem;
        line-height: 1.04;
    }

    .template-homepage .hero-title .hero-title-to-desktop {
        display: none;
    }

    .template-homepage .hero-title .hero-title-to-mobile,
    .template-homepage .hero-title .hero-title-mobile-nowrap {
        display: inline;
    }

    .template-homepage .hero-title .hero-title-mobile-nowrap {
        white-space: nowrap;
    }

    .template-homepage .hero-title-image-panel {
        width: 100%;
    }

    .template-homepage .hero-title-accent {
        margin-top: 1.25rem;
        margin-left: 0;
        font-size: 1.25rem;
    }

    .hero-fade {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.76) 58%, rgba(255, 255, 255, 0.44) 100%);
    }

    .template-homepage .hero-fade {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.18) 36%, rgba(255, 255, 255, 0) 70%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0) 100%);
    }

    .template-homepage .button-row .button {
        width: auto;
        min-width: 210px;
    }

    .section,
    .contact-section {
        padding-block: 3.5rem;
    }

    .section-heading-row {
        display: grid;
        align-items: start;
    }

    .principal-support-copy h2 {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .company-profile-intro {
        padding-block: calc(70px + 3.5rem) 3.5rem;
    }

    .company-profile-intro h1 {
        font-size: clamp(1.625rem, calc(10vw - 0.375rem), 2.825rem);
    }

    .featured-properties-section {
        padding-block: 3.4rem 4rem;
    }

    .featured-properties-heading-main::after {
        margin-top: 1.25rem;
    }

    .hero-copy-panel {
        padding: 1rem 1.1rem 1.1rem;
    }

    .listing-hero-copy {
        padding: 0;
    }

    .hero-copy-panel h1 {
        font-size: clamp(1.625rem, calc(10vw - 0.375rem), 2.775rem);
    }

    .internal-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .internal-document-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .internal-document-card .button {
        justify-self: start;
    }

    .listing-grid,
    .audience-flow-grid,
    .news-card-list,
    .buyer-process-grid,
    .lead-form,
    .listing-filter,
    .listing-search-panel,
    .image-grid {
        grid-template-columns: 1fr;
    }

    .listing-search-panel {
        margin-top: 0;
    }

    .listing-search-submit {
        grid-column: auto;
    }

    .results-toolbar {
        display: grid;
        align-items: start;
    }

    .buyer-requirements-panel {
        grid-template-columns: 1fr;
        padding: 1.35rem;
    }

    .buyer-requirements-panel .button {
        width: 100%;
        min-width: 0;
    }

    .result-sort {
        grid-auto-flow: row;
    }

    .button-row {
        display: grid;
    }

    .button-row .button {
        width: 100%;
    }

    .audience-flow-card .button,
    .contact-route-actions .button,
    .contact-reveal-actions .button {
        width: 100%;
    }

    .footer-social-icons,
    .footer-login-links {
        justify-content: flex-start;
    }

    .footer-legal-links a {
        white-space: normal;
    }

    .agent-hub-brand-row {
        min-height: 54px;
        padding-inline: 1rem;
    }

    .agent-hub-brand img {
        height: 28px;
    }

    .agent-hub-account {
        max-width: 44vw;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .agent-hub-nav {
        padding-inline: 0.6rem;
    }

    .agent-hub-nav a {
        padding: 0.75rem 0.65rem;
        font-size: 0.88rem;
    }

    .agent-hub-hero,
    .agent-hub-hero-content {
        min-height: 230px;
    }

    .agent-hub-hero-content h1,
    .agent-hub-page h1 {
        font-size: 2.25rem;
    }

    .agent-hub-section {
        padding-block: 2.4rem 2.8rem;
    }

    .agent-shortcut-grid,
    .agent-resource-grid,
    .agent-form-grid {
        grid-template-columns: 1fr;
    }

    .agent-resource-media,
    .agent-resource-media img {
        min-height: 175px;
    }

    .agent-hub-page {
        padding-block: 2.5rem 3.5rem;
    }

    .template-developer-roadmap .agent-hub-page-inner {
        width: min(100% - 24px, 1480px);
    }

    .developer-roadmap-header,
    .developer-roadmap-filters {
        grid-template-columns: 1fr;
    }

    .developer-roadmap-source {
        min-width: 0;
    }

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

    .developer-roadmap-filter-actions {
        justify-content: flex-start;
    }

    .developer-roadmap-table {
        min-width: 1120px;
    }

    .agent-results-table th,
    .agent-results-table td {
        padding: 0.75rem;
    }
}
