:root {
    --bg: #f4f6f8;
    --bg-soft: #ffffff;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --text: #101820;
    --muted: #5f6875;
    --line: rgba(16, 24, 32, 0.1);
    --line-strong: rgba(16, 24, 32, 0.18);
    --blue: #c91f2c;
    --blue-deep: #981520;
    --ink: #101820;
    --stone: #e7ecf2;
    --shadow-lg: 0 24px 56px rgba(16, 24, 32, 0.12);
    --shadow-md: 0 14px 34px rgba(16, 24, 32, 0.08);
    --radius-xl: 10px;
    --radius-lg: 8px;
    --radius-md: 8px;
    --container: min(1180px, calc(100vw - 40px));
    --pointer-x: 0px;
    --pointer-y: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(16, 24, 32, 0.055), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(201, 31, 44, 0.045), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f4f6f8 58%, #eef2f6 100%);
    font-family:
        "SF Pro Display",
        "SF Pro Text",
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.is-ready .hero__panel {
    animation: hero-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.has-open-modal {
    overflow: hidden;
}

img {
    max-width: 100%;
}

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

button {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.page-shell {
    min-height: 100vh;
    padding-bottom: 48px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 12px 0;
    transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(16, 24, 32, 0.08);
}

.site-header:not(.is-scrolled) .brand__text strong,
.site-header:not(.is-scrolled) .site-nav a {
    color: rgba(255, 255, 255, 0.86);
}

.site-header:not(.is-scrolled) .site-nav__social {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.site-header:not(.is-scrolled) .brand__text small {
    color: rgba(255, 255, 255, 0.58);
}

.site-header:not(.is-scrolled) .nav-toggle span {
    background: #fff;
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

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

.brand__text {
    display: grid;
    gap: 2px;
}

.brand__text strong {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0;
}

.brand__text small {
    color: var(--muted);
    font-size: 0.76rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav a {
    position: relative;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 180ms ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: var(--radius-lg);
    background: var(--blue);
    transform: scaleX(0.4);
    transform-origin: center;
    opacity: 0;
    transition: opacity 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--text);
}

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

.site-header .site-nav a.button--primary,
.site-header .site-nav a.button--primary:hover,
.site-header .site-nav a.button--primary:focus-visible,
.site-header .site-nav a.button--primary.is-active {
    color: #fff;
}

.site-nav a.site-nav__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
}

.site-nav a.site-nav__social::after {
    display: none;
}

.site-nav__social svg,
.site-footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/*
.floating-offers {
    position: fixed;
    top: 18px;
    right: max(22px, calc((100vw - 1180px) / 2 - 10px));
    z-index: 34;
    width: 228px;
    height: 178px;
    pointer-events: none;
    perspective: 900px;
    isolation: isolate;
}

.floating-offers__label {
    position: absolute;
    top: -8px;
    right: 8px;
    z-index: 5;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(16, 24, 32, 0.78);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.18);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.floating-offer-card {
    position: absolute;
    inset: 22px 0 0;
    display: grid;
    grid-template-rows: 82px auto;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    box-shadow: 0 20px 44px rgba(5, 10, 18, 0.22);
    pointer-events: auto;
    transform-origin: 52% 82%;
    transition:
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 260ms ease,
        filter 260ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.floating-offer-card::after {
    display: none;
}

.floating-offer-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
}

.floating-offer-card--one img {
    object-position: 52% 45%;
}

.floating-offer-card--two img {
    object-position: 42% 52%;
}

.floating-offer-card--three img {
    object-position: 68% 50%;
}

.floating-offer-card span,
.floating-offer-card strong,
.floating-offer-card small {
    margin-right: 13px;
    margin-left: 13px;
}

.floating-offer-card span {
    margin-top: 10px;
    color: var(--blue);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.floating-offer-card strong {
    margin-top: 5px;
    font-size: 0.9rem;
    line-height: 1.08;
}

.floating-offer-card small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.15;
}

.floating-offer-card[data-layer="0"] {
    z-index: 3;
    opacity: 1;
    filter: none;
    transform: translate3d(0, 0, 30px) rotate(-2.6deg) scale(1);
}

.floating-offer-card[data-layer="1"] {
    z-index: 2;
    opacity: 0.82;
    filter: saturate(0.92);
    transform: translate3d(-18px, 13px, 0) rotate(4.5deg) scale(0.94);
}

.floating-offer-card[data-layer="2"] {
    z-index: 1;
    opacity: 0.68;
    filter: saturate(0.86);
    transform: translate3d(18px, 24px, -30px) rotate(-7deg) scale(0.88);
}

.floating-offers.is-shuffling .floating-offer-card[data-layer="0"] {
    transform: translate3d(2px, -9px, 42px) rotate(1.8deg) scale(1.02);
}

.floating-offer-card:hover,
.floating-offer-card:focus-visible {
    border-color: rgba(201, 31, 44, 0.32);
    box-shadow: 0 24px 54px rgba(5, 10, 18, 0.28);
}
*/

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: var(--radius-lg);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 180ms ease;
}

.nav-toggle.is-active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 600;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::before {
    content: none;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button--small {
    min-height: 42px;
    padding: 0 18px;
}

.button--full {
    width: 100%;
}

.button--primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 12px 26px rgba(16, 24, 32, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: #0f1513;
}

.button--secondary {
    background: rgba(255, 255, 255, 0.76);
    border-color: var(--line-strong);
    color: var(--text);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 100svh;
    margin-top: 0;
    padding: 132px 0 72px;
    overflow: hidden;
    color: #fff;
    background: #080506;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 72% 30%, rgba(201, 31, 44, 0.16), transparent 42%),
        radial-gradient(circle at 50% 42%, rgba(8, 5, 6, 0.34), rgba(8, 5, 6, 0.62) 68%, rgba(8, 5, 6, 0.48) 100%),
        linear-gradient(180deg, rgba(8, 5, 6, 0.04) 0%, rgba(8, 5, 6, 0.1) 52%, rgba(8, 5, 6, 0.66) 100%);
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(244, 246, 248, 0.98));
    pointer-events: none;
}

.hero__media {
    position: absolute;
    inset: -1px 0 0;
    z-index: -2;
    background: #080506;
}

.hero__media picture,
.hero__media img,
.hero__video {
    display: block;
    width: 100%;
    height: 100%;
}

.hero__media picture {
    position: absolute;
    inset: 0;
}

.hero__media img,
.hero__video {
    object-fit: cover;
    object-position: center;
}

.hero__video {
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity 700ms ease;
}

.hero__video.is-ready {
    opacity: 1;
}

.hero__panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - 204px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.hero__image-card,
.mini-card,
.statement-card,
.focus-card,
.plain-card,
.benefit-card,
.listing-card,
.process-card,
.service-card,
.partner-card,
.cta-card {
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.hero__intro {
    max-width: 720px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-card h2 {
    margin: 0;
    font-size: clamp(3.4rem, 5.2vw, 4.75rem);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 700;
}

.text-accent {
    color: var(--blue);
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.section-heading h2,
.cta-card h2 {
    font-size: clamp(2rem, 3.1vw, 3.25rem);
}

.hero__lead {
    margin: 16px 0 0;
    font-size: 1.16rem;
    line-height: 1.45;
    letter-spacing: 0;
}

.hero__lead {
    max-width: 680px;
    margin-top: 22px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
}

.section-heading p,
.statement-card__text,
.focus-card p,
.plain-card li,
.benefit-card p,
.listing-card__meta,
.process-card p,
.service-card p,
.partner-card p,
.cta-card p,
.mini-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.hero__actions .button--secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.36);
}

.hero__actions .button--secondary:hover,
.hero__actions .button--secondary:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

.hero__trust {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.hero__mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.hero__mini-grid--full {
    margin-top: 28px;
}

.mini-card {
    padding: 18px;
    border-radius: var(--radius-lg);
    transform: translate3d(calc(var(--pointer-x) * -0.35), calc(var(--pointer-y) * -0.35), 0);
    transition: transform 320ms ease, box-shadow 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.mini-card span,
.process-card span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-lg);
    background: rgba(201, 31, 44, 0.1);
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 700;
}

.mini-card strong,
.focus-card strong,
.benefit-card strong,
.process-card strong,
.service-card strong,
.partner-card strong,
.cta-card__contact strong,
.listing-card__body h3 {
    display: block;
    margin-top: 14px;
    font-size: 1.16rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.mini-card p {
    margin-top: 8px;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
}

.video-modal[hidden] {
    display: none;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 10, 0.78);
    backdrop-filter: blur(12px);
}

.video-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: #0b0d11;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.video-modal__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    color: #fff;
}

.video-modal__bar p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.video-modal__close {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.video-modal__close::before,
.video-modal__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.video-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.video-modal__frame {
    aspect-ratio: 16 / 9;
    background: #000;
}

.video-modal__frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: grid;
    place-items: center;
    padding: 24px;
}

.gallery-modal[hidden] {
    display: none;
}

.gallery-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 7, 10, 0.84);
    backdrop-filter: blur(14px);
}

.gallery-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 14px;
    width: min(1180px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: #090b0f;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.46);
}

.gallery-modal__bar {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #fff;
}

.gallery-modal__bar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 800;
}

