:root {
    color-scheme: dark;
    --ink: #f4f7f8;
    --muted: #a9b4bc;
    --soft: #d9e1e4;
    --line: rgba(255, 255, 255, 0.12);
    --paper: #0c0f12;
    --surface: rgba(20, 25, 29, 0.9);
    --surface-strong: #151a1f;
    --primary: #e30a17;
    --primary-hover: #ff2633;
    --primary-soft: rgba(227, 10, 23, 0.16);
    --bronze: #b99a74;
    --stone: #808b8f;
    --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--paper);
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 0%, rgba(227, 10, 23, 0.16), transparent 30%),
        linear-gradient(180deg, #0b0f12 0%, #12171b 46%, #0c0f12 100%);
}

button,
input,
textarea {
    font: inherit;
}

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

svg {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.site-shell {
    min-height: 100vh;
}

.project-detail {
    background: #0c0f12;
}

.hero {
    position: relative;
    min-height: 540px;
    padding: 24px clamp(18px, 4vw, 64px) 92px;
    overflow: hidden;
    color: #fff;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 10, 12, 0.96) 0%, rgba(7, 10, 12, 0.75) 46%, rgba(7, 10, 12, 0.24) 100%),
        linear-gradient(180deg, rgba(7, 10, 12, 0.1), #0c0f12 100%);
}

.topbar,
.hero__content {
    position: relative;
    z-index: 1;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 112px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    color: #fff;
    text-decoration: none;
}

.brand img {
    width: clamp(150px, 14vw, 210px);
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.topbar__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.topbar__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.location-chip svg {
    color: var(--primary-hover);
    font-size: 1rem;
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(26px, 5vw, 80px);
}

.hero__copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: #ffb8be;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.88;
    letter-spacing: 0;
}

.hero p {
    max-width: 640px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.65;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(112px, 1fr));
    gap: 1px;
    min-width: min(520px, 100%);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(16px);
}

.metrics div,
.selection-panel__stats div {
    min-width: 0;
    padding: 22px 18px;
    background: rgba(11, 15, 18, 0.66);
    text-align: center;
}

.metric-icon {
    display: inline-grid;
    place-items: center;
    margin-bottom: 10px;
    color: #ff5b65;
    font-size: 1.24rem;
}

.metrics strong,
.selection-panel__stats strong {
    display: block;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1;
}

.metrics span:last-child,
.selection-panel__stats span:last-child {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
}

.project-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
    gap: clamp(24px, 3vw, 44px);
    width: min(1440px, calc(100% - 36px));
    margin: -58px auto 0;
    padding-bottom: 64px;
    position: relative;
    z-index: 2;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: start;
}

.project-card {
    position: relative;
    min-width: 0;
}

.project-card__button {
    display: grid;
    grid-template-columns: minmax(260px, 46%) minmax(0, 1fr);
    min-height: 180px;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: inherit;
    text-align: left;
    background: linear-gradient(180deg, rgba(26, 32, 37, 0.96), rgba(17, 22, 26, 0.96));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card__button:hover,
.project-card.is-active .project-card__button {
    transform: translateY(-3px);
    border-color: rgba(227, 10, 23, 0.74);
    box-shadow: var(--shadow);
}

.project-card.is-active .project-card__button {
    background: linear-gradient(180deg, rgba(29, 35, 40, 0.98), rgba(18, 22, 26, 0.98));
}

.project-card__media {
    position: relative;
    display: block;
    min-height: 180px;
    height: 100%;
    aspect-ratio: auto;
    background: #1b2226;
    overflow: hidden;
}

.project-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(7, 10, 12, 0.06), rgba(7, 10, 12, 0.36));
}

.project-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 280ms ease;
}

.project-card__button:hover .project-card__media img {
    transform: scale(1.035);
}

.project-card__status {
    position: absolute;
    z-index: 1;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    color: #eaffff;
    background: rgb(137 0 0 / 38%);
    /* border: 1px solid rgba(227, 10, 23, 0.38); */
    font-size: 0.76rem;
    font-weight: 400;
    backdrop-filter: blur(10px);
    border-radius: 2px;
}


