.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background:
        linear-gradient(180deg, rgba(24, 24, 24, 0.64), rgba(24, 24, 24, 0.42));
    border-bottom: 1px solid rgba(187, 173, 161, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 6.5rem;
    gap: 1.5rem;
}

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

.brand-mark__image {
    width: auto;
    height: clamp(2.85rem, 4.8vw, 4rem);
    max-width: min(28vw, 13.25rem);
}

.brand-mark--header .brand-mark__image {
    height: clamp(4rem, 5.2vw, 4.9rem);
    max-width: min(14vw, 4.9rem);
}

.brand-mark__descriptor {
    margin-top: 1.15rem;
    font-size: 0.66rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    color: var(--text-faint);
}

.brand-mark--footer {
    margin-bottom: 0.4rem;
}

.brand-mark--footer .brand-mark__image {
    height: clamp(3rem, 6vw, 4.2rem);
    max-width: 16rem;
}

.header-panel {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 1.75rem;
}

.site-nav {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    gap: clamp(1rem, 1.2vw, 1.8rem);
}

.site-nav a {
    position: relative;
    padding: 0.4rem 0;
    color: var(--text-soft);
    font-size: 0.66rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    white-space: nowrap;
}

.site-nav__muted {
    color: var(--text);
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--contrast);
}

.site-nav a.active::after,
.site-nav a:hover::after {
    content: none;
}

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: inline-flex;
    padding: 0.18rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: rgba(86, 75, 66, 0.06);
}

.language-pill {
    padding: 0.55rem 0.8rem;
    border: 0;
    background: transparent;
    color: var(--text-faint);
    font-size: 0.66rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.28em;
}

.language-pill.is-active {
    color: var(--contrast);
    background: rgba(245, 243, 240, 0.04);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.2rem;
    border: 0;
    background: transparent;
}

.mobile-nav-toggle span {
    width: 1.6rem;
    height: 1px;
    background: var(--contrast);
}

.hero-section {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding-bottom: 6.5rem;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(245, 243, 240, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(245, 243, 240, 0.03) 1px, transparent 1px);
    background-size: 140px 140px;
    opacity: 0.08;
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(24, 24, 24, 0.84) 0%, rgba(24, 24, 24, 0.34) 50%, rgba(24, 24, 24, 0.76) 100%),
        linear-gradient(180deg, rgba(24, 24, 24, 0.08), rgba(24, 24, 24, 0.82));
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) sepia(0.1) brightness(0.84);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 19rem);
    gap: 4.5rem;
    align-items: end;
    padding-top: 5.5rem;
}

.hero-copy {
    max-width: 50rem;
}

.hero-brand {
    justify-self: end;
    width: min(100%, 12rem);
    padding: 0 0 1.2rem;
}

.hero-brand__image {
    display: block;
    width: min(100%, 9.5rem);
    height: auto;
    margin-left: auto;
}

.hero-brand__statement {
    width: min(100%, 11rem);
    margin: 1.45rem 0 0 auto;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-kicker-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.hero-kicker {
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.34em;
}

.hero-kicker + .hero-kicker::before {
    content: "/";
    margin-right: 0.85rem;
    color: var(--text-faint);
}

.hero-copy h1 {
    max-width: 11ch;
    margin-bottom: 1.6rem;
}

.hero-title span {
    display: block;
}

.hero-title span + span {
    margin-top: -0.08em;
}

.hero-description {
    max-width: 30rem;
    color: var(--contrast-soft);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: center;
}

.hero-link {
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    white-space: nowrap;
}

.hero-link:hover {
    color: var(--contrast);
}

.editorial-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.editorial-points {
    display: grid;
    gap: 1.45rem;
}

.editorial-point {
    padding-top: 1.3rem;
    border-top: 1px solid rgba(245, 243, 240, 0.12);
    background: transparent;
}

.editorial-media {
    display: grid;
    gap: 1rem;
}

.editorial-media__frame {
    position: relative;
    overflow: hidden;
    min-height: 22rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.editorial-media__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) sepia(0.12) brightness(0.8);
    transition: transform 420ms ease;
}

.editorial-media__frame:hover img {
    transform: scale(1.02);
}