.gallery-modal__close,
.gallery-modal__nav {
    position: relative;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.gallery-modal__close:hover,
.gallery-modal__nav:hover,
.gallery-modal__close:focus-visible,
.gallery-modal__nav:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
    outline: none;
}

.gallery-modal__close::before,
.gallery-modal__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.gallery-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.gallery-modal__nav {
    align-self: center;
}

.gallery-modal__nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.gallery-modal__nav--prev::before {
    transform: translate(-35%, -50%) rotate(-45deg);
}

.gallery-modal__nav--next::before {
    transform: translate(-65%, -50%) rotate(135deg);
}

.gallery-modal__figure {
    display: grid;
    min-height: 0;
    margin: 0;
    place-items: center;
}

.gallery-modal__figure img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 156px);
    border-radius: var(--radius-md);
    object-fit: contain;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.section {
    padding: 36px 0;
}

.section--soft {
    position: relative;
}

.section--soft::before {
    content: "";
    position: absolute;
    inset: 12px 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.section-heading {
    max-width: 860px;
    margin-right: auto;
    margin-bottom: 22px;
    margin-left: auto;
    text-align: center;
}

.section-heading p {
    max-width: 760px;
    margin-top: 16px;
    margin-right: auto;
    margin-left: auto;
    color: #4a5564;
    font-size: clamp(1.04rem, 1.35vw, 1.18rem);
    line-height: 1.56;
    font-weight: 500;
}

.why-grid,
.split-block,
.partner-strip,
.cta-card {
    display: grid;
    gap: 20px;
}

.why-grid {
    grid-template-columns: minmax(300px, 0.88fr) minmax(500px, 1.12fr);
    align-items: start;
    gap: clamp(22px, 3vw, 42px);
    max-width: 1060px;
    margin: 0 auto;
}

.why-grid .inline-video-card {
    width: min(100%, 400px);
    min-height: 430px;
    justify-self: end;
}

.why-content {
    display: grid;
    gap: 16px;
}

.sale-journey {
    position: relative;
    height: var(--sale-journey-height, 430px);
    min-height: var(--sale-journey-height, 430px);
    overflow: visible;
    isolation: isolate;
    --journey-card-width: min(280px, 48%);
    --sale-progress: 0;
    --sale-path-length: 1050;
    --sale-step-1: 0;
    --sale-step-2: 0;
    --sale-step-3: 0;
    --sale-step-4: 0;
    --sale-step-5: 0;
    --sale-profit: 0;
}

.sale-journey__path {
    position: absolute;
    inset: 18px auto 18px 0;
    width: calc(100% - 26px);
    height: calc(100% - 36px);
    overflow: visible;
    pointer-events: none;
}

.sale-journey__path--mobile {
    display: none;
}

.sale-journey__path path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sale-journey__path-shadow {
    stroke: rgba(16, 24, 32, 0.1);
    stroke-width: 11;
}

.sale-journey__path-line {
    stroke: rgba(201, 31, 44, 0.9);
    stroke-width: 4;
    stroke-dasharray: var(--sale-path-length);
    stroke-dashoffset: calc(var(--sale-path-length) * (1 - var(--sale-progress)));
    filter: drop-shadow(0 8px 14px rgba(201, 31, 44, 0.14));
}

.sale-journey__steps {
    position: relative;
    z-index: 1;
    min-height: inherit;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sale-journey__step {
    position: absolute;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    width: var(--journey-card-width);
    min-height: 60px;
    padding: 12px;
    border: 1px solid rgba(16, 24, 32, 0.11);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.09);
    opacity: calc(0.44 + (var(--step-progress, 0) * 0.56));
    transform:
        translateY(calc(10px * (1 - var(--step-progress, 0))))
        scale(calc(0.985 + (var(--step-progress, 0) * 0.015)));
    transition: box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.sale-journey__step:nth-child(1) {
    top: 3%;
    left: 0;
}

.sale-journey__step:nth-child(2) {
    top: 18%;
    right: 0;
}

.sale-journey__step:nth-child(3) {
    top: 37%;
    left: 0;
}

.sale-journey__step:nth-child(4) {
    top: 61%;
    right: 0;
}

.sale-journey__step:nth-child(5) {
    top: 82%;
    left: 0;
}

.sale-journey__step:nth-child(1) {
    --step-progress: var(--sale-step-1);
}

.sale-journey__step:nth-child(2) {
    --step-progress: var(--sale-step-2);
}

.sale-journey__step:nth-child(3) {
    --step-progress: var(--sale-step-3);
}

.sale-journey__step:nth-child(4) {
    --step-progress: var(--sale-step-4);
}

.sale-journey__step:nth-child(5) {
    --step-progress: var(--sale-step-5);
}

.sale-journey__marker {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--ink);
    background: color-mix(in srgb, var(--ink) calc(var(--step-progress, 0) * 100%), #dfe5ec);
    color: #fff;
    color: color-mix(in srgb, #fff calc(var(--step-progress, 0) * 100%), #66717f);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(16, 24, 32, calc(0.08 + (var(--step-progress, 0) * 0.1)));
}

.sale-journey__step strong {
    display: block;
    color: var(--text);
    color: color-mix(in srgb, var(--text) calc(58% + (var(--step-progress, 0) * 42%)), #8a94a3);
    font-size: 0.9rem;
    line-height: 1.25;
}

.sale-journey__step--final {
    border-color: rgba(201, 31, 44, 0.18);
    background:
        radial-gradient(circle at 88% 28%, rgba(201, 31, 44, calc(0.08 + var(--sale-profit) * 0.1)), transparent 30%),
        rgba(255, 255, 255, 0.9);
    padding-right: 72px;
}

.sale-journey__profit {
    position: absolute;
    right: 14px;
    top: 12px;
    display: inline-flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 1px;
    width: 48px;
    height: 34px;
    opacity: var(--sale-profit);
    filter: drop-shadow(0 0 calc(10px * var(--sale-profit)) rgba(201, 31, 44, 0.24));
    transform: translateY(calc(8px * (1 - var(--sale-profit))));
}

.sale-journey__profit span {
    display: inline-block;
    width: auto;
    height: auto;
    color: var(--blue);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    transform-origin: bottom;
    transform: translateY(calc(6px * (1 - var(--sale-profit)))) scale(var(--sale-profit));
}

.sale-journey__profit span:nth-child(1) {
    font-size: 0.9rem;
}

.sale-journey__profit span:nth-child(2) {
    font-size: 1.18rem;
}

.sale-journey__profit span:nth-child(3) {
    font-size: 1.55rem;
}

.sale-journey.is-complete .sale-journey__profit span {
    animation: profit-dollar-pulse 1100ms ease-in-out infinite;
}

.sale-journey.is-complete .sale-journey__profit span:nth-child(2) {
    animation-delay: 90ms;
}

.sale-journey.is-complete .sale-journey__profit span:nth-child(3) {
    animation-delay: 180ms;
}

.statement-card,
.plain-card {
    padding: 32px;
    border-radius: var(--radius-lg);
}

.portrait-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.inline-video-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(201, 31, 44, 0.08), transparent 48%),
        #101820;
    box-shadow: var(--shadow-md);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.inline-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 13, 24, 0.08), rgba(5, 13, 24, 0.78)),
        linear-gradient(90deg, rgba(5, 13, 24, 0.5), transparent 58%);
    pointer-events: none;
}

.inline-video-card__video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.96) contrast(1.04);
}

.inline-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--blue);
    box-shadow: 0 18px 42px rgba(5, 13, 24, 0.28);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.inline-video-card__play span {
    display: block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid currentColor;
}

.inline-video-card__play:hover,
.inline-video-card__play:focus-visible {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.05);
}

.inline-video-card.is-playing-with-sound .inline-video-card__play {
    opacity: 0;
    pointer-events: none;
}

.inline-video-card__caption {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
}

.inline-video-card__caption .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.inline-video-card__caption strong {
    display: block;
    max-width: 26ch;
    font-size: 1.28rem;
    line-height: 1.18;
}

.inline-video-card--landscape {
    min-height: 360px;
}

.portrait-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    object-position: center top;
}

.portrait-card__body {
    padding: 22px 24px 24px;
}