.project-card__body {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    gap: 14px 16px;
    padding: 22px;
    align-items: start;
    align-content: center;
}

.project-card__logo {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #e30a1721;
    overflow: hidden;
}

.project-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.22));
}

.project-card__logo span {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
}

.project-card__text {
    min-width: 0;
}

.project-card__text strong,
.project-card__text small {
    display: block;
}

.project-card__text strong {
    color: #fff;
    font-size: 1.28rem;
    line-height: 1.2;
    word-break: break-word;
}

.project-card__text small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
}

.project-card__facts {
    grid-column: 1 / -1;
    align-self: end;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 6px;
}

.project-card__facts span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c7d2d8;
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.84rem;
}

.project-card__facts svg {
    color: #ff7079;
    font-size: 1rem;
}

.project-card__link {
    position: absolute;
    right: 18px;
    top: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
   padding: 0 16px 0 18px;
    border: 1px solid rgba(227, 10, 23, 0.0);
    border-radius: 2px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(227, 10, 23, 0.16), rgba(227, 10, 23, 0.04)),
        rgba(255, 255, 255, 0.035);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
    margin-top: 10px;
    text-decoration: none;
}



.project-card__link:hover {
    border-color: rgba(255, 58, 70, 0.72);
    background: rgba(227, 10, 23, 0.18);
    transform: translateX(2px);
}

.project-card__link svg {
    width: 15px;
    height: 15px;
    color: var(--primary-hover);
}

.selection-panel {
    position: sticky;
    top: 22px;
    align-self: start;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(25, 31, 36, 0.98), rgba(15, 19, 23, 0.98));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.selection-panel__image {
    aspect-ratio: 4 / 3;
    background: #1b2226;
}

.selection-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selection-panel__content {
    padding: clamp(20px, 3vw, 30px);
}

.selection-panel__head {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.selection-panel__head img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px;
    background: var(--primary);
}

.selection-panel__head span {
    display: block;
    color: var(--bronze);
    font-size: 0.88rem;
    font-weight: 700;
}

.selection-panel h2 {
    margin: 4px 0 0;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.08;
    word-break: break-word;
}

.selection-panel p {
    margin: 22px 0 0;
    color: #b7c2c8;
    line-height: 1.72;
}

.selection-panel__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.12);
}

.selection-panel__stats div {
    padding: 16px 10px;
}

.selection-panel__stats strong {
    color: #ffffff;
    font-size: 1.55rem;
}

.selection-panel__stats .metric-icon {
    font-size: 1.08rem;
}

.selection-panel__actions {
    margin-top: 24px;
}

.primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 46px;
    padding: 0 16px 0 18px;
    border: 1px solid rgba(227, 10, 23, 0.0);
    border-radius: 6px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(227, 10, 23, 0.16), rgba(227, 10, 23, 0.04)),
        rgba(255, 255, 255, 0.035);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-action:hover {
    border-color: rgba(255, 38, 51, 0.0);
    background:
        linear-gradient(90deg, rgba(227, 10, 23, 0.28), rgba(227, 10, 23, 0.08)),
        rgba(255, 255, 255, 0.055);
    transform: translateY(-1px);
}

.primary-action svg {
    color: var(--primary-hover);
    font-size: 1.08rem;
    transition: transform 180ms ease;
}

.primary-action:hover svg {
    transform: translateX(3px);
}

.notice {
    grid-column: 1 / -1;
    padding: 24px;
    border: 1px solid rgba(185, 154, 116, 0.38);
    border-radius: 8px;
    color: #ffe0bd;
    background: rgba(185, 154, 116, 0.12);
}

.detail-empty {
    width: min(960px, calc(100% - 36px));
    margin: 42px auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    color: #f3f7f8;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.back-link svg {
    color: var(--primary-hover);
}