.editorial-note {
    max-width: 24rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.editorial-note p {
    color: var(--contrast-soft);
}

.about-sheet-panels {
    display: grid;
    gap: 2.5rem;
}

.about-sheet-hero__visual {
    position: relative;
    overflow: hidden;
    min-height: 31rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(24, 24, 24, 0.28);
    box-shadow: var(--shadow);
    text-align: left;
}

.about-sheet-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.92) sepia(0.1) brightness(0.84);
    transition: transform 420ms ease;
}

.about-sheet-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.08), rgba(24, 24, 24, 0.78));
}

.about-sheet-hero__visual:hover img {
    transform: scale(1.02);
}

.about-sheet-hero__visual-meta {
    position: absolute;
    right: 1.5rem;
    bottom: 1.4rem;
    left: 1.5rem;
    z-index: 1;
}

.about-sheet-hero__visual-meta .section-eyebrow {
    margin-bottom: 0.7rem;
    color: var(--contrast-soft);
}

.about-sheet-hero__visual-meta strong {
    display: block;
    max-width: 14rem;
    color: var(--contrast);
    font-size: 1.15rem;
    line-height: 1.4;
}

.about-sheet-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2rem;
    align-items: stretch;
}

.about-sheet-panel--reverse {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.about-sheet-panel--reverse .about-sheet-panel__media {
    order: 2;
}

.about-sheet-panel--reverse .about-sheet-panel__content {
    order: 1;
}

.about-sheet-panel__media,
.about-sheet-visual__media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-sheet-panel__media-button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

.about-sheet-panel__media {
    min-height: 32rem;
}

.about-sheet-panel__media img,
.about-sheet-visual__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) sepia(0.12) brightness(0.82);
}

.about-sheet-panel__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.about-sheet-panel__content h3 {
    max-width: 12ch;
}

.about-sheet-panel__list {
    margin-top: 1.5rem;
}

.about-sheet-visuals__intro {
    max-width: 52rem;
    margin-bottom: 3rem;
}

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

.about-sheet-visual {
    overflow: hidden;
    padding: 0;
}

.about-sheet-visual__media {
    min-height: 18rem;
}

.about-sheet-visual__content {
    padding: 1.4rem 1.5rem 1.6rem;
}

.about-sheet-gallery {
    margin-top: 1.5rem;
}

.highlights-intro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4.5rem;
}

.highlights-title {
    max-width: 9ch;
    font-size: clamp(2.5rem, 4.2vw, 4.3rem);
}

.highlights-title span {
    display: block;
}

.highlights-lead {
    max-width: 34rem;
}

.highlight-grid .luxury-card,
.detail-grid .luxury-card,
.unit-card,
.filter-panel,
.form-card,
.contact-details {
    padding: 2.35rem;
}

.section--highlights .highlight-grid .luxury-card {
    padding: 1.35rem 0 0;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
}

.filter-panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.filter-panel__field,
.form-field {
    display: grid;
    gap: 0.45rem;
}

.filter-panel__field label,
.form-field label {
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.filter-panel select,
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.95rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: var(--contrast);
}

.filter-panel select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: rgba(245, 243, 240, 0.26);
}

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

.form-field--full {
    grid-column: 1 / -1;
}

.form-field textarea {
    min-height: 10rem;
    resize: vertical;
}

.unit-card {
    display: grid;
    gap: 2rem;
    min-height: 100%;
}

.unit-card__header,
.unit-card__footer {
    display: flex;
    justify-content: space-between;
    gap: 1.2rem;
    align-items: flex-start;
}

.unit-card__intro {
    max-width: 18rem;
}

.unit-card__eyebrow {
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.32em;
}

.unit-card__title {
    max-width: 10ch;
    margin-top: 0.7rem;
    font-size: clamp(1.7rem, 2.2vw, 2.4rem);
    line-height: 0.96;
}

.unit-card__summary {
    max-width: 20rem;
    margin-top: 1rem;
    color: var(--text-soft);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.unit-card__specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 1.35rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.unit-card__specs strong,
.unit-card__footer strong {
    font-size: 1.05rem;
}

.gallery-showcase {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 1.75rem;
}

.gallery-showcase__item,
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-showcase__item {
    min-height: 24rem;
}

.gallery-showcase__item:first-child {
    grid-row: span 2;
    min-height: 50rem;
}

.gallery-showcase__item img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
    filter: saturate(0.88) sepia(0.14) brightness(0.74);
}