.portrait-card__body strong {
    display: block;
    margin-top: 2px;
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.statement-card__text {
    font-size: 1.5rem;
    line-height: 1.35;
    letter-spacing: 0;
    color: var(--text);
}

.focus-grid,
.benefit-grid,
.video-grid,
.listing-grid,
.process-grid,
.service-grid {
    display: grid;
    gap: 16px;
}

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

.focus-card,
.benefit-card,
.process-card,
.service-card,
.partner-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.statement-card,
.plain-card {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.plain-card {
    align-self: end;
}

.plain-card--wide {
    max-width: 860px;
    margin-bottom: 18px;
}

.clean-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.clean-list li {
    position: relative;
    padding-left: 26px;
}

.clean-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
}

.clean-list--large {
    gap: 16px;
}

.clean-list--large li {
    padding-left: 30px;
    color: var(--text);
    font-size: 1.08rem;
    line-height: 1.6;
    letter-spacing: 0;
}

.clean-list--large li::before {
    top: 0.68em;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 6px rgba(201, 31, 44, 0.1);
}

.split-block {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: end;
}

.benefit-grid,
.service-grid,
.video-grid,
.process-grid,
.listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid--compact {
    gap: 18px;
}

.video-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.video-card__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(201, 31, 44, 0.1), transparent 42%),
        linear-gradient(180deg, #eef2f6, #dfe5ec);
}

.video-card__poster {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: inherit;
}

.video-card__poster img,
.video-card__iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.video-card__poster img {
    object-fit: cover;
    object-position: center center;
    transition: transform 260ms ease, filter 260ms ease;
}

.video-card__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.4)),
        linear-gradient(135deg, rgba(201, 31, 44, 0.14), transparent 45%);
    transition: opacity 220ms ease;
}

.video-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(16, 24, 32, 0.14);
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 36px rgba(16, 24, 32, 0.18);
    transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.video-card__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-38%, -50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 18px solid var(--blue);
}

.video-card:hover .video-card__poster img,
.video-card:focus-within .video-card__poster img {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.video-card--cinematic .video-card__poster img {
    transform: scale(1.18);
    object-position: center 42%;
}

.video-card--cinematic:hover .video-card__poster img,
.video-card--cinematic:focus-within .video-card__poster img {
    transform: scale(1.22);
}

.video-card:hover .video-card__poster::after,
.video-card:focus-within .video-card__poster::after {
    opacity: 0.65;
}

.video-card:hover .video-card__play,
.video-card:focus-within .video-card__play {
    transform: translate(-50%, -50%) scale(1.06);
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.18);
}

.video-card__body {
    padding: 20px 22px 22px;
}

.video-card__meta {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.video-card__body h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.video-card__body p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.video-card__iframe {
    border: 0;
    background: #000;
}

.review-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
    gap: clamp(24px, 3vw, 42px);
    align-items: start;
}

.review-showcase__portrait {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: min(100%, 420px);
    aspect-ratio: 2 / 3;
    height: auto;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #eef0f3;
    box-shadow: var(--shadow-md);
}

.review-showcase__portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.review-showcase__content {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.section-heading--reviews {
    max-width: 500px;
    margin-right: 0;
    margin-bottom: 6px;
    margin-left: 0;
    text-align: left;
}

.section-heading--reviews h2 {
    font-size: clamp(2.25rem, 3.1vw, 3.1rem);
    line-height: 1;
}

.section-heading--reviews .eyebrow {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 0.78rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-gallery {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: minmax(92px, auto) minmax(122px, auto) minmax(126px, auto);
    gap: 12px;
    align-items: center;
    min-height: 340px;
    margin-top: 0;
    padding: 8px 8px 18px;
}

.review-gallery__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    padding: 8px;
}

.review-gallery__item--wide {
    z-index: 2;
    grid-column: 1 / span 10;
    grid-row: 1 / span 2;
    justify-self: start;
    max-width: 410px;
    transform: rotate(-2.2deg);
}

.review-gallery__item--small {
    z-index: 3;
    grid-column: 7 / span 6;
    grid-row: 2 / span 1;
    justify-self: end;
    max-width: 245px;
    transform: rotate(3deg) translateY(10px);
}

.review-gallery__item--tall {
    z-index: 1;
    grid-column: 2 / span 8;
    grid-row: 2 / span 2;
    justify-self: center;
    max-width: 275px;
    transform: rotate(1.4deg) translateY(18px);
}

.review-video-quote {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.74fr);
    gap: 0;
    align-items: center;
    margin-top: clamp(24px, 3.6vw, 48px);
}

.review-video-quote__video {
    z-index: 1;
    min-height: 0;
    aspect-ratio: 16 / 9;
}

.review-video-quote__quote {
    position: relative;
    z-index: 2;
    margin: 0;
    margin-left: clamp(-72px, -5.2vw, -34px);
    padding: clamp(18px, 3vw, 34px) 0 clamp(18px, 3vw, 34px) clamp(28px, 4.4vw, 58px);
    transform: rotate(-3.2deg);
}

.review-video-quote__quote::before {
    content: "“";
    position: absolute;
    top: clamp(-26px, -3vw, -12px);
    left: clamp(-2px, 0.4vw, 8px);
    color: rgba(201, 31, 44, 0.22);
    font-family: Georgia, serif;
    font-size: clamp(5.8rem, 10vw, 9.6rem);
    line-height: 1;
}

.review-video-quote__quote::after {
    content: "";
    position: absolute;
    left: clamp(18px, 3.6vw, 48px);
    right: 8%;
    bottom: clamp(8px, 1.4vw, 18px);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), rgba(201, 31, 44, 0));
    transform: rotate(0deg);
}

.review-video-quote__quote blockquote {
    position: relative;
    z-index: 1;
    max-width: 13ch;
    margin: 0;
    color: var(--text);
    font-size: clamp(1.85rem, 3.35vw, 3.35rem);
    font-weight: 750;
    line-height: 0.96;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.82),
        0 18px 34px rgba(16, 24, 32, 0.12);
}

.review-gallery__item img {
    display: block;
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.listing-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.listing-card:hover,
.listing-card:focus-within {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.listing-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
    background: #ececef;
}

.listing-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(29, 29, 31, 0.2));
    opacity: 0.8;
    transition: opacity 220ms ease;
}

.listing-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.listing-card:hover .listing-card__media img,
.listing-card:focus-within .listing-card__media img {
    transform: scale(1.03);
}

.listing-card:hover .listing-card__media::after,
.listing-card:focus-within .listing-card__media::after {
    opacity: 0.5;
}

.listing-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 700;
}

.listing-card__tag--for-sale {
    background: rgba(239, 250, 242, 0.94);
    color: #267044;
}

.listing-card__tag--reserved {
    background: rgba(255, 249, 219, 0.94);
    color: #84630d;
}

.listing-card__tag--for-rent {
    background: rgba(239, 250, 242, 0.94);
    color: #267044;
}

.listing-card__tag--rented {
    background: rgba(255, 242, 242, 0.94);
    color: #9f2f36;
}

.listing-card__tag--sold {
    background: rgba(241, 244, 247, 0.94);
    color: #4b5563;
}

.listing-card__body {
    padding: 22px;
}

.listing-card__meta {
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.listing-card__body h3 {
    margin-bottom: 14px;
}

.listing-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 0.95rem;
    font-weight: 600;
    transition: gap 180ms ease, color 180ms ease;
}

.listing-card__link::after {
    content: "↗";
    font-size: 1rem;
}

.listing-card:hover .listing-card__link,
.listing-card:focus-within .listing-card__link {
    gap: 12px;
    color: var(--blue-deep);
}

.listing-grid--managed {
    margin-bottom: 24px;
}

.property-offer-section {
    padding-top: clamp(44px, 6vw, 84px);
}

.offers-page .property-offer-section {
    padding-top: 138px;
}

.property-offer-section .section-heading {
    max-width: 1120px;
    margin-bottom: clamp(22px, 3vw, 34px);
    text-align: center;
}

.property-offer-section .section-heading h2,
.section-heading--offers h1 {
    max-width: 780px;
    margin: 0;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.15rem, 4.2vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.property-offer-grid {
    gap: clamp(18px, 2.4vw, 28px);
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
}

.property-offer-grid .listing-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.property-offer-grid .listing-card:hover,
.property-offer-grid .listing-card:focus-within {
    transform: translateY(-3px);
    box-shadow: none;
}

.property-offer-grid .listing-card__media {
    position: relative;
    aspect-ratio: 16 / 11;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.16), rgba(201, 31, 44, 0.08)),
        #e7ecf2;
    box-shadow: 0 18px 44px rgba(16, 24, 32, 0.1);
}

.property-offer-grid .listing-card__media::after {
    background:
        linear-gradient(180deg, rgba(16, 24, 32, 0.06) 0%, rgba(16, 24, 32, 0.16) 46%, rgba(8, 11, 16, 0.78) 100%);
    opacity: 1;
}

.property-offer-grid .listing-card:hover .listing-card__media::after,
.property-offer-grid .listing-card:focus-within .listing-card__media::after {
    opacity: 0.84;
}

.property-offer-grid .listing-card__tag {
    z-index: 2;
    top: 16px;
    right: 16px;
    bottom: auto;
    left: auto;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-size: 0.74rem;
}

.property-offer-grid .listing-card__tag--for-sale {
    border-color: rgba(38, 112, 68, 0.18);
    background: rgba(239, 250, 242, 0.92);
}