.back-link--top {
    padding: 0 13px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.detail-hero {
    position: relative;
    min-height: 500px;
    padding: 24px clamp(18px, 4vw, 64px) 104px;
    overflow: hidden;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.detail-hero .hero__shade {
    background:
        linear-gradient(90deg, rgba(7, 10, 12, 0.96) 0%, rgba(7, 10, 12, 0.72) 48%, rgba(7, 10, 12, 0.26) 100%),
        linear-gradient(180deg, rgba(7, 10, 12, 0.08), #0c0f12 100%);
}

.detail-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(360px, 0.44fr) minmax(420px, 0.56fr);
    align-items: end;
    gap: clamp(28px, 6vw, 96px);
    width: min(1440px, 100%);
    margin-top: clamp(88px, 16vh, 150px);
}

.detail-hero__title {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
     align-items: end;
}

.detail-hero__title img {
    width: 92px;
    height: 92px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 9px;
    background: var(--primary);
}

.detail-hero__title span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bronze);
    font-size: 0.92rem;
    font-weight: 800;
}

.detail-hero__title h1 {
    margin: 5px 0 0;
    color: #fff;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.92;
}

.detail-hero__content p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
    justify-self: end;
}

.detail-shell {
    width: min(1440px, calc(100% - 36px));
    margin: -74px auto 0;
    padding-bottom: 72px;
    position: relative;
    z-index: 2;
}

.quick-filter {
    margin: 24px 0;
}

.quick-filter__tabs {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.08);
}

.quick-filter__tabs a {
    display: inline-grid;
    place-items: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    color: rgba(255, 255, 255, 0.56);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.035);
    font-weight: 800;
    cursor: pointer;
}

.quick-filter__tabs a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

.quick-filter__bar {
    display: grid;
    grid-template-columns: minmax(320px, 1.25fr) minmax(170px, 0.5fr) minmax(150px, 0.42fr) minmax(210px, 0.65fr) auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.052);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.filter-group {
    min-width: 0;
}

.is-hidden,
.filter-group.is-hidden {
    display: none;
}

.filter-group > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-options label {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    font-weight: 800;
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.filter-options input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.filter-options label:hover,
.filter-options label.is-active,
.filter-options label:has(input:checked) {
    border-color: rgba(227, 10, 23, 0.48);
    color: #fff;
    background: rgba(227, 10, 23, 0.12);
}

.filter-options label span {
    position: relative;
    z-index: 1;
}

.filter-range {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.1);
}

.filter-range label {
    display: grid;
    gap: 1px;
    padding: 7px 10px;
    background: rgba(9, 12, 15, 0.46);
}

.filter-range small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    font-weight: 800;
}

.filter-range input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 0.98rem;
    font-weight: 800;
}

.filter-range input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.filter-select {
    position: relative;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(9, 12, 15, 0.46);
}

.filter-select::after {
    position: absolute;
    top: 50%;
    right: 14px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--primary-hover);
    border-bottom: 2px solid var(--primary-hover);
    content: "";
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.filter-select select {
    appearance: none;
    width: 100%;
    min-height: 42px;
    padding: 0 40px 0 14px;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
    font-size: 0.98rem;
    font-weight: 800;
    cursor: pointer;
}

.filter-select select:focus {
    box-shadow: inset 0 0 0 1px rgba(227, 10, 23, 0.62);
}

.filter-select option {
    color: #11161a;
    background: #ffffff;
}

.filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.78);
    background: rgba(9, 12, 15, 0.34);
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
}

.filter-toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.filter-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 150px;
    min-height: 42px;
    padding: 0 14px 0 16px;
    border: 1px solid rgba(227, 10, 23, 0.72);
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(90deg, rgba(227, 10, 23, 0.9), rgba(181, 8, 18, 0.92));
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.filter-submit:hover {
    border-color: rgba(255, 38, 51, 0.96);
    background: linear-gradient(90deg, rgba(255, 38, 51, 0.94), rgba(227, 10, 23, 0.94));
    transform: translateY(-1px);
}

.filter-submit svg {
    font-size: 1.1rem;
}

.detail-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.summary-tile {
    min-width: 0;
    padding: 22px 18px;
    background: rgba(11, 15, 18, 0.74);
    text-align: center;
}

.summary-tile strong {
    display: block;
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1;
}

.summary-tile span:last-child {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
    gap: 24px;
    margin-top: 24px;
}

.detail-section,
.block-filter-panel,
.property-table-wrap {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(26, 32, 37, 0.96), rgba(17, 22, 26, 0.96));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.detail-section,
.block-filter-panel {
    padding: 22px;
}