.gallery-showcase__item:hover img,
.gallery-card:hover img {
    transform: scale(1.02);
}

.gallery-showcase__item::after,
.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.04), rgba(24, 24, 24, 0.84));
}

.gallery-showcase__meta,
.gallery-card__caption {
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    z-index: 1;
}

.gallery-showcase__meta {
    bottom: 1.35rem;
}

.gallery-showcase__meta p {
    color: var(--contrast-soft);
}

.gallery-card {
    border: 0;
    padding: 0;
    background: transparent;
}

.gallery-card img {
    min-height: 20rem;
}

.gallery-card__caption {
    bottom: 1.2rem;
    color: var(--contrast);
    font-size: 0.88rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.24em;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(24, 24, 24, 0.92);
}

.lightbox__panel {
    position: relative;
    width: min(960px, 100%);
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(24, 24, 24, 0.92);
}

.lightbox__panel img {
    width: 100%;
    border-radius: var(--radius-md);
}

.lightbox__meta {
    padding: 1rem 0.25rem 0.2rem;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: rgba(24, 24, 24, 0.42);
    color: var(--contrast);
    font-size: 1.3rem;
}

.cta-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: end;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.cta-banner__content {
    max-width: 42rem;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer {
    padding: 4.5rem 0 5rem;
    border-top: 1px solid rgba(187, 173, 161, 0.1);
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.92), rgba(24, 24, 24, 1));
}