.property-offer-grid .listing-card__tag--reserved {
    border-color: rgba(132, 99, 13, 0.2);
    background: rgba(255, 249, 219, 0.92);
}

.property-offer-grid .listing-card__tag--for-rent {
    border-color: rgba(38, 112, 68, 0.18);
    background: rgba(239, 250, 242, 0.92);
}

.property-offer-grid .listing-card__tag--rented {
    border-color: rgba(159, 47, 54, 0.18);
    background: rgba(255, 242, 242, 0.92);
}

.property-offer-grid .listing-card__tag--sold {
    border-color: rgba(75, 85, 99, 0.18);
    background: rgba(241, 244, 247, 0.92);
}

.property-offer-grid .listing-card__body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    gap: 8px;
    padding: clamp(20px, 2.6vw, 30px);
    color: #ffffff;
}

.property-offer-grid .listing-card__meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
}

.property-offer-grid .listing-card__title {
    display: block;
    margin: 0;
    max-width: 14ch;
    color: #ffffff;
    font-size: clamp(1.45rem, 2.6vw, 2.25rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
}

.property-offer-grid .listing-card__price {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.25;
}

.property-offer-grid .listing-card__link {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.property-offer-grid .listing-card__link::after {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
}

.property-offer-grid .listing-card:hover .listing-card__link,
.property-offer-grid .listing-card:focus-within .listing-card__link {
    gap: 8px;
    color: #ffffff;
}

.property-offer-grid .listing-card:hover .listing-card__link::after,
.property-offer-grid .listing-card:focus-within .listing-card__link::after {
    transform: translateX(5px);
}

.property-offer-grid .listing-card__media.is-empty::before,
.property-offer-grid .listing-card__placeholder::before {
    content: "Jana Mamulová Reality";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(16, 24, 32, 0.34);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.property-offer-actions {
    display: flex;
    justify-content: flex-end;
    max-width: 1120px;
    margin: 18px auto 0;
}

.property-offer-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: none;
    transition: color 180ms ease;
}

.property-offer-more::after {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
}

.property-offer-more:hover,
.property-offer-more:focus-visible {
    color: var(--blue);
}

.property-offer-more:hover::after,
.property-offer-more:focus-visible::after {
    transform: translateX(4px);
}

.listing-card--managed .listing-card__body p {
    color: var(--muted);
    line-height: 1.55;
}

.property-offer-grid .listing-card__body .listing-card__meta {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.25;
}

.property-offer-grid .listing-card--empty {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 38px rgba(16, 24, 32, 0.06);
}

.property-offer-grid .listing-card--empty .listing-card__body {
    position: static;
    padding: 24px;
    color: var(--text);
}

.property-offer-grid .listing-card--empty .listing-card__meta {
    color: var(--blue);
}

.property-offer-grid .listing-card--empty .listing-card__link {
    color: var(--text);
}

.listing-card__price {
    display: block;
    margin: 14px 0;
}

.listing-card__placeholder {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(201, 31, 44, 0.12), rgba(16, 24, 32, 0.08)),
        #eef2f6;
}

.listing-card--empty {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
    text-align: center;
}

.listing-card--empty .listing-card__placeholder {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
}

.property-page {
    min-height: 100vh;
    overflow-x: clip;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 42%, #ffffff 100%);
}

.property-site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(16, 24, 32, 0.08);
}

.property-intro-section {
    padding-top: clamp(112px, 12vw, 152px);
    padding-bottom: clamp(56px, 8vw, 104px);
}

.property-intro-section--no-header {
    padding-top: clamp(48px, 7vw, 88px);
}

.property-intro-section--cover {
    position: relative;
    min-height: clamp(620px, 86svh, 860px);
    display: flex;
    align-items: end;
    padding-top: clamp(136px, 15vw, 188px);
    padding-bottom: clamp(72px, 11vw, 128px);
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.property-intro-section--cover.property-intro-section--no-header {
    padding-top: clamp(64px, 10vw, 112px);
}

.property-intro-section--cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(244, 246, 248, 0.96));
    pointer-events: none;
}

.property-intro-section--cover .property-intro {
    position: relative;
    z-index: 1;
    width: var(--container);
    margin-right: auto;
    margin-left: auto;
    align-items: start;
}

.property-intro-section--cover .property-back,
.property-intro-section--cover .property-intro__copy > p,
.property-intro-section--cover .property-intro__meta {
    color: rgba(255, 255, 255, 0.84);
}

.property-intro-section--cover .property-intro h1,
.property-intro-section--cover .property-intro__meta strong {
    color: #ffffff;
}

.property-intro-section--cover .property-intro h1 {
    max-width: 13ch;
}

.property-intro-section--cover .property-badge {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(6, 12, 20, 0.18);
}

.property-intro-section--cover .button--primary {
    box-shadow: 0 14px 34px rgba(6, 12, 20, 0.22);
}

.property-intro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(280px, 390px);
    justify-content: center;
    gap: clamp(14px, 1.8vw, 24px);
    align-items: start;
}

.property-intro--wide {
    grid-template-columns: minmax(0, 1fr);
}

.property-intro__copy {
    max-width: 920px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.property-intro--wide .property-intro__copy {
    max-width: 960px;
}

.property-back {
    position: absolute;
    top: clamp(-142px, -10vw, -92px);
    left: 0;
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 700;
}

.property-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    max-width: 100%;
    padding: 0 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--blue-deep);
    font-weight: 800;
    line-height: 1.2;
}

.property-intro h1 {
    max-width: 900px;
    margin: 18px 0 0;
    color: var(--blue-deep);
    font-size: clamp(2.65rem, 5.4vw, 5.35rem);
    line-height: 1.02;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.property-intro__copy > p {
    max-width: 660px;
    margin: 20px 0 0;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.property-intro__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 26px;
    font-size: 1.02rem;
    color: var(--muted);
    max-width: 100%;
}

.property-intro__meta strong {
    color: var(--blue-deep);
    font-size: 1.24rem;
    overflow-wrap: anywhere;
}

.property-intro__text {
    max-width: 760px;
    margin-top: 32px;
    color: var(--muted);
    line-height: 1.72;
}

.property-intro__text + .button {
    margin-top: 12px;
}

.property-intro__meta + .button {
    margin-top: 30px;
}

.property-text-section {
    padding-top: clamp(28px, 4vw, 56px);
    padding-bottom: clamp(28px, 4vw, 56px);
}

.property-text-block {
    max-width: 840px;
    margin-right: auto;
    margin-left: auto;
    color: var(--text);
    font-size: clamp(1.05rem, 1.4vw, 1.22rem);
    line-height: 1.78;
    text-align: center;
    overflow-wrap: anywhere;
}

.property-block-heading {
    margin: 0 0 22px;
    color: var(--blue-deep);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.property-text-block p {
    margin: 0 0 18px;
}

.property-text-block p:last-child {
    margin-bottom: 0;
}

.property-text-block ul,
.property-text-block ol {
    display: inline-block;
    margin: 0 0 18px;
    padding-left: 1.4em;
    text-align: left;
}

.property-text-block li + li {
    margin-top: 6px;
}

.property-text-block mark {
    border-radius: 4px;
    padding: 0 0.18em;
    color: inherit;
}

.property-video-section {
    background: #ffffff;
}

.property-video-block {
    display: grid;
    gap: 24px;
    place-items: center;
}

.property-video-block .property-block-heading {
    max-width: 760px;
    text-align: center;
}

.property-video-block .property-video {
    position: static;
    width: min(390px, 100%);
}

.property-html-section {
    background: #ffffff;
}

.property-html-block {
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    color: var(--text);
    text-align: center;
}

.property-html-block iframe,
.property-html-block img {
    display: block;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.property-html-block iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.property-html-block > :first-child:not(.property-block-heading):not(.calculator) {
    margin-top: 0;
}

.property-html-block .calculator {
    display: grid;
    gap: clamp(18px, 3vw, 30px);
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 42px);
    overflow: hidden;
    border: 1px solid rgba(16, 24, 32, 0.1);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 250, 0.94)),
        #ffffff;
    box-shadow: var(--shadow-md);
}

.property-html-block .calculator,
.property-html-block .calculator * {
    box-sizing: border-box;
    min-width: 0;
}

.property-html-block .calculator .top {
    display: grid;
    gap: 12px;
    text-align: center;
}

.property-html-block .calculator .eyebrow {
    margin: 0;
}

.property-html-block .calculator .headline {
    margin: 0 auto;
    max-width: 13ch;
    color: var(--text);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.02;
    text-wrap: balance;
}

.property-html-block .calculator .headline span {
    color: var(--blue);
}

.property-html-block .calculator .subheadline {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    line-height: 1.62;
}