.section-head {
    margin-bottom: 18px;
}

.section-head span {
    display: block;
    color: var(--bronze);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-head h2 {
    margin: 5px 0 0;
    color: #fff;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.14;
}

.property-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.property-card {
    display: grid;
    grid-template-rows: 300px 1fr;
    min-width: 0;
    min-height: 486px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.property-card:hover {
    border-color: rgba(227, 10, 23, 0.46);
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-2px);
}

.property-card__image {
    position: relative;
    display: grid;
    place-items: center;
    height: 300px;
    aspect-ratio: auto;
    background: #1b2226;
    overflow: hidden;
}

.property-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: #0c0f12c2;
}

.image-fallback {
    position: relative;
    z-index: 1;
    display: none;
    place-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 22px;
    color: #d7dde0;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(227, 10, 23, 0.12), rgba(255, 255, 255, 0.025)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 12px),
        #11171b;
}

.image-fallback svg {
    width: 34px;
    height: 34px;
    color: rgba(255, 112, 121, 0.92);
}

.image-fallback small {
    display: block;
    max-width: 180px;
    color: #b8c0c5;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.is-missing-image > img {
    display: none !important;
}

.is-missing-image > .image-fallback {
    display: grid;
}

.image-fallback--block {
    padding: 0;
}

.image-fallback--block svg {
    width: 22px;
    height: 22px;
}

.property-card__image > span:not(.status-pill) {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 1.6rem;
}

.property-card__image .status-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 12, 15, 0.78);
    backdrop-filter: blur(10px);
}

.property-card.is-sold {
    grid-template-rows: 1fr;
    border-color: rgba(255, 255, 255, 0.07);
}

.property-card.is-sold .property-card__image {
    height: 100%;
    min-height: 486px;
    aspect-ratio: auto;
}

.property-card.is-sold:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    transform: none;
}

.property-card__sold-visual {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(227, 10, 23, 0.12), rgba(255, 255, 255, 0.03)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 12px),
        #151a1f;
    filter: blur(1px);
}

.property-card__sold-overlay {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: 1fr auto;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 22px;
}

.property-card__sold-label {
    justify-self: center;
    align-self: center;
    transform: translateY(26px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(227, 10, 23, 0.42);
    color: #fff;
    background: rgba(9, 12, 15, 0.68);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.property-card__sold-info {
    align-self: end;
}

.property-card__sold-info > span {
    display: block;
    color: #d6e0e4;
    font-size: 0.9rem;
}

.property-card__sold-info > strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 1.22rem;
}

.property-card__body {
    padding: 16px;
    min-height: 186px;
}

.property-card__body > div:first-child span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.property-card__body strong {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 1.2rem;
}

.property-card__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.property-card__facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5da;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
}

.property-card__facts svg {
    color: #ff7079;
}

.property-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    /* width: 100%; */
    min-height: 46px;
    padding: 0 16px 0 18px;
    border: 1px solid rgba(227, 10, 23, 0.0);
    border-radius: 2px;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(227, 10, 23, 0.16), rgba(227, 10, 23, 0.04)),
        rgba(255, 255, 255, 0.035);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
    margin-top: 10px;
    text-decoration: none;
}

.property-card__action:hover {
    border-color: rgba(255, 38, 51, 0.0);
    background:
        linear-gradient(90deg, rgba(227, 10, 23, 0.28), rgba(227, 10, 23, 0.08)),
        rgba(255, 255, 255, 0.055);
    transform: translateY(-1px);
}

.property-card__action svg {
    color: var(--primary-hover);
    font-size: 1.08rem;
    transition: transform 180ms ease;
}

.property-card__action:hover svg {
    transform: translateX(3px);
}



.block-filter-panel {
    align-self: start;
    position: sticky;
    top: 22px;
}

.block-filter-list {
    display: grid;
    gap: 12px;
}

.block-filter-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: inherit;
    text-align: left;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.block-filter-card:hover,
.block-filter-card.is-active {
    border-color: rgba(227, 10, 23, 0.48);
    background: rgba(227, 10, 23, 0.08);
    transform: translateX(2px);
}