.site-footer h3 {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.site-footer a:hover {
    color: var(--contrast);
}

.footer-grid {
    grid-template-columns: 1.25fr 0.85fr 0.85fr 1fr;
    gap: 2.5rem;
}

.footer-copy {
    max-width: 24rem;
}

.empty-state {
    max-width: 720px;
    margin: 4rem auto;
    text-align: center;
}

.reveal-card {
    animation: fadeRise 900ms ease both;
}

@keyframes fadeRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@media (max-width: 1080px) {
    .highlights-intro,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-brand {
        justify-self: start;
        width: min(100%, 14rem);
        padding-top: 0;
    }

    .hero-brand__image,
    .hero-brand__statement {
        margin-left: 0;
    }

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

    .cta-banner {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .about-sheet-panel,
    .about-sheet-panel--reverse,
    .about-sheet-visuals {
        grid-template-columns: 1fr;
    }

    .about-sheet-panel--reverse .about-sheet-panel__media,
    .about-sheet-panel--reverse .about-sheet-panel__content {
        order: initial;
    }
}

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

    .header-panel {
        position: absolute;
        top: calc(100% + 0.65rem);
        left: 1rem;
        right: 1rem;
        display: none;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        background: rgba(24, 24, 24, 0.95);
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        max-height: calc(100svh - 6.5rem);
        overflow-y: auto;
    }

    .header-panel.is-open {
        display: flex;
    }

    .site-nav,
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    .site-nav {
        gap: 0.75rem;
    }

    .site-nav a {
        font-size: 0.68rem;
    }

    .header-actions .button {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .site-header {
        background: linear-gradient(180deg, rgba(24, 24, 24, 0.88), rgba(24, 24, 24, 0.72));
    }

    .header-inner {
        min-height: 4.9rem;
        gap: 0.9rem;
    }

    .brand-mark__image {
        height: 2.35rem;
        max-width: 12rem;
    }

    .brand-mark--header .brand-mark__image {
        height: 2.9rem;
        max-width: 3.35rem;
    }

    .header-panel {
        top: calc(100% + 0.4rem);
        left: 0.75rem;
        right: 0.75rem;
        padding: 0.95rem 0.9rem 1.1rem;
        gap: 0.85rem;
        border-radius: 8px;
    }

    .site-nav {
        gap: 0.25rem;
    }

    .site-nav a {
        padding: 0.62rem 0;
        font-size: 0.72rem;
        letter-spacing: 0.24em;
    }

    .header-actions {
        gap: 0.8rem;
    }

    .language-switcher {
        width: 100%;
    }

    .language-pill {
        flex: 1 1 0;
        padding: 0.72rem 0.5rem;
        text-align: center;
    }

    .mobile-nav-toggle {
        gap: 0.25rem;
    }

    .mobile-nav-toggle span {
        width: 1.35rem;
    }

    .site-nav,
    .cta-banner__actions,
    .unit-card__header,
    .unit-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-section {
        min-height: 100svh;
        padding-top: 6.8rem;
        padding-bottom: 3.2rem;
    }

    .hero-section::after {
        background:
            linear-gradient(180deg, rgba(24, 24, 24, 0.42) 0%, rgba(24, 24, 24, 0.68) 46%, rgba(24, 24, 24, 0.9) 100%),
            linear-gradient(90deg, rgba(24, 24, 24, 0.62), rgba(24, 24, 24, 0.42));
    }

    .hero-content {
        gap: 1.5rem;
        padding-top: 0.75rem;
    }

    .hero-kicker-row {
        gap: 0.55rem;
        margin-bottom: 1.15rem;
    }

    .hero-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.24em;
    }

    .hero-kicker + .hero-kicker::before {
        margin-right: 0.55rem;
    }

    .hero-copy h1 {
        max-width: 7ch;
        margin-bottom: 1rem;
    }

    .hero-description {
        max-width: 22rem;
        font-size: 0.94rem;
    }

    .hero-actions {
        gap: 0.85rem;
        margin-top: 1.8rem;
    }

    .hero-link {
        text-align: center;
        font-size: 0.66rem;
        letter-spacing: 0.24em;
    }

    .editorial-grid {
        gap: 1.75rem;
    }

    .editorial-media {
        gap: 0.75rem;
    }

    .editorial-media__frame {
        min-height: 15rem;
    }

    .editorial-note {
        max-width: none;
        padding-top: 0.85rem;
    }

    .highlights-intro {
        gap: 1.35rem;
        margin-bottom: 2.5rem;
    }

    .highlights-lead {
        max-width: none;
    }

    .gallery-showcase__item:first-child {
        grid-row: auto;
        min-height: 20rem;
    }

    .filter-panel,
    .form-grid,
    .unit-card__specs {
        grid-template-columns: 1fr;
    }

    .form-grid {
        gap: 1rem;
    }

    .highlight-grid .luxury-card,
    .unit-card,
    .form-card,
    .contact-details {
        padding: 1.5rem;
    }

    .unit-card {
        gap: 1.35rem;
    }

    .unit-card__intro,
    .unit-card__summary {
        max-width: none;
    }

    .unit-card__title {
        max-width: none;
        font-size: clamp(1.45rem, 8vw, 2rem);
    }

    .unit-card__specs {
        gap: 0.9rem;
        padding: 1rem 0;
    }

    .about-sheet-panel__media {
        min-height: 16.5rem;
    }

    .about-sheet-hero__visual {
        min-height: 18rem;
    }

    .about-sheet-hero__visual-meta {
        right: 1rem;
        bottom: 0.9rem;
        left: 1rem;
    }

    .about-sheet-hero__visual-meta strong {
        max-width: none;
        font-size: 1rem;
    }

    .about-sheet-panel__content {
        padding: 0;
    }

    .about-sheet-panel__content h3 {
        max-width: none;
    }

    .about-sheet-visual__media {
        min-height: 13.5rem;
    }

    .gallery-card img {
        min-height: 14rem;
    }

    .gallery-card__caption {
        left: 1rem;
        right: 1rem;
        bottom: 0.9rem;
        font-size: 0.74rem;
        letter-spacing: 0.18em;
    }

    .lightbox {
        padding: 0.6rem;
    }

    .lightbox__panel {
        padding: 0.65rem;
    }

    .lightbox__meta {
        padding: 0.85rem 0.15rem 0.1rem;
    }

    .lightbox__close {
        top: 0.7rem;
        right: 0.7rem;
        width: 2.1rem;
        height: 2.1rem;
    }

    .site-footer {
        padding: 3.5rem 0 3.75rem;
    }
}