.property-html-block .calculator .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.property-html-block .calculator .box,
.property-html-block .calculator .result-card {
    display: grid;
    gap: 8px;
    padding: clamp(16px, 2.4vw, 22px);
    border: 1px solid rgba(16, 24, 32, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
}

.property-html-block .calculator .label,
.property-html-block .calculator .result-label {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-transform: uppercase;
}

.property-html-block .calculator .field,
.property-html-block .calculator .result-value {
    display: flex;
    align-items: center;
    min-height: 46px;
    color: var(--text);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.property-html-block .calculator .hint {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.property-html-block .calculator .result {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.property-html-block .calculator .loss {
    color: #991b1b;
}

.property-html-block .calculator .profit {
    color: #14532d;
}

.property-html-block .calculator .cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding-top: 4px;
}

.property-html-block .calculator .cta-text {
    color: var(--muted);
    line-height: 1.62;
}

.property-html-block .calculator .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    max-width: 100%;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--ink);
    color: #ffffff;
    font-weight: 800;
    text-align: center;
    overflow-wrap: anywhere;
}

.property-video {
    position: sticky;
    top: 24px;
    justify-self: start;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    min-height: 0;
    height: min(620px, calc(100svh - 48px));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #101820;
    box-shadow: var(--shadow-md);
}

.property-video iframe,
.property-video video {
    width: 100%;
    height: 100%;
    border: 0;
}

.funnel-page {
    min-height: 100vh;
    background: #f4f6f8;
}

.funnel-hero {
    overflow: hidden;
    min-height: min(760px, 100svh);
    display: flex;
    align-items: center;
    padding-top: clamp(56px, 8vw, 104px);
    padding-bottom: clamp(56px, 8vw, 104px);
    background:
        linear-gradient(120deg, rgba(8, 18, 31, 0.92), rgba(21, 63, 99, 0.76)),
        url("/uploads/uvodka.JPG") center / cover;
    color: #ffffff;
}

.funnel-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
}

.funnel-hero__copy {
    display: grid;
    gap: 22px;
    max-width: 780px;
}

.funnel-hero__copy h1 {
    margin: 0;
    max-width: 780px;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.98;
}

.funnel-hero__copy > p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
    line-height: 1.7;
}

.funnel-hero__panel {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.funnel-hero__panel span {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 900;
    text-transform: uppercase;
}

.funnel-hero__panel strong {
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.funnel-hero__panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.funnel-steps-section {
    background: #ffffff;
}

.funnel-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.funnel-steps article {
    display: grid;
    gap: 12px;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.funnel-steps span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #153f63;
    color: #ffffff;
    font-weight: 950;
}

.funnel-steps h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.funnel-steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.investment-funnel {
    background:
        radial-gradient(circle at 12% 8%, rgba(201, 31, 44, 0.05), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f4f6f8 44%, #ffffff 100%);
}

.investment-hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    display: flex;
    align-items: flex-start;
    padding-top: clamp(74px, 7.2vw, 108px);
    padding-bottom: clamp(56px, 8vw, 96px);
    background:
        linear-gradient(120deg, rgba(5, 8, 12, 0.92), rgba(16, 24, 32, 0.82)),
        url("/uploads/uvodka.JPG") center / cover;
    color: #ffffff;
}

.investment-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(244, 246, 248, 0.98));
    pointer-events: none;
}

.investment-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    padding-top: clamp(10px, 4svh, 42px);
}

.investment-hero__copy {
    display: grid;
    gap: 18px;
    max-width: 860px;
}

.investment-hero__pretitle {
    margin: 0;
    color: var(--blue);
    font-size: clamp(1.1rem, 2.2vw, 2rem);
    font-weight: 850;
    line-height: 1;
}

.investment-hero__copy h1 {
    max-width: 920px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.15rem, 6.8vw, 6.7rem);
    font-weight: 800;
    line-height: 0.96;
    text-wrap: balance;
}

.investment-hero__copy > p:not(.eyebrow) {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    line-height: 1.58;
}

.investment-hero__actions,
.investment-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.investment-hero__actions .button--primary,
.investment-final__actions .button--primary {
    background: var(--blue);
    box-shadow: 0 16px 34px rgba(201, 31, 44, 0.24);
}

.investment-hero__actions .button--primary:hover,
.investment-hero__actions .button--primary:focus-visible,
.investment-final__actions .button--primary:hover,
.investment-final__actions .button--primary:focus-visible {
    background: var(--blue-deep);
}

.investment-hero__actions .button--secondary,
.investment-final__actions .button--secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.investment-hero__panel {
    display: grid;
    gap: 12px;
}

.investment-hero__panel > div {
    display: grid;
    gap: 6px;
    padding: clamp(18px, 2.8vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.investment-hero__panel > .investment-hero__metric--accent {
    border-color: rgba(34, 197, 94, 0.54);
    background: rgba(34, 197, 94, 0.18);
}

.investment-hero__panel > .investment-hero__metric--accent span,
.investment-hero__panel > .investment-hero__metric--accent strong {
    color: #22c55e;
}

.investment-hero__panel > .investment-hero__metric--accent small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.35;
}

.investment-hero__panel span,
.investment-scenario-grid span,
.investment-total-grid span,
.investment-number-card span,
.investment-growth span {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.investment-hero__panel span {
    color: rgba(255, 255, 255, 0.66);
}

.investment-hero__panel strong {
    color: #ffffff;
    font-size: clamp(1.45rem, 2.8vw, 2.3rem);
    line-height: 1.05;
}

.investment-section {
    padding: clamp(46px, 7vw, 88px) 0;
}

.investment-section--soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 246, 250, 0.96)),
        #f4f6f8;
}

.investment-section--dark {
    background: #101820;
    color: #ffffff;
}

.investment-section__head {
    max-width: 880px;
    margin: 0 auto clamp(22px, 3vw, 34px);
    text-align: center;
}

.investment-section__head--left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.investment-section__head h2,
.investment-final h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2.05rem, 4.1vw, 4.15rem);
    font-weight: 800;
    line-height: 1.01;
    text-wrap: balance;
}

.investment-section--dark .investment-section__head h2 {
    color: #ffffff;
}

.investment-section__head p:not(.eyebrow) {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.35vw, 1.16rem);
    line-height: 1.62;
}

.investment-section__head:not(.investment-section__head--left) p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
}

.investment-section--dark .investment-section__head p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.investment-argument-grid,
.investment-scenario-grid,
.investment-total-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.investment-argument-grid article,
.investment-scenario-grid article,
.investment-total-grid article,
.investment-number-card,
.investment-market-card,
.investment-growth {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.investment-argument-grid article {
    display: grid;
    gap: 10px;
    padding: clamp(20px, 2.8vw, 28px);
}

.investment-argument-grid strong {
    color: var(--text);
    font-size: 1.28rem;
    line-height: 1.15;
}

.investment-argument-grid p,
.investment-scenario-grid p,
.investment-total-grid p,
.investment-number-card p,
.investment-market-card dd,
.investment-market-card dt {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
}

.investment-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
}