.block-filter-card__image {
    display: grid;
    place-items: center;
    width: 82px;
    aspect-ratio: 4 / 3;
    background: #1b2226;
    overflow: hidden;
}

.block-filter-card__image--all {
    color: #fff;
    background: rgba(227, 10, 23, 0.16);
    font-size: 1.25rem;
}

.block-filter-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-filter-card__body {
    min-width: 0;
}

.block-filter-card__body strong,
.block-filter-card__body span {
    display: block;
}

.block-filter-card__body strong {
    color: #fff;
    font-size: 1rem;
}

.block-filter-card__body span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.84rem;
}

.block-filter-card > svg {
    color: var(--primary-hover);
    font-size: 1rem;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}

.pagination a,
.pagination span {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5da;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
    font-weight: 800;
}

.pagination a:hover,
.pagination a.is-active {
    border-color: rgba(227, 10, 23, 0.52);
    color: #fff;
    background: rgba(227, 10, 23, 0.16);
}

.pagination__control {
    min-width: 86px;
    padding: 0 14px;
}

.pagination__ellipsis {
    border-color: transparent;
    color: rgba(255, 255, 255, 0.48);
    background: transparent;
}

.pagination .is-disabled {
    opacity: 0.38;
    pointer-events: none;
}

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

.property-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.property-table th,
.property-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    white-space: nowrap;
}

.property-table th {
    color: var(--bronze);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.035);
}

.property-table td {
    color: #d5dee2;
    font-size: 0.92rem;
}

.property-table tbody tr:hover {
    background: rgba(227, 10, 23, 0.07);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #dce6ea;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    font-weight: 700;
}

.status-bos {
    border-color: rgba(35, 211, 137, 0.38);
    color: #85f0c2;
}

.status-rezerve {
    border-color: rgba(185, 154, 116, 0.48);
    color: #f4cc9d;
}

.status-satildi,
.status-kiralandi {
    border-color: rgba(160, 170, 176, 0.3);
    color: #a9b4bc;
}

.status-satisa_kapali {
    border-color: rgba(227, 10, 23, 0.42);
    color: #ff8a92;
}

.property-detail {
    background: #0c0f12;
}

.property-hero {
    position: relative;
    min-height: 430px;
    padding: 24px clamp(18px, 4vw, 64px) 72px;
    overflow: hidden;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.property-hero .hero__shade {
    background:
        linear-gradient(90deg, rgba(7, 10, 12, 0.96), rgba(7, 10, 12, 0.72) 48%, rgba(7, 10, 12, 0.24)),
        linear-gradient(180deg, rgba(7, 10, 12, 0.08), #0c0f12 100%);
}

.property-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    width: min(980px, 100%);
    margin-top: 88px;
}

.property-hero__content > img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px;
    background: var(--primary);
}

.property-hero__content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bronze);
    font-weight: 800;
}

.property-hero__content h1 {
    margin: 8px 0 0;
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5.6rem);
    line-height: 0.95;
}

.property-hero__content p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.property-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: min(1440px, calc(100% - 36px));
    margin: -48px auto 0;
    padding-bottom: 72px;
    position: relative;
    z-index: 2;
}

.property-gallery,
.feature-bar,
.property-action-bar {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(26, 32, 37, 0.96), rgba(17, 22, 26, 0.96));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.property-gallery {
    display: grid;
    grid-template-columns: minmax(280px, 0.50fr) minmax(0, 0.50fr);
    gap: 14px;
    padding: 18px;
}

.property-gallery__stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    min-height: 720px;
}

.property-gallery__tile,
.property-gallery__main {
    position: relative;
    display: grid;
    place-items: center;
    
    background: transparent;
    overflow: hidden;
}

.property-gallery__tile img,
.property-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.property-gallery__main {
    min-height: 720px;
}

.property-gallery__main img {
    max-height: 940px;
}

.plan-viewer__empty {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 2rem;
}