.investment-split--reverse {
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.investment-split--reverse .investment-section__head {
    grid-column: 2;
}

.investment-split--reverse .investment-growth {
    grid-column: 1;
    grid-row: 1;
}

.investment-table-wrap {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

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

.investment-table th,
.investment-table td {
    padding: clamp(15px, 2vw, 22px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
}

.investment-table th {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.investment-table td {
    font-weight: 750;
}

.investment-table tr:last-child td {
    border-bottom: 0;
}

.investment-table .is-highlighted td {
    background: rgba(201, 31, 44, 0.2);
    color: #ffffff;
}

.investment-projection-table .investment-table td:last-child {
    color: #ffffff;
    font-weight: 850;
}

.investment-scenario-grid article,
.investment-total-grid article {
    display: grid;
    gap: 9px;
    padding: clamp(20px, 3vw, 32px);
}

.investment-scenario-grid strong,
.investment-total-grid strong,
.investment-number-card strong,
.investment-growth strong,
.investment-market-card dd {
    color: var(--text);
    font-size: clamp(1.65rem, 3vw, 2.65rem);
    font-weight: 850;
    line-height: 1.02;
}

.investment-scenario-grid .is-featured {
    border-color: rgba(201, 31, 44, 0.26);
    background:
        linear-gradient(135deg, rgba(201, 31, 44, 0.1), transparent 42%),
        #ffffff;
}

.investment-number-card {
    display: grid;
    gap: 12px;
    padding: clamp(22px, 4vw, 38px);
}

.investment-number-card .button {
    width: fit-content;
    margin-top: 10px;
}

.investment-growth {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.investment-growth div,
.investment-market-card dl div {
    display: grid;
    gap: 6px;
    padding: clamp(18px, 2.7vw, 28px);
    border-bottom: 1px solid var(--line);
}

.investment-growth div:last-child,
.investment-market-card dl div:last-child {
    border-bottom: 0;
}

.investment-growth__total {
    background: #101820;
}

.investment-growth__total strong {
    color: #ffffff;
}

.investment-total-grid article {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.investment-total-grid strong {
    color: #ffffff;
}

.investment-total-grid p {
    color: rgba(255, 255, 255, 0.68);
}

.investment-total-grid .is-total {
    border-color: rgba(201, 31, 44, 0.44);
    background: rgba(201, 31, 44, 0.16);
}

.investment-market-card {
    overflow: hidden;
}

.investment-market-card dl {
    margin: 0;
}

.investment-market-card dt {
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.investment-photo-section {
    background: #ffffff;
}

.investment-photo-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    grid-template-rows: repeat(2, minmax(220px, 1fr));
    gap: clamp(12px, 2vw, 18px);
}

.investment-photo-grid figure {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #e7ecf2;
    box-shadow: var(--shadow-md);
}

.investment-photo-grid figure:first-child {
    grid-row: 1 / span 2;
}

.investment-photo-grid img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.02);
}

.investment-photo-grid figure:not(:first-child) img {
    min-height: 220px;
}

.investment-final {
    padding: clamp(50px, 8vw, 100px) 0;
    background:
        linear-gradient(120deg, rgba(16, 24, 32, 0.95), rgba(152, 21, 32, 0.86)),
        #101820;
    color: #ffffff;
}

.investment-final h2 {
    max-width: 1040px;
    color: #ffffff;
}

.investment-final__actions {
    margin-top: 28px;
}

.investment-lead {
    background: #ffffff;
}

.investment-disclaimer {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(201, 31, 44, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(201, 31, 44, 0.06);
    color: #5f6875;
    font-size: 0.96rem;
    line-height: 1.6;
}

.property-video video {
    display: block;
    object-fit: cover;
}

.property-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 360px));
    justify-content: center;
    gap: 16px;
    min-width: 0;
    text-align: center;
}

.property-gallery__item {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: #eef2f6;
    box-shadow: var(--shadow-md);
}

.property-gallery__button {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.property-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.property-gallery__item:hover img,
.property-gallery__item:focus-within img {
    transform: scale(1.045);
}

.property-story-section {
    background: #ffffff;
}

.property-story {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.property-story h2 {
    margin: 0;
    color: var(--blue-deep);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.02;
}

.property-story p:not(.eyebrow) {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.72;
}

.property-lead-section {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(244, 246, 248, 0.92)),
        #f4f6f8;
}

.property-lead {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: stretch;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 250, 0.96)),
        var(--surface-strong);
    box-shadow: var(--shadow-md);
}

.property-lead__copy {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 18px;
    min-width: 0;
    text-align: center;
}

.property-lead h2 {
    margin: 0;
    max-width: 560px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 0.98;
}

.property-lead p {
    max-width: 560px;
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.property-lead__direct {
    display: grid;
    justify-items: center;
    gap: 8px;
    max-width: 340px;
    margin-top: 6px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.property-lead__direct strong {
    color: var(--text);
    font-size: 1.08rem;
}

.property-lead__direct a {
    width: fit-content;
    color: var(--text);
    font-weight: 750;
    transition: color 180ms ease, transform 180ms ease;
}

.property-lead__direct a:hover,
.property-lead__direct a:focus-visible {
    color: var(--blue);
    transform: translateX(2px);
}

.property-lead-form {
    align-self: start;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
        #fff;
    min-width: 0;
}

.property-lead-form__full {
    grid-column: 1 / -1;
}

.process-card span {
    margin-bottom: 16px;
}

.process-card strong,
.service-card strong,
.partner-card strong {
    margin-top: 0;
    margin-bottom: 10px;
}

.benefit-card strong {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.benefit-card p {
    max-width: 28ch;
}

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

.partner-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    margin-bottom: 14px;
    padding: 0 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner-logo--remax {
    justify-content: flex-start;
    padding: 0 18px;
}

.partner-logo--remax img {
    display: block;
    width: 150px;
    max-width: 100%;
    height: auto;
}

.partner-logo--comse {
    justify-content: flex-start;
    min-width: 220px;
    min-height: 78px;
    padding: 0 26px;
    font-size: 2.85rem;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--text);
    line-height: 1;
}

.partner-logo--comse .comse-logo-word {
    display: block;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.partner-logo--comse .comse-logo-dot {
    color: #a855f7;
}

.contact-prompt-section {
    padding-top: 4px;
    padding-bottom: 0;
}

.contact-prompt {
    position: relative;
    z-index: 3;
    padding: clamp(22px, 3.4vw, 42px) 0 clamp(8px, 1.4vw, 16px);
    isolation: isolate;
}

.contact-prompt::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 50%;
    z-index: -1;
    width: min(52vw, 620px);
    border-top: 1px solid rgba(201, 31, 44, 0.16);
    border-bottom: 1px solid rgba(16, 24, 32, 0.08);
    transform: translateX(-50%) rotate(-1.4deg);
}

.contact-prompt h2 {
    display: grid;
    gap: clamp(7px, 1.1vw, 12px);
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1.75rem, 4.35vw, 4.1rem);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.contact-prompt h2 span {
    display: block;
}

.contact-prompt h2 span:first-child {
    color: var(--blue);
    font-size: clamp(1.1rem, 2.15vw, 2.1rem);
    line-height: 1.05;
    transform: rotate(-0.6deg);
}

.contact-prompt h2 span:nth-child(2) {
    color: var(--text);
}

.contact-prompt h2 span:nth-child(3) {
    color: var(--blue);
    transform: rotate(-0.8deg);
}

.contact-prompt h2 span:nth-child(4) {
    color: #354150;
    transform: rotate(0.7deg);
}

.contact-prompt__link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: fit-content;
    max-width: 100%;
    margin: clamp(18px, 3vw, 30px) auto 0;
    color: var(--blue-deep);
    font-size: clamp(1rem, 1.25vw, 1.15rem);
    font-weight: 750;
    text-align: center;
    transition: color 180ms ease, gap 180ms ease, transform 180ms ease;
}

.contact-prompt__link span {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    z-index: 2;
    display: block;
    width: clamp(58px, 7vw, 88px);
    height: clamp(54px, 6.5vw, 82px);
    pointer-events: none;
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 94' fill='none'%3E%3Cpath d='M8 10 C37 8 59 10 70 28 C81 47 70 62 71 78' stroke='%23c91f2c' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M57 65 C62 71 67 77 71 86' stroke='%23c91f2c' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M71 86 C76 77 81 71 88 65' stroke='%23c91f2c' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: translateX(54px) rotate(-1deg);
    transform-origin: 70% 80%;
    animation: contact-arrow-pulse 2.25s ease-in-out infinite;
}

.contact-prompt__link:hover,
.contact-prompt__link:focus-visible {
    color: var(--blue-deep);
    transform: translateY(-1px);
}

.cta-section {
    position: relative;
    z-index: 1;
    padding-top: clamp(30px, 3.4vw, 52px);
}

.cta-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.8fr);
    align-items: stretch;
    padding: 28px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 250, 0.96)),
        var(--surface-strong);
}

.cta-card__copy p {
    margin-top: 16px;
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 24, 32, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.10);
}

.lead-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    background: #ffffff;
    color: var(--text);
    font: inherit;
    line-height: 1.35;
}

.lead-form input,
.lead-form select {
    min-height: 48px;
}

.lead-form textarea {
    min-height: 118px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--blue);
    outline: 3px solid rgba(28, 83, 136, 0.15);
}

.lead-form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lead-form__consent {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    color: var(--muted);
    font-weight: 500;
}

.lead-form__consent input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.lead-form__consent a {
    color: var(--blue-deep);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.lead-form__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.lead-form__direct {
    display: grid;
    gap: 4px;
    text-align: right;
}

.lead-form__direct a {
    color: var(--text);
    font-weight: 600;
}

.contact-details {
    display: grid;
    gap: 7px;
    max-width: 320px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.contact-details strong {
    color: var(--text);
    font-size: 1.05rem;
}

.contact-details a {
    width: fit-content;
    color: var(--text);
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
    color: var(--blue);
    transform: translateX(2px);
}

.form-status {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
}

.form-status--success {
    color: #14532d;
    background: #dcfce7;
}

.form-status--error {
    color: #991b1b;
    background: #fee2e2;
}

.cta-card__aside {
    position: relative;
    min-height: 100%;
}

.cta-card__image {
    overflow: hidden;
    min-height: 520px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #eef2f6 0%, #ffffff 100%);
    box-shadow: var(--shadow-md);
}

.cta-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 600ms ease;
}

.cta-card:hover .cta-card__image img,
.cta-card:focus-within .cta-card__image img {
    transform: scale(1.02);
}

.cta-card__contact {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(16, 24, 32, 0.12);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.12);
}

.cta-card__contact a {
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    transition: color 180ms ease, transform 180ms ease;
}

.cta-card__contact a:hover,
.cta-card__contact a:focus-visible {
    color: var(--blue);
    transform: translateX(2px);
}

.site-footer {
    padding: clamp(30px, 5vw, 54px) 0 0;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(220px, 1.15fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
    gap: clamp(22px, 4vw, 48px);
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 250, 0.94)),
        var(--surface-strong);
    box-shadow: var(--shadow-md);
}

.site-footer__brand,
.site-footer__links,
.site-footer__social {
    display: grid;
    align-content: start;
    gap: 9px;
}