.property-title-card span {
    color: var(--bronze);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.property-title-card h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.property-title-card h2 small{
    margin: 8px 0 0;
    color: #bfbfbf;
    font-size: clamp(1.2rem, 3vw, 2.4rem);
    line-height: 1;
}

.property-title-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.property-title-card .availability-pill {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    width: fit-content;
    margin-top: 12px;
    color: #9be7b5;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
}

.property-title-card .availability-pill svg {
    width: 17px;
    height: 17px;
    color: #4ade80;
    stroke-width: 2.8;
}

.feature-bar {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.feature-bar div {
    min-width: 0;
    padding: 18px 16px;
    background: rgba(11, 15, 18, 0.64);
}

.feature-bar svg {
    color: var(--primary-hover);
    font-size: 1.15rem;
}

.feature-bar strong,
.feature-bar span {
    display: block;
}

.feature-bar strong {
    margin-top: 10px;
    color: #fff;
    font-size: 1.15rem;
}

.feature-bar span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.82rem;
}

.property-action-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.24fr);
    gap: 24px;
    align-items: center;
    padding: 22px;
}

.info-request-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 52px;
    margin-top: 0;
    padding: 0 17px 0 20px;
    border: 1px solid rgba(227, 10, 23, 0.72);
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(90deg, rgba(227, 10, 23, 0.9), rgba(181, 8, 18, 0.92));
    font-weight: 800;
    cursor: pointer;
}

.request-drawer,
.kvkk-modal {
    position: fixed;
    inset: 0;
    z-index: 20;
    visibility: hidden;
    pointer-events: none;
}

.request-drawer.is-open,
.kvkk-modal.is-open {
    visibility: visible;
    pointer-events: auto;
}

.request-drawer__backdrop,
.kvkk-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    transition: opacity 180ms ease;
}

.request-drawer.is-open .request-drawer__backdrop,
.kvkk-modal.is-open .kvkk-modal__backdrop {
    opacity: 1;
}

.request-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(620px, 100%);
    height: 100%;
    padding: clamp(24px, 4vw, 42px);
    border-left: 1px solid var(--line);
    background: #11161a;
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.42);
    transform: translateX(100%);
    transition: transform 220ms ease;
    overflow-y: auto;
}