.site-footer__brand strong {
    color: var(--text);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.1;
}

.site-footer a {
    color: var(--text);
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--blue);
    transform: translateX(2px);
}

.site-footer__links a,
.site-footer__social p,
.site-footer__social span {
    color: var(--muted);
}

.site-footer__links a {
    font-size: 0.86rem;
    font-weight: 500;
}

.site-footer__social p {
    margin: 0;
    color: var(--text);
    font-weight: 800;
}

.site-footer__social span {
    line-height: 1.55;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: var(--text);
    font-size: 0.92rem;
}

.site-footer__social-link span {
    color: inherit;
}

.site-footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.site-footer__bottom a {
    color: var(--blue-deep);
}

.reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition: opacity 560ms cubic-bezier(0.22, 1, 0.36, 1), transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--delay {
    transition-delay: 80ms;
}

.reveal--delay-2 {
    transition-delay: 160ms;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.statement-card:hover,
.statement-card:focus-within,
.portrait-card:hover,
.portrait-card:focus-within,
.plain-card:hover,
.plain-card:focus-within,
.video-card:hover,
.video-card:focus-within,
.focus-card:hover,
.focus-card:focus-within,
.benefit-card:hover,
.benefit-card:focus-within,
.process-card:hover,
.process-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.partner-card:hover,
.partner-card:focus-within,
.mini-card:hover,
.mini-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(201, 31, 44, 0.22);
    box-shadow: var(--shadow-lg);
}

.partner-card:hover .partner-logo,
.partner-card:focus-within .partner-logo {
    transform: translateY(-2px);
    border-color: rgba(201, 31, 44, 0.22);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

@keyframes hero-enter {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hero-float {
    0%,
    100% {
        transform: scale(1.015) translateY(0);
    }

    50% {
        transform: scale(1.03) translateY(-8px);
    }
}

@keyframes profit-dollar-pulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 0 rgba(201, 31, 44, 0));
    }

    45% {
        transform: translateY(-3px) scale(1.16);
        filter: drop-shadow(0 5px 10px rgba(201, 31, 44, 0.24));
    }
}

@keyframes contact-arrow-pulse {
    0%,
    100% {
        opacity: 0.9;
        transform: translateX(54px) rotate(-1deg) translateY(0) scale(0.98);
    }

    45% {
        opacity: 1;
        transform: translateX(54px) rotate(-1deg) translateY(3px) scale(1.02);
    }
}

@keyframes contact-arrow-pulse-mobile {
    0%,
    100% {
        opacity: 0.9;
        transform: translateX(34px) rotate(-1deg) translateY(0) scale(0.98);
    }

    45% {
        opacity: 1;
        transform: translateX(34px) rotate(-1deg) translateY(3px) scale(1.02);
    }
}

@media (max-width: 980px) {
    .why-grid,
    .split-block,
    .cta-card,
    .site-footer__inner,
    .investment-hero__inner,
    .investment-split,
    .investment-split--reverse,
    .investment-argument-grid,
    .investment-scenario-grid,
    .investment-total-grid,
    .benefit-grid,
    .video-grid,
    .review-showcase,
    .review-video-quote,
    .listing-grid,
    .process-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .review-showcase__portrait {
        grid-column: auto;
        grid-row: auto;
        justify-self: center;
        width: min(100%, 440px);
        order: 2;
    }

    .review-showcase__content {
        grid-column: auto;
        grid-row: auto;
        order: 1;
    }

    .review-gallery {
        max-width: 760px;
    }

    .review-video-quote {
        gap: 22px;
    }

    .review-video-quote__quote {
        margin-left: 0;
        padding: 4px 0 12px clamp(18px, 5vw, 34px);
    }

    .review-video-quote__quote blockquote {
        max-width: 18ch;
    }

    .investment-split--reverse .investment-section__head,
    .investment-split--reverse .investment-growth {
        grid-column: auto;
        grid-row: auto;
    }

    .hero__panel {
        min-height: calc(100svh - 196px);
    }

    .property-lead {
        grid-template-columns: 1fr;
    }

    .property-intro {
        grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
        gap: 16px;
    }

    .property-intro-section--cover .property-intro {
        align-items: start;
    }

    .property-intro__copy,
    .property-intro--wide .property-intro__copy {
        max-width: 760px;
    }

    .property-intro h1,
    .property-intro-section--cover .property-intro h1 {
        max-width: 12ch;
    }

    .property-video,
    .property-video-block .property-video {
        position: static;
        width: min(100%, 420px);
        height: auto;
        max-height: none;
        justify-self: center;
    }

    .property-gallery {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 340px));
    }

    .property-html-block .calculator .result {
        grid-template-columns: 1fr;
    }

    .cta-card__image {
        min-height: 460px;
    }

    .mini-card {
        transform: none;
    }

    .why-grid {
        max-width: 620px;
    }

    .why-grid .inline-video-card {
        width: min(100%, 380px);
        min-height: 420px;
        justify-self: center;
    }

    .sale-journey {
        min-height: var(--sale-journey-height, 420px);
    }

    .sale-journey__path--desktop {
        display: none;
    }

    .sale-journey__path--mobile {
        display: block;
        inset: 28px auto 28px 38px;
        width: 96px;
        height: calc(100% - 56px);
    }

    .sale-journey__steps {
        display: grid;
        align-content: space-between;
        gap: 12px;
        height: 100%;
        min-height: inherit;
        padding: 28px 22px 28px 74px;
    }

    .sale-journey__step,
    .sale-journey__step:nth-child(1),
    .sale-journey__step:nth-child(2),
    .sale-journey__step:nth-child(3),
    .sale-journey__step:nth-child(4),
    .sale-journey__step:nth-child(5) {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
    }

    /*
    .floating-offers {
        right: 86px;
        width: 204px;
        height: 164px;
        transform: scale(0.92);
        transform-origin: top right;
    }
    */
}

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 16px;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 46px;
        border-radius: var(--radius-lg);
        background: rgba(29, 29, 31, 0.03);
        color: var(--text);
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav a.button--primary {
        background: var(--ink);
        color: #ffffff;
        box-shadow: 0 12px 26px rgba(16, 24, 32, 0.2);
    }

    .site-nav a.site-nav__social {
        width: 100%;
        color: var(--text);
    }

    .property-site-header .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: auto;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .property-site-header .site-nav a {
        min-height: 42px;
        padding: 0 16px;
        border-radius: 999px;
    }

    .hero__content,
    .statement-card,
    .plain-card,
    .focus-card,
    .benefit-card,
    .video-card__body,
    .listing-card__body,
    .process-card,
    .service-card,
    .partner-card,
    .cta-card,
    .cta-card__contact {
        padding-left: 24px;
        padding-right: 24px;
    }

    /*
    .floating-offers {
        display: none;
    }
    */
}