.request-drawer.is-open .request-drawer__panel {
    transform: translateX(0);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.drawer-eyebrow {
    display: block;
    color: var(--bronze);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.request-drawer__panel h2,
.kvkk-modal__panel h2 {
    margin: 8px 0 0;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
}

.request-drawer__panel p,
.kvkk-modal__panel p {
    color: #b7c2c8;
    line-height: 1.7;
}

.request-form {
    display: grid;
    gap: 13px;
    margin-top: 24px;
}

.request-form label {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: center;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.04);
}

.request-form label > svg {
    color: var(--primary-hover);
}

.request-form label > span {
    color: #dce6ea;
    font-size: 0.86rem;
    font-weight: 800;
}

.request-form input,
.request-form textarea {
    grid-column: 1 / -1;
    width: 100%;
    border: 0;
    outline: 0;
    color: #fff;
    background: transparent;
}

.request-form textarea {
    resize: vertical;
}

.request-form__note {
    grid-template-columns: 1fr;
}

.kvkk-check {
    grid-template-columns: 20px minmax(0, 1fr) !important;
}

.kvkk-check input {
    grid-column: 1;
    accent-color: var(--primary);
}

.kvkk-check span {
    grid-column: 2;
    font-weight: 600 !important;
    line-height: 1.5;
}

.kvkk-check button {
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font-weight: 900;
    text-decoration: underline;
    cursor: pointer;
}

.recaptcha-field {
    display: flex;
    justify-content: center;
    min-width: 0;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.recaptcha-field .g-recaptcha {
    transform-origin: center;
}

.request-form__submit {
    width: 100%;
}

.kvkk-modal__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(720px, calc(100% - 28px));
    max-height: min(760px, calc(100% - 36px));
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #11161a;
    box-shadow: var(--shadow);
    transform: translate(-50%, -48%) scale(0.98);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
    overflow-y: auto;
}

.kvkk-modal.is-open .kvkk-modal__panel {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.submit-loader,
.result-modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.submit-loader.is-open,
.result-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.submit-loader {
    background: rgba(0, 0, 0, 0.68);
}

.submit-loader > div {
    display: grid;
    justify-items: center;
    gap: 12px;
    width: min(360px, calc(100% - 32px));
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #11161a;
    box-shadow: var(--shadow);
    text-align: center;
}

.loader-ring {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(255, 255, 255, 0.14);
    border-top-color: var(--primary-hover);
    border-radius: 50%;
    animation: loader-spin 850ms linear infinite;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

.submit-loader strong {
    color: #fff;
    font-size: 1.15rem;
}

.submit-loader p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.result-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.result-modal__panel {
    position: relative;
    width: min(480px, calc(100% - 32px));
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #11161a;
    box-shadow: var(--shadow);
    text-align: center;
}

.result-icon {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 16px;
    color: #fff;
    background: rgba(227, 10, 23, 0.18);
    font-size: 1.8rem;
}

.result-modal__panel--success .result-icon {
    background: rgba(35, 211, 137, 0.18);
    color: #85f0c2;
}

.result-modal__panel--error .result-icon {
    color: #ff8a92;
}

.result-modal__panel h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.05;
}

.result-modal__panel p {
    margin: 14px 0 0;
    color: #b7c2c8;
    line-height: 1.65;
}

.result-modal__button {
    width: 100%;
    justify-content: center;
    margin-top: 22px;
}

@media (max-width: 1100px) {
    .hero {
        min-height: 570px;
    }

    .hero__content,
    .project-stage {
        grid-template-columns: 1fr;
    }

    .selection-panel {
        position: static;
    }

    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-hero__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .detail-hero__content p {
        justify-self: start;
        max-width: 820px;
    }

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

    .block-filter-panel {
        position: static;
    }

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

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

    .property-gallery__stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        min-height: 320px;
    }

    .property-gallery__main {
        min-height: 560px;
    }

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

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

    .filter-group--wide,
    .filter-toggle,
    .filter-submit {
        grid-column: 1 / -1;
    }

    .filter-submit {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 640px;
        padding: 18px 18px 78px;
    }

    .topbar {
        align-items: flex-start;
        padding-bottom: 72px;
    }

    .topbar__meta {
        display: none;
    }

    .hero h1 {
        font-size: clamp(3rem, 18vw, 5.2rem);
    }

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

    .metrics div {
        padding: 16px 18px;
    }

    .project-stage {
        width: min(100% - 24px, 1440px);
        margin-top: -42px;
    }

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

    .project-card__button {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .project-card__media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .project-card__body {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 13px;
        padding: 15px;
    }

    .project-card__logo {
        width: 56px;
        height: 56px;
    }

    .selection-panel__head {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .selection-panel__head img {
        width: 62px;
        height: 62px;
    }

    .primary-action {
        width: 100%;
    }

    .detail-hero {
        min-height: 560px;
        padding: 18px 18px 92px;
    }

    .detail-hero__content {
        margin-top: 58px;
    }

    .detail-hero__title {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .detail-hero__title img {
        width: 68px;
        height: 68px;
    }

    .detail-shell {
        width: min(100% - 24px, 1440px);
        margin-top: -42px;
    }

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

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

    .property-card {
        grid-template-rows: 260px 1fr;
        min-height: 410px;
    }

    .property-card__image {
        height: 260px;
    }

    .property-card.is-sold .property-card__image {
        min-height: 410px;
    }

    .quick-filter__tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .quick-filter__bar {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 16px;
    }

    .filter-options label {
        flex: 1 1 92px;
    }

    .filter-toggle {
        justify-content: center;
    }

    .property-hero {
        min-height: 520px;
        padding: 18px 18px 72px;
    }

    .property-hero__content {
        grid-template-columns: 68px minmax(0, 1fr);
        margin-top: 72px;
    }

    .property-hero__content > img {
        width: 68px;
        height: 68px;
    }

    .property-shell {
        width: min(100% - 24px, 1440px);
        margin-top: -42px;
    }

    .property-gallery {
        padding: 12px;
    }

    .property-gallery__stack {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .property-gallery__tile {
        min-height: 260px;
    }

    .property-gallery__main {
        min-height: 420px;
    }

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

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