@media (max-width: 640px) {
    .site-header {
        padding-top: 12px;
    }

    .header-shell {
        border-radius: 0;
    }

    .hero {
        min-height: 92svh;
        margin-top: 0;
        padding-top: 116px;
        padding-bottom: 42px;
    }

    .hero::after {
        background:
            radial-gradient(circle at 72% 22%, rgba(201, 31, 44, 0.18), transparent 42%),
            linear-gradient(180deg, rgba(8, 5, 6, 0.76) 0%, rgba(8, 5, 6, 0.6) 46%, rgba(8, 5, 6, 0.9) 100%);
    }

    .hero h1 {
        font-size: clamp(2.625rem, 11vw, 3.25rem);
        line-height: 1.02;
    }

    .section-heading h2,
    .cta-card h2 {
        font-size: clamp(1.9rem, 9vw, 2.65rem);
    }

    .hero__panel {
        min-height: calc(92svh - 158px);
    }

    .hero__lead {
        font-size: 1.16rem;
    }

    .investment-hero {
        min-height: auto;
        padding-top: 66px;
        padding-bottom: 46px;
    }

    .investment-hero__inner {
        padding-top: 0;
    }

    .investment-hero__copy h1 {
        font-size: clamp(2.45rem, 11.5vw, 3.55rem);
        line-height: 1;
    }

    .investment-hero__actions,
    .investment-final__actions {
        display: grid;
    }

    .investment-hero__panel strong,
    .investment-scenario-grid strong,
    .investment-total-grid strong,
    .investment-number-card strong,
    .investment-growth strong,
    .investment-market-card dd {
        font-size: clamp(1.45rem, 7.4vw, 2.1rem);
    }

    .investment-section {
        padding: 42px 0;
    }

    .investment-section__head h2,
    .investment-final h2 {
        font-size: clamp(1.8rem, 8.8vw, 2.65rem);
    }

    .investment-table-wrap {
        overflow-x: auto;
    }

    .investment-table {
        min-width: 560px;
    }

    .investment-projection-table .investment-table {
        min-width: 760px;
    }

    .investment-photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .investment-photo-grid figure:first-child {
        grid-row: auto;
    }

    .investment-photo-grid img,
    .investment-photo-grid figure:not(:first-child) img {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .investment-number-card .button {
        width: 100%;
    }

    .hero__actions,
    .hero__mini-grid,
    .focus-grid,
    .partner-strip,
    .contact-prompt__link,
    .property-intro,
    .property-gallery,
    .property-lead,
    .funnel-hero__inner,
    .funnel-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .property-gallery {
        grid-template-columns: minmax(0, min(100%, 340px));
        justify-content: center;
    }

    .funnel-hero {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .funnel-hero__copy h1 {
        font-size: clamp(2.65rem, 14vw, 4.8rem);
    }

    .property-intro-section {
        padding-top: 118px;
        padding-bottom: 42px;
    }

    .property-intro-section--no-header {
        padding-top: 48px;
    }

    .property-intro-section--cover {
        min-height: auto;
        align-items: start;
        padding-top: 136px;
        padding-bottom: 44px;
        background-position: center top;
    }

    .property-intro-section--cover.property-intro-section--no-header {
        padding-top: 56px;
    }

    .property-intro-section--cover::after {
        height: 42%;
    }

    .property-intro h1 {
        max-width: 100%;
        font-size: clamp(2.05rem, 10.4vw, 3.25rem);
        line-height: 1.03;
    }

    .property-intro-section--cover .property-intro h1 {
        max-width: 100%;
    }

    .property-intro__copy > p {
        max-width: 32rem;
        margin-top: 16px;
        font-size: 1.04rem;
    }

    .property-intro__meta {
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        margin-top: 20px;
        line-height: 1.45;
    }

    .property-intro__meta strong {
        font-size: 1.12rem;
    }

    .property-intro__meta + .button {
        width: 100%;
        margin-top: 24px;
    }

    .property-back {
        margin-bottom: 18px;
    }

    .property-badge {
        min-height: 32px;
        padding: 0 12px;
        font-size: 0.9rem;
    }

    .property-block-heading,
    .property-page .section-heading h2,
    .property-story h2,
    .property-lead h2 {
        font-size: clamp(1.85rem, 9vw, 2.7rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
        text-wrap: balance;
    }

    .property-text-block {
        font-size: 1rem;
        line-height: 1.68;
    }

    .property-html-block {
        overflow: visible;
    }

    .property-html-block iframe {
        min-height: 320px;
    }

    .property-html-block .calculator {
        padding: 20px;
        border-radius: var(--radius-lg);
    }

    .property-html-block .calculator .grid,
    .property-html-block .calculator .cta {
        grid-template-columns: 1fr;
    }

    .property-html-block .calculator .top {
        text-align: center;
    }

    .property-html-block .calculator .headline,
    .property-html-block .calculator .subheadline {
        max-width: none;
        margin-right: auto;
        margin-left: auto;
    }

    .property-html-block .calculator .headline {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .property-html-block .calculator .cta-button {
        width: 100%;
    }

    .contact-prompt-section {
        padding-top: 0;
        padding-bottom: 8px;
    }

    .contact-prompt::before {
        width: min(88vw, 420px);
        transform: translateX(-50%) rotate(-1deg);
    }

    .contact-prompt h2 {
        gap: 8px;
        font-size: clamp(1.75rem, 9.2vw, 2.65rem);
        line-height: 1.04;
    }

    .contact-prompt__link {
        max-width: none;
        text-align: center;
    }

    .contact-prompt__link span {
        top: calc(100% + 1px);
        left: 50%;
        width: 54px;
        height: 54px;
        transform: translateX(34px) rotate(-1deg);
        animation-name: contact-arrow-pulse-mobile;
    }

    .property-video {
        position: static;
        width: min(100%, 340px);
        min-height: auto;
        margin: 0 auto;
    }

    .property-intro .property-video {
        margin: 6px 0 0;
    }

    .hero__trust {
        max-width: 320px;
        font-size: 0.78rem;
        line-height: 1.7;
    }

    .section-heading--reviews {
        text-align: center;
    }

    .review-gallery {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: minmax(82px, auto) minmax(112px, auto) minmax(108px, auto);
        gap: 10px;
        align-items: center;
        max-width: 430px;
        min-height: clamp(330px, 96vw, 410px);
        margin-right: auto;
        margin-left: auto;
        padding: 6px 0 14px;
    }

    .review-gallery__item {
        min-height: 0;
        padding: 7px;
    }

    .review-gallery__item--wide {
        z-index: 2;
        grid-column: 1 / span 11;
        grid-row: 1 / span 2;
        justify-self: start;
        max-width: min(92%, 360px);
        transform: rotate(-2deg);
    }

    .review-gallery__item--small {
        z-index: 3;
        grid-column: 7 / span 6;
        grid-row: 2 / span 1;
        justify-self: end;
        max-width: min(52vw, 205px);
        transform: rotate(3deg) translateY(8px);
    }

    .review-gallery__item--tall {
        z-index: 1;
        grid-column: 2 / span 9;
        grid-row: 2 / span 2;
        justify-self: center;
        max-width: min(66vw, 255px);
        transform: rotate(1.4deg) translateY(22px);
    }

    .review-gallery__item img {
        max-height: 240px;
    }

    .review-video-quote {
        margin-top: 26px;
        gap: 18px;
    }

    .review-video-quote__video {
        order: 2;
        min-height: 0;
    }

    .review-video-quote__quote {
        order: 1;
        padding: 0 0 12px 24px;
        transform: rotate(-2.2deg);
    }

    .review-video-quote__quote blockquote {
        max-width: 16ch;
        font-size: clamp(1.8rem, 9.5vw, 2.6rem);
    }

    .button {
        width: 100%;
    }

    .property-site-header .site-nav,
    .property-site-header .site-nav a.button {
        width: auto;
    }

    .video-modal {
        padding: 16px;
    }

    .video-modal__dialog {
        width: calc(100vw - 24px);
        border-radius: var(--radius-md);
    }

    .gallery-modal {
        padding: 12px;
    }

    .gallery-modal__dialog {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        padding: 10px;
        gap: 10px;
        border-radius: var(--radius-md);
    }

    .gallery-modal__close,
    .gallery-modal__nav {
        width: 42px;
        height: 42px;
    }

    .gallery-modal__figure img {
        max-height: calc(100vh - 132px);
    }

    .cta-card__aside {
        display: grid;
        gap: 16px;
    }

    .lead-form {
        padding: 20px;
        min-width: 0;
    }

    .lead-form__grid {
        grid-template-columns: 1fr;
    }

    .lead-form__actions {
        display: grid;
    }

    .lead-form__direct {
        text-align: left;
    }

    .cta-card__image {
        min-height: 360px;
    }

    .cta-card__contact {
        position: static;
        min-width: 0;
    }

    .site-footer__inner {
        gap: 20px;
        padding: 22px;
    }

    .site-footer__bottom {
        display: grid;
        justify-content: start;
    }

    .video-card__badge {
        top: 14px;
        left: 14px;
    }

    .video-card__play {
        width: 62px;
        height: 62px;
    }

    .section {
        padding: 30px 0;
    }

    .section.property-intro-section {
        padding-top: 118px;
        padding-bottom: 42px;
    }

    .section.property-intro-section--cover {
        padding-top: 136px;
        padding-bottom: 44px;
    }

    .property-page .section-heading h2 {
        font-size: clamp(1.7rem, 7.6vw, 2.25rem);
    }

    .inline-video-card {
        min-height: 0;
    }

    .inline-video-card:not(.inline-video-card--landscape) {
        aspect-ratio: 9 / 16;
        justify-self: center;
        width: min(100%, calc((100svh - 150px) * 9 / 16));
        max-width: 360px;
    }

    .why-grid .inline-video-card:not(.inline-video-card--landscape) {
        width: min(100%, calc((100svh - 180px) * 9 / 16));
        max-width: 320px;
    }

    .inline-video-card__video {
        height: 100%;
        min-height: 0;
        object-fit: contain;
    }

    .inline-video-card--landscape {
        aspect-ratio: 16 / 9;
        justify-self: stretch;
        width: 100%;
        max-width: none;
    }

    .inline-video-card--landscape .inline-video-card__video {
        object-fit: cover;
    }

    .sale-journey {
        min-height: var(--sale-journey-height, 400px);
    }

    .sale-journey__steps {
        gap: 10px;
        padding: 28px 18px 28px 68px;
    }

    .sale-journey__step {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        min-height: 72px;
        padding: 14px;
    }

    .sale-journey__marker {
        width: 38px;
        height: 38px;
    }

    .sale-journey__step strong {
        font-size: 0.98rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero__image-card,
    .mini-card {
        transform: none !important;
    }

    .hero__video {
        display: none;
    }

    .sale-journey__path-line {
        stroke-dashoffset: 0;
    }

    .sale-journey__step {
        opacity: 1;
        transform: none;
    }

    .sale-journey__profit {
        opacity: 1;
    }

    .sale-journey__profit span {
        transform: scaleY(1);
    }
}
