.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    backdrop-filter: blur(22px);
    background:
        linear-gradient(180deg, rgba(33, 29, 26, 0.76), rgba(33, 29, 26, 0.42));
    border-bottom: 1px solid rgba(251, 247, 239, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5.6rem;
    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(3.55rem, 4.8vw, 4.55rem);
    max-width: min(13vw, 4.55rem);
}

.brand-mark__descriptor {
    margin-top: 1.15rem;
    font-size: 0.66rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    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(0.9rem, 1.1vw, 1.55rem);
}

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

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.2rem;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(251, 247, 239, 0), rgba(209, 184, 145, 0.9), rgba(251, 247, 239, 0));
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 200ms ease, transform 200ms ease;
}

.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 {
    opacity: 1;
    transform: scaleX(1);
}

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

.header-contact-cluster {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.2rem;
    border: 1px solid rgba(251, 247, 239, 0.14);
    border-radius: 999px;
    background: rgba(251, 247, 239, 0.025);
}

.header-contact-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.header-contact-links a {
    padding: 0.48rem 0.62rem;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--text-faint);
    font-size: 0.62rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.header-contact-links a:hover {
    border-color: rgba(209, 184, 145, 0.58);
    color: var(--contrast);
    background: rgba(251, 247, 239, 0.045);
}

.header-download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.52rem 0.8rem;
    border: 1px solid rgba(223, 196, 154, 0.72);
    border-radius: 999px;
    background: rgba(223, 196, 154, 0.14);
    color: var(--warm);
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    white-space: nowrap;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-download-link:hover {
    border-color: var(--warm);
    background: var(--warm);
    color: #241d17;
    transform: translateY(-1px);
}

.header-download-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 0.72rem;
    line-height: 1;
}

.language-switcher {
    display: inline-flex;
    padding: 0.18rem;
    border: 1px solid rgba(251, 247, 239, 0.14);
    border-radius: 2px;
    background: rgba(251, 247, 239, 0.035);
}

.language-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    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;
    text-decoration: none;
}

.language-pill.is-active {
    color: var(--contrast);
    background: rgba(251, 247, 239, 0.08);
}

.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: 92svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    padding-bottom: 5.6rem;
    background: #2a2521;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(251, 247, 239, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(251, 247, 239, 0.028) 1px, transparent 1px);
    background-size: 152px 152px;
    opacity: 0.09;
    z-index: 1;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 12, 10, 0.62) 0%, rgba(15, 12, 10, 0.12) 54%, rgba(15, 12, 10, 0.42) 100%),
        linear-gradient(180deg, rgba(15, 12, 10, 0.06) 0%, rgba(15, 12, 10, 0.1) 42%, rgba(15, 12, 10, 0.68) 100%),
        linear-gradient(24deg, rgba(196, 165, 126, 0.16), transparent 46%);
    z-index: 1;
}

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

.hero-video,
.hero-media__fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.04) brightness(0.92);
}

.hero-video {
    z-index: 1;
}

.hero-media__fallback {
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(13rem, 17rem);
    gap: 4rem;
    align-items: end;
    padding-top: 7rem;
}

.hero-copy {
    max-width: 50rem;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.hero-brand {
    justify-self: end;
    width: min(100%, 10.75rem);
    padding: 0 0 0.25rem;
    text-align: right;
}

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

.hero-brand__statement {
    width: min(100%, 9.25rem);
    margin: 0.85rem 0 0 auto;
    color: var(--contrast-soft);
    font-size: 0.8rem;
    line-height: 1.5;
}

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

.hero-kicker {
    color: var(--contrast-soft);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
}

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

.hero-copy h1 {
    max-width: 10ch;
    margin-bottom: 1.45rem;
}

.hero-title span {
    display: block;
}

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

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

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

.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

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

.editorial-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 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: 0 22px 70px rgba(5, 8, 8, 0.24);
}

.editorial-media__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02) brightness(0.9);
    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 rgba(201, 189, 177, 0.12);
    border-radius: var(--radius-lg);
    background: rgba(18, 14, 12, 0.34);
    box-shadow: 0 24px 74px rgba(5, 8, 8, 0.22);
    text-align: left;
}

.about-sheet-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02) brightness(0.9);
    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: 0 20px 62px rgba(5, 8, 8, 0.2);
}

.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(1.02) contrast(1.02) brightness(0.9);
}

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

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

.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: 5rem;
    align-items: end;
    margin-bottom: 4.5rem;
}

.highlights-title {
    max-width: 13ch;
    font-size: 4.05rem;
}

.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;
}

.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;
}

.form-field--hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.form-field--recaptcha {
    grid-column: 1 / -1;
    max-width: 24rem;
}

.recaptcha-box {
    width: 304px;
    max-width: 100%;
    min-height: 4.875rem;
    transform-origin: left top;
}

.recaptcha-box > div {
    min-height: 4.875rem;
}

.form-hint {
    margin-top: 0.65rem;
    font-size: 0.82rem;
    line-height: 1.55;
}

.form-hint--warning {
    color: var(--text);
}

.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;
}

.unit-card__title {
    max-width: 10ch;
    margin-top: 0.7rem;
    font-size: 2.2rem;
    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);
    box-shadow: 0 20px 64px rgba(5, 8, 8, 0.2);
}

.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(1.02) contrast(1.03) brightness(0.86);
}

.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(15, 12, 10, 0.02), rgba(15, 12, 10, 0.78));
}

.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;
}

.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 rgba(187, 173, 161, 0.12);
    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: 3rem;
}

.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%, 11.75rem);
        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 rgba(251, 247, 239, 0.16);
        border-radius: var(--radius-md);
        background:
            linear-gradient(180deg, rgba(55, 45, 38, 0.98), rgba(18, 14, 12, 0.98));
        box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
        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 (min-width: 761px) and (max-width: 1080px) {
    .about-sheet-hero__copy {
        min-width: 0;
    }

    .about-sheet-hero__heading h1 {
        max-width: 100%;
        font-size: clamp(3.9rem, 7.5vw, 5rem);
        overflow-wrap: anywhere;
    }

    .split-section .section-heading h2 {
        font-size: clamp(3.1rem, 5.6vw, 4.2rem);
        overflow-wrap: anywhere;
    }
}

@media (min-width: 761px) and (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contact-hero,
    .location-hero {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        align-items: start;
    }

    .contact-hero .section-heading h1,
    .location-hero .section-heading h1 {
        max-width: 16ch;
        font-size: clamp(4rem, 8vw, 5rem);
        overflow-wrap: normal;
        word-break: normal;
    }
}

.project-gallery-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.52fr);
    gap: clamp(3rem, 9vw, 9rem);
    align-items: end;
}

.project-gallery-hero__inner h1 {
    margin-bottom: 0;
}

.project-gallery-hero__inner > p {
    max-width: 34rem;
    margin: 0 0 0.5rem;
    color: var(--text-soft);
    line-height: 1.8;
}

.project-gallery-section {
    background: #28231f;
}

.project-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(0.8rem, 1.6vw, 1.5rem);
}

.project-gallery__item {
    grid-column: span 4;
    min-height: clamp(18rem, 29vw, 28rem);
}

.project-gallery__item:nth-child(1),
.project-gallery__item:nth-child(7),
.project-gallery__item:nth-child(11),
.project-gallery__item:nth-child(17) {
    grid-column: span 8;
}

.project-gallery__item:nth-child(21) {
    grid-column: 1 / -1;
    min-height: clamp(24rem, 48vw, 43rem);
}

@media (max-width: 1080px) {
    .project-gallery-hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .project-gallery__item,
    .project-gallery__item:nth-child(1),
    .project-gallery__item:nth-child(7),
    .project-gallery__item:nth-child(11),
    .project-gallery__item:nth-child(17),
    .project-gallery__item:nth-child(21) {
        grid-column: auto;
        min-height: clamp(18rem, 48vw, 30rem);
    }
}

@media (max-width: 600px) {
    .project-gallery__grid {
        grid-template-columns: 1fr;
    }

    .project-gallery__item,
    .project-gallery__item:nth-child(21) {
        min-height: min(76vw, 26rem);
    }
}

@media (max-width: 760px) {
    .site-header {
        background: linear-gradient(180deg, rgba(23, 20, 18, 0.92), rgba(23, 20, 18, 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;
    }

    .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: 88svh;
        padding-top: 6.3rem;
        padding-bottom: 2.85rem;
    }

    .hero-section::after {
        background:
            linear-gradient(180deg, rgba(15, 12, 10, 0.24) 0%, rgba(15, 12, 10, 0.52) 46%, rgba(15, 12, 10, 0.76) 100%),
            linear-gradient(90deg, rgba(15, 12, 10, 0.58), rgba(15, 12, 10, 0.24));
    }

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

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

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

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

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

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

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

    .hero-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        padding: 0.85rem 0 0;
    }

    .hero-brand__image {
        flex: 0 0 auto;
        width: 5rem;
        margin-left: 0;
    }

    .hero-brand__statement {
        width: auto;
        max-width: 10rem;
        margin: 0;
        font-size: 0.78rem;
        line-height: 1.45;
        text-align: right;
    }

    .hero-link {
        width: 100%;
        min-height: 3rem;
        padding: 0.85rem 1.1rem;
        border: 1px solid rgba(251, 247, 239, 0.14);
        background: rgba(251, 247, 239, 0.025);
        text-align: center;
        font-size: 0.66rem;
        letter-spacing: 0;
    }

    .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-title {
        font-size: 2.55rem;
        line-height: 0.96;
    }

    .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: 1.75rem;
    }

    .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;
    }

    .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;
    }
}

@media (max-width: 380px) {
    .recaptcha-box {
        transform: scale(0.9);
        margin-bottom: -0.45rem;
    }
}

@media (max-width: 340px) {
    .recaptcha-box {
        transform: scale(0.82);
        margin-bottom: -0.8rem;
    }
}

/* Premium component refinement -------------------------------------------- */

.site-header {
    box-shadow: 0 14px 42px rgba(5, 8, 8, 0.08);
    transition:
        background 320ms ease,
        box-shadow 320ms ease,
        border-color 320ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: rgba(251, 247, 239, 0.14);
    background:
        linear-gradient(180deg, rgba(23, 20, 18, 0.96), rgba(23, 20, 18, 0.86));
    box-shadow: 0 18px 52px rgba(5, 8, 8, 0.24);
}

.header-inner,
.brand-mark--header .brand-mark__image {
    transition: min-height 360ms var(--ease-premium), height 360ms var(--ease-premium);
}

.site-header.is-scrolled .header-inner {
    min-height: 4.85rem;
}

.site-header.is-scrolled .brand-mark--header .brand-mark__image {
    height: clamp(3.15rem, 4vw, 3.75rem);
}

.site-nav a {
    transition: color 220ms ease;
}

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

.language-switcher {
    box-shadow: inset 0 1px 0 rgba(251, 247, 239, 0.04);
}

.language-pill {
    transition: color 220ms ease, background 220ms ease;
}

.language-pill:hover {
    color: var(--contrast-soft);
    background: rgba(251, 247, 239, 0.045);
}

.mobile-nav-toggle {
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(251, 247, 239, 0.12);
    border-radius: var(--radius-md);
    background: rgba(251, 247, 239, 0.025);
}

.mobile-nav-toggle span {
    transition: transform 280ms var(--ease-premium), opacity 180ms ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.15rem) rotate(45deg);
}

.mobile-nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.15rem) rotate(-45deg);
}

.hero-video,
.hero-media__fallback {
    transform: scale(1.012);
}

.hero-copy h1 {
    text-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.hero-kicker {
    padding-bottom: 0.42rem;
    border-bottom: 1px solid rgba(251, 247, 239, 0.16);
}

.hero-link::after {
    width: 2.8rem;
    transition: width 320ms var(--ease-premium), background 220ms ease;
}

.hero-link:hover::after {
    width: 4rem;
}

.editorial-media__frame,
.about-sheet-hero__visual,
.about-sheet-panel__media,
.gallery-card {
    box-shadow:
        inset 0 1px 0 rgba(251, 247, 239, 0.05),
        0 24px 70px rgba(5, 8, 8, 0.25);
}

.editorial-media__frame::after,
.about-sheet-panel__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(251, 247, 239, 0.08), transparent 30%, transparent 72%, rgba(23, 20, 18, 0.28));
}

.about-sheet-hero__visual:focus-visible,
.about-sheet-panel__media-button:focus-visible,
.gallery-card:focus-visible {
    outline: 1px solid rgba(251, 247, 239, 0.72);
    outline-offset: 5px;
}

.filter-panel select,
.form-field input,
.form-field select,
.form-field textarea {
    border-bottom-color: rgba(201, 189, 177, 0.18);
    background: linear-gradient(180deg, transparent, rgba(251, 247, 239, 0.014));
    transition:
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.filter-panel select:hover,
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-bottom-color: rgba(251, 247, 239, 0.28);
    background: linear-gradient(180deg, transparent, rgba(251, 247, 239, 0.025));
}

.filter-panel select:focus,
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-bottom-color: rgba(251, 247, 239, 0.56);
    background: linear-gradient(180deg, transparent, rgba(251, 247, 239, 0.035));
    box-shadow: 0 10px 24px -18px rgba(251, 247, 239, 0.36);
}

.filter-panel select option,
.form-field select option {
    color: var(--contrast);
    background: var(--bg);
}

.form-field textarea {
    scrollbar-gutter: stable;
}

.unit-card {
    overflow: hidden;
}

.unit-card__specs > div {
    display: grid;
    gap: 0.15rem;
}

.unit-card__specs span,
.unit-card__footer span {
    color: var(--text-faint);
    font-size: 0.66rem;
    text-transform: uppercase;
}

.unit-card__footer {
    margin-top: auto;
    align-items: end;
}

.gallery-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(251, 247, 239, 0.09);
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 320ms ease, inset 320ms var(--ease-premium);
}

.gallery-card:hover::before {
    inset: 0.5rem;
    border-color: rgba(251, 247, 239, 0.2);
}

.gallery-card img {
    transition: transform 700ms var(--ease-premium), filter 420ms ease;
}

.gallery-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.04) brightness(0.9);
}

.lightbox {
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 15%, rgba(185, 157, 118, 0.12), transparent 34rem),
        rgba(12, 10, 9, 0.94);
    backdrop-filter: blur(18px) saturate(0.8);
    animation: lightboxFade 260ms ease both;
}

.lightbox__panel {
    max-height: calc(100svh - 2rem);
    overflow: auto;
    scrollbar-gutter: stable;
    border-color: rgba(251, 247, 239, 0.16);
    background:
        linear-gradient(145deg, rgba(251, 247, 239, 0.06), transparent 34%),
        rgba(23, 20, 18, 0.96);
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.52);
    animation: lightboxPanelIn 520ms var(--ease-premium) both;
}

.lightbox__panel img {
    max-height: min(72svh, 780px);
    object-fit: contain;
    background: rgba(12, 10, 9, 0.42);
}

.lightbox__meta {
    padding: 1.35rem 0.5rem 0.45rem;
}

.lightbox__meta h3 {
    margin-bottom: 0.65rem;
}

.lightbox__close {
    z-index: 3;
    display: grid;
    place-items: center;
    padding: 0;
    border-color: rgba(251, 247, 239, 0.22);
    background: rgba(23, 20, 18, 0.76);
    box-shadow: 0 12px 30px rgba(5, 8, 8, 0.28);
    backdrop-filter: blur(12px);
    transition: transform 260ms var(--ease-premium), background 220ms ease, border-color 220ms ease;
}

.lightbox__close:hover {
    transform: rotate(90deg);
    border-color: rgba(251, 247, 239, 0.42);
    background: rgba(86, 75, 66, 0.8);
}

@keyframes lightboxFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lightboxPanelIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.cta-banner {
    position: relative;
    padding: 2.75rem 0 0;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: min(10rem, 32vw);
    height: 1px;
    background: var(--warm);
}

.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 18%, rgba(185, 157, 118, 0.08), transparent 28rem),
        linear-gradient(120deg, transparent 62%, rgba(251, 247, 239, 0.018));
}

.footer-grid {
    position: relative;
}

.site-footer a {
    transition: color 220ms ease;
}

@media (max-width: 1220px) {
    .header-panel {
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        animation: headerPanelIn 320ms var(--ease-premium) both;
        backdrop-filter: blur(24px) saturate(1.08);
    }

    .site-nav a {
        padding: 0.72rem 0.35rem;
        border-bottom: 1px solid rgba(201, 189, 177, 0.08);
    }

    @keyframes headerPanelIn {
        from {
            opacity: 0;
            transform: translateY(-0.6rem) scale(0.99);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
}

@media (max-width: 760px) {
    .site-header.is-scrolled .header-inner {
        min-height: 4.55rem;
    }

    .site-header.is-scrolled .brand-mark--header .brand-mark__image {
        height: 2.7rem;
    }

    .header-panel {
        max-height: calc(100svh - 5.65rem);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
    }

    .hero-kicker {
        padding-bottom: 0.32rem;
    }

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

    .unit-card__footer {
        align-items: stretch;
    }

    .lightbox__panel {
        max-height: calc(100svh - 1.2rem);
    }

    .lightbox__panel img {
        max-height: 66svh;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video,
    .hero-media__fallback {
        transform: none;
    }

    .lightbox,
    .lightbox__panel,
    .header-panel {
        animation: none;
    }
}

/* Residence catalogue ------------------------------------------------------ */

.residence-detail-hero h1 {
    margin: 0;
}

.residence-catalogue {
    padding-top: 3.25rem;
}

.residence-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(8rem, 1fr)) repeat(2, minmax(7rem, 0.78fr)) minmax(10rem, 1.2fr);
    gap: 1rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.residence-filter {
    display: grid;
    min-width: 0;
    gap: 0.48rem;
}

.residence-filter > span:first-child {
    color: var(--text-faint);
    font-size: 0.64rem;
    font-weight: 500;
    text-transform: uppercase;
}

.residence-filter select,
.residence-filter input {
    width: 100%;
    min-width: 0;
    height: 2.8rem;
    padding: 0 0.8rem;
    border: 1px solid rgba(201, 189, 177, 0.18);
    border-radius: 4px;
    color: var(--contrast);
    background: rgba(251, 247, 239, 0.035);
    font: 400 0.8rem/1 "Outfit", sans-serif;
}

.residence-filter select {
    cursor: pointer;
}

.residence-filter select option {
    color: var(--contrast);
    background: var(--bg);
}

.residence-filter__area {
    position: relative;
    display: block;
}

.residence-filter__area input {
    padding-right: 2.7rem;
}

.residence-filter__area b {
    position: absolute;
    top: 50%;
    right: 0.8rem;
    color: var(--text-faint);
    font-size: 0.68rem;
    font-weight: 400;
    transform: translateY(-50%);
    pointer-events: none;
}

.residence-results {
    display: flex;
    min-height: 4.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--text-soft);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.residence-results__reset {
    padding: 0.4rem 0;
    border: 0;
    border-bottom: 1px solid rgba(201, 189, 177, 0.4);
    color: var(--text-soft);
    background: transparent;
    font: inherit;
    text-transform: inherit;
    cursor: pointer;
}

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

.residence-card {
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: inherit;
    background: rgba(40, 34, 29, 0.22);
    box-shadow: 0 14px 42px rgba(5, 8, 8, 0.18);
    transition: transform 280ms var(--ease-premium), border-color 220ms ease, box-shadow 280ms var(--ease-premium);
}

.residence-card:hover {
    color: inherit;
    border-color: rgba(251, 247, 239, 0.24);
    box-shadow: 0 24px 58px rgba(5, 8, 8, 0.28);
    transform: translateY(-3px);
}

.residence-card__plan {
    display: grid;
    aspect-ratio: 4 / 3;
    place-items: center;
    overflow: hidden;
    padding: clamp(0.75rem, 2vw, 1.4rem);
    background: #f8f8fa;
}

.residence-card__plan img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.residence-card__body {
    padding: 1.25rem;
}

.residence-card__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.residence-card__header h2 {
    margin: 0;
    color: var(--contrast);
    font-size: 2.25rem;
    line-height: 0.95;
}

.residence-card__header span {
    flex: 0 0 auto;
    color: var(--text-faint);
    font-size: 0.66rem;
    text-transform: uppercase;
}

.residence-card__specs,
.residence-detail__specs {
    display: grid;
    margin: 0;
}

.residence-card__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 0.5rem;
}

.residence-card__specs div {
    min-width: 0;
    padding-top: 0.8rem;
}

.residence-card__specs dt,
.residence-detail__specs dt {
    margin-bottom: 0.24rem;
    color: var(--text-faint);
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
}

.residence-card__specs dd,
.residence-detail__specs dd {
    margin: 0;
    color: var(--contrast-soft);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.12rem;
    line-height: 1.1;
}

.residence-empty {
    padding: 4rem 0;
    border-top: 1px solid var(--line);
    text-align: center;
}

.residence-empty .button {
    margin-top: 1rem;
}

.residence-back {
    display: block;
    width: fit-content;
    margin-bottom: 2.4rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(201, 189, 177, 0.4);
    color: var(--text-soft);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.residence-detail {
    padding-top: 3.5rem;
}

.residence-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(17rem, 0.7fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.residence-detail__plan {
    display: grid;
    width: 100%;
    min-height: 34rem;
    margin: 0;
    padding: clamp(1rem, 3vw, 2.5rem);
    place-items: center;
    border-radius: 6px;
    background: #f8f8fa;
}

.residence-detail__plan img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.residence-detail__summary {
    padding-top: 0.5rem;
    border-top: 1px solid var(--line-strong);
}

.residence-detail__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 2.25rem;
}

.residence-detail__specs div {
    min-width: 0;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
}

.residence-detail__specs dd {
    font-size: 1.45rem;
}

.residence-detail__summary .button {
    width: 100%;
}

.residence-schedule {
    display: grid;
    grid-template-columns: minmax(12rem, 0.4fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 6rem);
    margin-top: clamp(4rem, 8vw, 7rem);
    padding-top: clamp(2.5rem, 5vw, 4rem);
    border-top: 1px solid var(--line-strong);
}

.residence-schedule header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.residence-schedule__table-wrap {
    min-width: 0;
    overflow-x: auto;
}

.residence-schedule table {
    width: 100%;
    min-width: 32rem;
    border-collapse: collapse;
}

.residence-schedule th,
.residence-schedule td {
    padding: 0.82rem 0.65rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.residence-schedule th {
    color: var(--text-faint);
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
}

.residence-schedule td {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.residence-schedule th:first-child,
.residence-schedule td:first-child {
    width: 4rem;
}

.residence-schedule th:last-child,
.residence-schedule td:last-child {
    width: 7rem;
    text-align: right;
    white-space: nowrap;
}

.residence-schedule tfoot th,
.residence-schedule tfoot td {
    padding-top: 1.15rem;
    border-bottom-color: var(--line-strong);
    color: var(--contrast);
}

.residence-not-found {
    text-align: center;
}

.residence-not-found h1 {
    margin-bottom: 2rem;
}

@media (max-width: 1100px) {
    .residence-filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .residence-detail__layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.7fr);
        gap: 2rem;
    }

    .residence-detail__plan {
        min-height: 27rem;
    }
}

@media (max-width: 860px) {
    .residence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .residence-detail__layout,
    .residence-schedule {
        grid-template-columns: 1fr;
    }

    .residence-detail__summary {
        max-width: none;
    }

    .residence-schedule {
        gap: 1.5rem;
    }
}

@media (max-width: 620px) {
    .residence-catalogue,
    .residence-detail {
        padding-top: 2rem;
    }

    .residence-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

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

    .residence-card__plan {
        padding: 0.75rem;
    }

    .residence-detail__plan {
        min-height: 0;
        padding: 0.75rem;
    }

    .residence-detail__plan img {
        max-height: none;
    }

    .residence-detail__specs {
        gap: 0 1rem;
    }

    .residence-schedule table {
        min-width: 0;
        table-layout: fixed;
    }

    .residence-schedule th,
    .residence-schedule td {
        padding-right: 0.35rem;
        padding-left: 0.35rem;
    }

    .residence-schedule th:first-child,
    .residence-schedule td:first-child {
        width: 3rem;
    }

    .residence-schedule th:last-child,
    .residence-schedule td:last-child {
        width: 6rem;
    }

}

@media (max-width: 380px) {
    .residence-filters {
        grid-template-columns: 1fr;
    }
}

/* Homepage editorial polish ------------------------------------------------ */

.site-main > .hero-section {
    min-height: 100svh;
    padding-bottom: 0;
}

.hero-section::before {
    background-size: min(13vw, 180px) min(13vw, 180px);
    opacity: 0.055;
}

.hero-section::after {
    background:
        linear-gradient(90deg, rgba(12, 10, 9, 0.32) 0%, rgba(12, 10, 9, 0.03) 56%, rgba(12, 10, 9, 0.16) 100%),
        linear-gradient(180deg, rgba(12, 10, 9, 0.04) 0%, transparent 34%, rgba(12, 10, 9, 0.38) 100%);
}

.hero-section .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(23, 20, 18, 0.05), transparent 42%, rgba(23, 20, 18, 0.16));
}

.hero-section .hero-video,
.hero-section .hero-media__fallback {
    filter: saturate(1) contrast(1.05) brightness(1.01);
    transform: scale(1.015);
}

.hero-section .hero-content {
    min-height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(7rem, 10rem);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: end;
    padding-top: clamp(9rem, 16vh, 13rem);
    padding-bottom: clamp(6.8rem, 11vh, 8.5rem);
}

.hero-section .hero-copy {
    max-width: 73rem;
}

.hero-section .hero-kicker-row {
    margin-bottom: clamp(1.4rem, 3vh, 2.5rem);
}

.hero-section .hero-title {
    max-width: 15ch;
    margin-bottom: 1.65rem;
    font-size: clamp(3.7rem, 6vw, 6.2rem);
    font-weight: 400;
    line-height: 0.88;
    text-transform: none;
    letter-spacing: -0.025em;
}

.hero-section .hero-description {
    max-width: 33rem;
    margin-bottom: 0;
    color: rgba(251, 247, 239, 0.78);
    font-size: clamp(0.98rem, 1.3vw, 1.12rem);
    line-height: 1.7;
}

.hero-section .hero-actions {
    margin-top: clamp(2rem, 4vh, 3rem);
}

.hero-section .hero-brand {
    width: min(100%, 8.5rem);
    padding-bottom: 0.35rem;
    opacity: 0.86;
}

.hero-section .hero-brand__image {
    width: min(100%, 7rem);
}

.hero-scroll {
    position: absolute;
    right: 50%;
    bottom: 1.6rem;
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(50%);
    color: rgba(251, 247, 239, 0.58);
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: color 220ms ease;
}

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

.hero-scroll i {
    width: 1px;
    height: 2.2rem;
    overflow: hidden;
    background: rgba(251, 247, 239, 0.24);
}

.hero-scroll i::after {
    content: "";
    display: block;
    width: 100%;
    height: 45%;
    background: var(--contrast);
    animation: homeScrollCue 2.2s ease-in-out infinite;
}

@keyframes homeScrollCue {
    0% { transform: translateY(-120%); }
    55%, 100% { transform: translateY(250%); }
}

.home-intro {
    padding: clamp(7.5rem, 13vw, 12rem) 0;
    background:
        radial-gradient(circle at 88% 20%, rgba(185, 157, 118, 0.08), transparent 28rem),
        linear-gradient(180deg, #171412, #1a1613);
}

.home-intro .home-manifesto {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(4rem, 10vw, 10rem);
    align-items: start;
}

.home-intro .home-manifesto__intro {
    max-width: 38rem;
}

.home-intro .home-manifesto__intro h2 {
    max-width: 11ch;
    font-size: clamp(3.6rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 0.92;
    text-transform: none;
    letter-spacing: -0.025em;
}

.home-intro .home-manifesto__lead {
    max-width: 43rem;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.85;
}

.home-intro .home-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    gap: 1.4rem;
    margin-top: clamp(3rem, 5vw, 4.5rem);
}

.home-intro .home-facts article {
    padding-top: 1.4rem;
}

.home-intro .home-manifesto__types {
    display: grid;
    gap: 1.15rem;
    margin: clamp(2rem, 4vw, 3rem) 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
}

.home-intro .home-manifesto__types-label {
    display: block;
    color: var(--text-faint);
    font-size: 0.66rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-intro .home-manifesto__advantages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-intro .home-manifesto__advantages li {
    display: grid;
    min-height: 6.75rem;
    align-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(251, 247, 239, 0.045), transparent 68%),
        rgba(40, 34, 29, 0.2);
    transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.home-intro .home-manifesto__advantages li:hover {
    border-color: var(--line-strong);
    background:
        linear-gradient(145deg, rgba(251, 247, 239, 0.07), transparent 68%),
        rgba(102, 90, 79, 0.22);
    transform: translateY(-2px);
}

.home-intro .home-manifesto__advantages .home-manifesto__advantage-index {
    display: block;
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.home-intro .home-manifesto__advantages strong {
    display: block;
    font-weight: 500;
    line-height: 1.4;
}

.home-showcase {
    position: relative;
    padding: clamp(1rem, 2.5vw, 2rem) 0 clamp(6rem, 10vw, 9rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 5%, rgba(185, 157, 118, 0.1), transparent 30rem),
        #0e0c0b;
}

.home-showcase__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.58fr);
    gap: clamp(3rem, 9vw, 9rem);
    align-items: end;
    margin-bottom: clamp(5rem, 9vw, 8rem);
}

.home-showcase__intro .section-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -1rem;
}

.home-showcase__intro h2 {
    max-width: 13ch;
    margin-bottom: 0;
    font-size: clamp(3.7rem, 6.3vw, 6.4rem);
    font-weight: 400;
    line-height: 0.9;
    text-transform: none;
    letter-spacing: -0.03em;
}

.home-showcase__intro p {
    margin: 0 0 0.35rem;
    color: var(--text-soft);
    line-height: 1.8;
}

.home-showcase__chapters {
    display: grid;
    gap: clamp(1rem, 2.5vw, 2rem);
}

.story-panel {
    position: relative;
    width: min(100% - clamp(1rem, 3vw, 3rem), 1500px);
    min-height: clamp(42rem, 86svh, 62rem);
    margin: 0 auto;
    overflow: hidden;
    isolation: isolate;
    background: #2b2622;
}

.story-panel > img {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.06) brightness(1.01);
    transition: transform 1.4s cubic-bezier(0.2, 0.75, 0.25, 1), filter 1.2s ease;
}

.story-panel:hover > img {
    transform: scale(1.025);
    filter: saturate(1.05) contrast(1.04) brightness(1.03);
}

.story-panel__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(9, 8, 7, 0.4) 0%, rgba(9, 8, 7, 0.14) 36%, transparent 70%),
        linear-gradient(180deg, rgba(9, 8, 7, 0.03), transparent 48%, rgba(9, 8, 7, 0.18));
}

.story-panel--reverse .story-panel__shade {
    background:
        linear-gradient(270deg, rgba(9, 8, 7, 0.4) 0%, rgba(9, 8, 7, 0.14) 36%, transparent 70%),
        linear-gradient(180deg, rgba(9, 8, 7, 0.03), transparent 48%, rgba(9, 8, 7, 0.18));
}

.story-panel__content {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: end;
    min-height: inherit;
    padding-top: clamp(7rem, 14vh, 11rem);
    padding-bottom: clamp(4rem, 10vh, 7rem);
}

.story-panel__content > div {
    max-width: 39rem;
}

.story-panel--reverse .story-panel__content {
    grid-template-columns: minmax(0, 1fr) 3rem;
}

.story-panel--reverse .story-panel__number {
    order: 2;
}

.story-panel--reverse .story-panel__content > div {
    margin-left: auto;
    text-align: right;
}

.story-panel__number {
    align-self: start;
    color: rgba(251, 247, 239, 0.54);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
}

.story-panel__content .section-eyebrow {
    color: rgba(251, 247, 239, 0.66);
}

.story-panel__content h3 {
    max-width: 10ch;
    margin-bottom: 1.4rem;
    font-size: clamp(3.7rem, 6.3vw, 6.6rem);
    font-weight: 400;
    line-height: 0.9;
    text-transform: none;
    letter-spacing: -0.03em;
}

.story-panel--reverse .story-panel__content h3 {
    margin-left: auto;
}

.story-panel__content p {
    max-width: 34rem;
    margin-bottom: 0;
    color: rgba(251, 247, 239, 0.76);
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.75;
}

.home-showcase__action {
    display: flex;
    justify-content: flex-end;
    padding-top: clamp(3rem, 6vw, 5rem);
}

.editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(251, 247, 239, 0.25);
    color: var(--contrast);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: border-color 220ms ease, color 220ms ease;
}

.editorial-link span {
    font-size: 1rem;
    transition: transform 220ms ease;
}

.editorial-link:hover {
    border-color: var(--accent);
    color: var(--warm);
}

.editorial-link:hover span {
    transform: translate(0.16rem, -0.16rem);
}

.home-ownership-section {
    padding: clamp(7rem, 12vw, 11rem) 0 clamp(5rem, 8vw, 7rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(185, 157, 118, 0.11), transparent 28rem),
        linear-gradient(132deg, rgba(86, 75, 66, 0.2), transparent 44%),
        #14110f;
}

.home-ownership {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
    gap: clamp(4rem, 9vw, 9rem);
    align-items: center;
}

.home-ownership__copy {
    max-width: 46rem;
}

.home-ownership__copy h2 {
    max-width: 10.5ch;
    margin-bottom: 0;
    font-size: clamp(3.9rem, 6.25vw, 6.5rem);
    font-weight: 400;
    line-height: 0.89;
    text-transform: none;
    letter-spacing: -0.03em;
}

.home-ownership__lead {
    max-width: 41rem;
    margin-top: 2.1rem;
    color: var(--text-soft);
    font-size: clamp(0.98rem, 1.25vw, 1.1rem);
    line-height: 1.8;
}

.home-ownership__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(2.75rem, 5vw, 4rem);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-ownership__pillars article {
    min-width: 0;
    padding: 1.55rem 1.5rem 1.7rem 0;
}

.home-ownership__pillars article + article {
    padding-right: 0;
    padding-left: 1.5rem;
    border-left: 1px solid var(--line);
}

.home-ownership__pillars article > span {
    display: block;
    margin-bottom: 1.35rem;
    color: var(--warm);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
}

.home-ownership__pillars h3 {
    margin-bottom: 0.7rem;
    color: var(--contrast-soft);
    font-family: "Outfit", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.home-ownership__pillars p {
    color: rgba(201, 189, 177, 0.7);
    font-size: 0.8rem;
    line-height: 1.68;
}

.home-ownership__copy .editorial-link {
    margin-top: 2.2rem;
}

.home-ownership__media {
    position: relative;
    min-height: clamp(40rem, 58vw, 49rem);
    overflow: hidden;
    border: 1px solid rgba(251, 247, 239, 0.13);
    background: #25201b;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.home-ownership__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 8, 7, 0.03) 45%, rgba(9, 8, 7, 0.52)),
        linear-gradient(90deg, rgba(9, 8, 7, 0.2), transparent 48%);
    pointer-events: none;
}

.home-ownership__media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02) contrast(1.06) brightness(1.02);
    transition: transform 900ms var(--ease-premium), filter 600ms ease;
}

.home-ownership__media:hover img {
    transform: scale(1.025);
    filter: saturate(1.05) contrast(1.04) brightness(1.04);
}

.home-ownership__media figcaption {
    position: absolute;
    right: clamp(1.4rem, 4vw, 3rem);
    bottom: clamp(1.4rem, 4vw, 3rem);
    left: clamp(1.4rem, 4vw, 3rem);
    z-index: 1;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(251, 247, 239, 0.25);
}

.home-ownership__media figcaption span,
.home-ownership__media figcaption strong {
    display: block;
}

.home-ownership__media figcaption span {
    margin-bottom: 0.55rem;
    color: rgba(251, 247, 239, 0.56);
    font-size: 0.63rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.home-ownership__media figcaption strong {
    color: rgba(251, 247, 239, 0.88);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-ownership__note {
    margin-top: clamp(2.5rem, 5vw, 4.25rem);
    padding-top: 1.1rem;
    border-top: 1px solid rgba(251, 247, 239, 0.1);
    color: rgba(201, 189, 177, 0.46);
    font-size: 0.68rem;
    line-height: 1.6;
}

.home-release-section {
    padding: clamp(8rem, 13vw, 12rem) 0;
    background:
        radial-gradient(circle at 76% 20%, rgba(185, 157, 118, 0.12), transparent 30rem),
        linear-gradient(130deg, #0c0a09, #15110e);
}

.home-release {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.68fr);
    gap: clamp(4rem, 12vw, 12rem);
    align-items: start;
}

.home-release__copy h2 {
    max-width: 11ch;
    font-size: clamp(4rem, 6.4vw, 6.5rem);
    font-weight: 400;
    line-height: 0.88;
    text-transform: none;
    letter-spacing: -0.035em;
}

.home-release__copy p {
    max-width: 39rem;
    margin: 2rem 0 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.82;
}

.home-release__details {
    border-top: 1px solid rgba(251, 247, 239, 0.22);
}

.home-release__details article {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 2rem;
    padding: 1.65rem 0;
    border-bottom: 1px solid var(--line);
}

.home-release__details article span {
    color: var(--text-faint);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home-release__details article strong {
    font-size: 0.94rem;
    line-height: 1.55;
}

.home-release__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (max-width: 980px) {
    .hero-section .hero-content,
    .home-intro .home-manifesto,
    .home-showcase__intro,
    .home-ownership,
    .home-release {
        grid-template-columns: 1fr;
    }

    .hero-section .hero-content {
        gap: 2.5rem;
    }

    .hero-section .hero-brand {
        position: absolute;
        right: 1rem;
        bottom: 7.4rem;
        width: 5.5rem;
    }

    .home-showcase__intro .section-eyebrow {
        margin-bottom: 0;
    }

    .home-showcase__intro p {
        max-width: 42rem;
    }

    .home-ownership {
        gap: 4rem;
    }

    .home-ownership__copy {
        max-width: 47rem;
    }

    .home-ownership__media {
        min-height: min(68svh, 45rem);
    }

    .home-release__details {
        max-width: 44rem;
    }
}

@media (max-width: 700px) {
    .hero-section .hero-content {
        min-height: 100svh;
        padding-top: 8.5rem;
        padding-bottom: 7rem;
    }

    .hero-section .hero-title {
        max-width: 11ch;
        font-size: clamp(3.2rem, 14vw, 4.75rem);
    }

    .hero-section .hero-description {
        max-width: 25rem;
    }

    .hero-section .hero-brand {
        display: none;
    }

    .hero-scroll {
        right: 1rem;
        transform: none;
    }

    .hero-scroll span {
        display: none;
    }

    .home-intro .home-manifesto {
        gap: 3rem;
    }

    .home-intro .home-manifesto__intro h2,
    .home-showcase__intro h2,
    .home-ownership__copy h2,
    .home-release__copy h2 {
        max-width: none;
        font-size: clamp(3.15rem, 14vw, 4.45rem);
    }

    .home-intro .home-facts {
        grid-template-columns: 1fr;
    }

    .home-intro .home-facts {
        gap: 0;
    }

    .home-intro .home-manifesto__advantages {
        grid-template-columns: 1fr;
    }

    .home-showcase__intro {
        gap: 2rem;
    }

    .story-panel {
        width: calc(100% - 1rem);
        min-height: 78svh;
    }

    .story-panel__content,
    .story-panel--reverse .story-panel__content {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding-bottom: 3rem;
    }

    .story-panel__number,
    .story-panel--reverse .story-panel__number {
        order: 0;
    }

    .story-panel--reverse .story-panel__content > div {
        margin-left: 0;
        text-align: left;
    }

    .story-panel__content h3,
    .story-panel--reverse .story-panel__content h3 {
        max-width: 10ch;
        margin-left: 0;
        font-size: clamp(3.3rem, 15vw, 5rem);
    }

    .story-panel--reverse .story-panel__shade {
        background:
            linear-gradient(90deg, rgba(9, 8, 7, 0.9) 0%, rgba(9, 8, 7, 0.5) 45%, rgba(9, 8, 7, 0.12) 84%),
            linear-gradient(180deg, rgba(9, 8, 7, 0.14), transparent 40%, rgba(9, 8, 7, 0.74));
    }

    .home-showcase__action {
        justify-content: flex-start;
    }

    .home-ownership-section {
        padding: 5.5rem 0 4rem;
    }

    .home-ownership {
        gap: 3.25rem;
    }

    .home-ownership__pillars {
        grid-template-columns: 1fr;
    }

    .home-ownership__pillars article,
    .home-ownership__pillars article + article {
        padding: 1.4rem 0 1.55rem;
        border-left: 0;
    }

    .home-ownership__pillars article + article {
        border-top: 1px solid var(--line);
    }

    .home-ownership__media {
        min-height: 31rem;
    }

    .home-release__details article {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .home-release__actions {
        flex-direction: column;
    }
}

/* Production interaction and shared-layout polish ------------------------- */

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 5000;
    padding: 0.8rem 1rem;
    background: var(--contrast);
    color: var(--bg);
    font-size: 0.75rem;
    font-weight: 600;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: none;
}

.site-header {
    --page-progress: 0;
    transition:
        transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1),
        background-color 280ms ease,
        border-color 280ms ease;
    will-change: transform;
}

.site-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--warm));
    transform: scaleX(var(--page-progress));
    transform-origin: left;
    opacity: 0.72;
    pointer-events: none;
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 2px));
}

.site-header.is-scrolled {
    background: rgba(40, 35, 31, 0.84);
    border-bottom-color: rgba(251, 247, 239, 0.12);
}

.site-header .header-inner {
    min-height: 5.3rem;
}

.site-header .brand-mark--header .brand-mark__image {
    height: clamp(3.2rem, 4vw, 4rem);
}

.site-nav a > span {
    display: none;
}

.site-nav a {
    letter-spacing: 0.035em;
}

.header-panel__masthead,
.header-panel__footer,
.header-backdrop {
    display: none;
}

.mobile-nav-toggle {
    position: relative;
    z-index: 1010;
    width: 2.8rem;
    height: 2.8rem;
    align-items: center;
    justify-content: center;
    gap: 0.34rem;
    border: 1px solid rgba(251, 247, 239, 0.16);
    background: rgba(42, 37, 33, 0.34);
    transition: border-color 220ms ease, background 220ms ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle.is-open {
    border-color: rgba(251, 247, 239, 0.38);
    background: rgba(251, 247, 239, 0.06);
}

.mobile-nav-toggle span {
    position: absolute;
    width: 1.35rem;
    transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1), opacity 180ms ease;
}

.mobile-nav-toggle span:first-child {
    transform: translateY(-0.33rem);
}

.mobile-nav-toggle span:last-child {
    transform: translateY(0.33rem);
}

.mobile-nav-toggle.is-open span:first-child {
    transform: rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-open span:last-child {
    transform: rotate(-45deg);
}

body.is-nav-open {
    overflow: hidden;
}

.hero-section .hero-media {
    --hero-shift: 0px;
}

.hero-section .hero-video,
.hero-section .hero-media__fallback {
    transform: scale(1.045) translate3d(0, var(--hero-shift), 0);
    will-change: transform;
}

.hero-section .hero-title {
    max-width: 12.5ch;
}

.hero-section .hero-link span {
    margin-left: 0.3rem;
    font-size: 0.9rem;
    transition: transform 220ms ease;
}

.hero-section .hero-link:hover span {
    transform: translateY(0.2rem);
}

.hero-media-toggle {
    position: absolute;
    bottom: 1.55rem;
    left: max(1rem, calc((100vw - var(--container)) / 2));
    z-index: 4;
    width: 2.6rem;
    height: 2.6rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(251, 247, 239, 0.22);
    border-radius: 50%;
    background: rgba(42, 37, 33, 0.34);
    color: var(--contrast);
    backdrop-filter: blur(12px);
    transition: background 220ms ease, border-color 220ms ease;
}

.hero-media-toggle:hover {
    border-color: rgba(251, 247, 239, 0.54);
    background: rgba(42, 37, 33, 0.56);
}

.hero-media-toggle__pause {
    display: flex;
    gap: 0.22rem;
}

.hero-media-toggle__pause i {
    width: 1px;
    height: 0.7rem;
    background: currentColor;
}

.hero-media-toggle__play {
    display: none;
    width: 0;
    height: 0;
    margin-left: 0.12rem;
    border-top: 0.38rem solid transparent;
    border-bottom: 0.38rem solid transparent;
    border-left: 0.56rem solid currentColor;
}

.hero-media-toggle.is-paused .hero-media-toggle__pause {
    display: none;
}

.hero-media-toggle.is-paused .hero-media-toggle__play {
    display: block;
}

.story-panel {
    --story-shift: 0px;
}

.story-panel > img {
    top: -4%;
    bottom: auto;
    height: 108%;
    transform: scale(1.035) translate3d(0, var(--story-shift), 0);
    will-change: transform;
}

.story-panel:hover > img {
    transform: scale(1.055) translate3d(0, var(--story-shift), 0);
}

.js .reveal-on-scroll {
    transition-delay: var(--reveal-delay, 0ms);
}

.home-release-section {
    isolation: isolate;
    min-height: min(58rem, 92svh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(11, 9, 8, 0.82), rgba(11, 9, 8, 0.24) 48%, rgba(11, 9, 8, 0.4)),
        linear-gradient(180deg, rgba(11, 9, 8, 0.08), rgba(11, 9, 8, 0.5)),
        url("/images/projects/altamare-residence/altamare-residence-exterior-hero-twilight.jpg") center / cover no-repeat;
}

.section.home-release-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("/images/projects/altamare-residence/altamare-residence-exterior-hero-twilight.jpg");
    background-position: center;
    background-size: cover;
    filter: saturate(0.8) brightness(0.82);
    transform: scale(1.025);
    display: none;
}

.section.home-release-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(11, 9, 8, 0.68), rgba(11, 9, 8, 0.16) 48%, rgba(11, 9, 8, 0.28)),
        linear-gradient(180deg, rgba(11, 9, 8, 0.06), rgba(11, 9, 8, 0.36));
    display: none;
}

.home-release {
    position: relative;
    z-index: 1;
}

.home-release__details {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(251, 247, 239, 0.15);
    background: rgba(40, 34, 29, 0.34);
    backdrop-filter: blur(18px);
}

.home-release__actions .button {
    flex: 1 1 10rem;
}

.site-footer {
    padding: clamp(6rem, 10vw, 9rem) 0 1.75rem;
    border-top: 1px solid rgba(251, 247, 239, 0.1);
    background:
        radial-gradient(circle at 18% 0%, rgba(185, 157, 118, 0.1), transparent 28rem),
        #24201c;
}

.footer-lead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(3rem, 9vw, 9rem);
    align-items: end;
    padding-bottom: clamp(5rem, 8vw, 7rem);
}

.footer-lead__identity img {
    width: min(31rem, 78vw);
    height: auto;
}

.footer-lead__identity p {
    max-width: 34rem;
    margin: 1.8rem 0 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.75;
}

.footer-lead__action {
    margin-bottom: 0.15rem;
}

.footer-directory {
    display: grid;
    grid-template-columns: minmax(15rem, 1.05fr) minmax(21rem, 1fr) minmax(14rem, 0.65fr);
    gap: clamp(3rem, 7vw, 7rem);
    padding: clamp(3rem, 5vw, 4.5rem) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.footer-label {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--text-faint);
    font-size: 0.63rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-project strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    font-weight: 400;
    line-height: 1;
}

.footer-project p,
.footer-contact p {
    margin: 0.8rem 0 1.25rem;
    color: var(--text-faint);
    font-size: 0.82rem;
}

.footer-project > a,
.footer-nav a,
.footer-contact a {
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.6;
}

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

.footer-nav a,
.footer-contact a {
    display: block;
    width: fit-content;
    padding: 0.18rem 0;
}

.footer-contact {
    font-style: normal;
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding-top: 1.65rem;
    color: var(--text-faint);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-bottom span:nth-child(2) {
    text-align: center;
}

@media (max-width: 1220px) {
    .site-header .brand-mark--header,
    .site-header .mobile-nav-toggle {
        position: relative;
        z-index: 1020;
    }

    .site-header .header-panel {
        position: fixed;
        inset: 0;
        z-index: 1010;
        min-height: 100dvh;
        max-height: 100dvh;
        display: flex;
        padding: clamp(7.5rem, 13vh, 9rem) max(1rem, calc((100vw - var(--container)) / 2)) 2rem;
        border: 0;
        border-radius: 0;
        overflow-y: auto;
        background:
            radial-gradient(circle at 78% 22%, rgba(185, 157, 118, 0.12), transparent 25rem),
            linear-gradient(135deg, #171310, #0d0b0a 72%);
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-1.25rem);
        transition:
            opacity 320ms ease,
            visibility 320ms ease,
            transform 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
    }

    .site-header .header-panel.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .header-panel__masthead {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--line);
        color: var(--text-faint);
        font-size: 0.64rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .header-panel__masthead strong {
        color: var(--contrast-soft);
        font-weight: 500;
    }

    .site-header .site-nav {
        gap: 0;
        margin: auto 0;
    }

    .site-header .site-nav a {
        display: grid;
        grid-template-columns: 2.3rem minmax(0, 1fr);
        align-items: baseline;
        padding: 0.5rem 0;
        border: 0;
        color: var(--contrast);
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.7rem, 7vw, 5.6rem);
        font-weight: 400;
        line-height: 0.95;
        text-transform: none;
        letter-spacing: -0.025em;
    }

    .site-header .site-nav a > span {
        display: block;
        color: var(--text-faint);
        font-family: "Outfit", sans-serif;
        font-size: 0.62rem;
        font-weight: 500;
        letter-spacing: 0.08em;
    }

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

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

    .site-header .header-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding-top: 1.25rem;
        border-top: 1px solid var(--line);
    }

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

    .header-panel__footer {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        color: var(--text-faint);
        font-size: 0.66rem;
    }

    .header-panel__footer a {
        color: var(--text-soft);
    }

    .header-contact-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .header-contact-cluster {
        display: grid;
        gap: 0.6rem;
        width: 100%;
        padding: 0.35rem;
        border-radius: var(--radius-md);
    }

    .header-download-link {
        justify-content: center;
        width: 100%;
        padding: 0.8rem 0.9rem;
        border-radius: 2px;
    }

    .header-contact-links a {
        padding: 0.8rem 0.9rem;
        text-align: center;
    }

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

    .footer-contact {
        grid-column: 2;
    }
}

@media (max-width: 760px) {
    .site-header .header-inner {
        min-height: 4.5rem;
    }

    .site-header .brand-mark--header .brand-mark__image {
        height: 2.7rem;
    }

    .site-header .header-panel {
        padding-top: 6.2rem;
        padding-bottom: 1.25rem;
    }

    .site-header .site-nav a {
        grid-template-columns: 1.8rem minmax(0, 1fr);
        padding: 0.35rem 0;
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .site-header .header-actions {
        grid-template-columns: 1fr;
    }

    .site-header .language-switcher {
        width: 100%;
    }

    .header-contact-links {
        grid-template-columns: 1fr;
    }

    .hero-section .hero-title {
        max-width: 10ch;
    }

    .hero-media-toggle {
        bottom: 1.25rem;
    }

    .home-release-section {
        min-height: auto;
    }

    .home-release__details {
        padding: 1.25rem;
    }

    .home-release__actions {
        flex-direction: column;
    }

    .home-release__actions .button {
        flex: 0 0 auto;
    }

    .footer-lead,
    .footer-directory,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-lead {
        align-items: start;
    }

    .footer-directory {
        gap: 3.25rem;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        gap: 0.8rem;
    }

    .footer-bottom span:nth-child(2) {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header {
        transform: none !important;
    }

    .hero-section .hero-video,
    .hero-section .hero-media__fallback,
    .story-panel > img,
    .story-panel:hover > img {
        transform: none;
    }

    .hero-scroll i::after {
        animation: none;
    }
}

/* Compact residence detail ------------------------------------------------ */

.residence-detail-page {
    --detail-page-top: clamp(6.35rem, 10.5vh, 7rem);
    --detail-page-bottom: clamp(1rem, 2vh, 1.5rem);
    min-height: 100svh;
    padding: var(--detail-page-top) 0 var(--detail-page-bottom);
    background:
        radial-gradient(circle at 13% 18%, rgba(185, 157, 118, 0.1), transparent 29rem),
        radial-gradient(circle at 88% 74%, rgba(185, 157, 118, 0.045), transparent 28rem),
        linear-gradient(180deg, #181410 0%, #15120f 58%, #17130f 100%);
}

.residence-detail-page__container {
    display: grid;
    width: min(92vw, 93.75rem);
    height: calc(100svh - var(--detail-page-top) - var(--detail-page-bottom));
    grid-template-rows: auto minmax(0, 1fr);
}

.residence-detail__heading {
    display: flex;
    min-height: clamp(4.8rem, 9vh, 6rem);
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 0 clamp(0.8rem, 1.8vh, 1.15rem);
    border-bottom: 1px solid var(--line-strong);
}

.residence-detail__heading-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.5rem);
    padding-bottom: 0.2rem;
}

.residence-detail__heading .residence-back {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    border: 0;
    letter-spacing: 0.055em;
}

.residence-detail__heading .residence-back span {
    color: var(--gold);
    font-size: 1rem;
    transition: transform 180ms ease;
}

.residence-detail__heading .residence-back:hover span {
    transform: translateX(-0.22rem);
}

.residence-detail__heading .section-eyebrow {
    margin: 0;
    color: var(--contrast-soft);
}

.residence-detail__identity {
    display: flex;
    align-items: baseline;
    gap: clamp(0.8rem, 1.6vw, 1.5rem);
    white-space: nowrap;
}

.residence-detail__identity h1 {
    margin: 0;
    color: var(--contrast);
    font-size: clamp(4rem, 5.8vw, 6.4rem);
    line-height: 0.72;
    letter-spacing: -0.04em;
}

.residence-detail__identity > span {
    color: var(--text-faint);
    font-size: 0.63rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.residence-detail__layout {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1.64fr) minmax(28rem, 0.82fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: stretch;
    padding-top: clamp(1rem, 2vh, 1.35rem);
}

.residence-detail__plan {
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: clamp(0.9rem, 1.7vw, 1.5rem) clamp(0.9rem, 1.7vw, 1.5rem) 0;
    border: 1px solid rgba(28, 24, 21, 0.1);
    border-radius: 3px;
    background: #f6f5f7;
    box-shadow: 0 28px 70px rgba(5, 4, 3, 0.24);
}

.residence-detail__plan img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: contain;
}

.residence-detail__plan figcaption {
    display: flex;
    min-height: 2.35rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(25, 21, 18, 0.09);
    color: rgba(25, 21, 18, 0.55);
    font-size: 0.58rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.065em;
}

.residence-detail__summary {
    display: grid;
    min-width: 0;
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 0;
    border-top: 0;
}

.residence-detail__specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid var(--line-strong);
    border-left: 1px solid var(--line);
}

.residence-detail__specs div {
    min-width: 0;
    padding: clamp(0.65rem, 1.35vh, 0.9rem) 0.75rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.residence-detail__specs div:last-child {
    grid-column: span 2;
}

.residence-detail__specs dt {
    margin-bottom: 0.28rem;
    font-size: 0.54rem;
    letter-spacing: 0.035em;
}

.residence-detail__specs dd {
    overflow: hidden;
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.residence-detail__summary > .button {
    width: 100%;
    min-height: 2.9rem;
    margin-top: clamp(0.7rem, 1.5vh, 1rem);
}

.residence-detail__summary .residence-schedule {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    margin: clamp(0.7rem, 1.5vh, 1rem) 0 0;
    padding: 0;
    border-top: 1px solid var(--line-strong);
}

.residence-detail__summary .residence-schedule header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(0.55rem, 1.1vh, 0.8rem) 0;
}

.residence-detail__summary .residence-schedule .section-eyebrow {
    margin-bottom: 0.28rem;
    font-size: 0.54rem;
}

.residence-detail__summary .residence-schedule h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 0.95;
}

.residence-schedule__total {
    display: grid;
    flex: 0 0 auto;
    gap: 0.12rem;
    color: var(--text-faint);
    font-size: 0.52rem;
    font-weight: 500;
    text-align: right;
    text-transform: uppercase;
}

.residence-schedule__total strong {
    color: var(--contrast);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: none;
}

.residence-detail__summary .residence-schedule__table-wrap {
    min-height: 0;
    overflow: hidden;
}

.residence-detail__summary .residence-schedule table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
}

.residence-detail__summary .residence-schedule th,
.residence-detail__summary .residence-schedule td {
    padding: clamp(0.28rem, 0.62vh, 0.44rem) 0.4rem;
}

.residence-detail__summary .residence-schedule th {
    font-size: 0.53rem;
}

.residence-detail__summary .residence-schedule td {
    overflow: hidden;
    font-size: clamp(0.69rem, 0.75vw, 0.78rem);
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.residence-detail__summary .residence-schedule th:first-child,
.residence-detail__summary .residence-schedule td:first-child {
    width: 2.5rem;
}

.residence-detail__summary .residence-schedule th:last-child,
.residence-detail__summary .residence-schedule td:last-child {
    width: 6rem;
}

@media (min-width: 1181px) and (min-height: 720px) {
    .site-shell:has(.residence-detail-page) {
        height: 100svh;
        overflow: hidden;
    }

    .site-main:has(.residence-detail-page) + .site-footer {
        display: none;
    }
}

@media (max-width: 1180px), (max-height: 719px) {
    .residence-detail-page {
        min-height: auto;
    }

    .residence-detail-page__container {
        height: auto;
    }

    .residence-detail__layout {
        min-height: 36rem;
    }
}

@media (max-width: 980px) {
    .residence-detail-page {
        --detail-page-top: 7.4rem;
        padding-bottom: 3.5rem;
    }

    .residence-detail__heading {
        min-height: 0;
    }

    .residence-detail__layout {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .residence-detail__plan {
        height: auto;
        min-height: 25rem;
        aspect-ratio: 4 / 3;
    }

    .residence-detail__summary {
        grid-template-rows: auto auto auto;
    }

    .residence-detail__summary .residence-schedule__table-wrap {
        overflow: visible;
    }
}

@media (max-width: 620px) {
    .residence-detail-page {
        --detail-page-top: 6.25rem;
        padding-bottom: 2.5rem;
    }

    .residence-detail-page__container {
        width: min(100% - 2rem, 93.75rem);
    }

    .residence-detail__heading {
        display: grid;
        gap: 1.25rem;
    }

    .residence-detail__heading-nav {
        justify-content: space-between;
    }

    .residence-detail__identity {
        justify-content: space-between;
        gap: 0.65rem;
    }

    .residence-detail__identity h1 {
        font-size: clamp(3.75rem, 20vw, 5rem);
    }

    .residence-detail__identity > span:first-child {
        display: none;
    }

    .residence-detail__layout {
        gap: 1.5rem;
        padding-top: 1rem;
    }

    .residence-detail__plan {
        min-height: 0;
        padding: 0.7rem 0.7rem 0;
    }

    .residence-detail__plan figcaption {
        min-height: 2rem;
    }

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

    .residence-detail__specs div:last-child {
        grid-column: span 2;
    }

    .residence-detail__summary .residence-schedule header {
        align-items: center;
    }

    .residence-detail__summary .residence-schedule th:first-child,
    .residence-detail__summary .residence-schedule td:first-child {
        width: 2.25rem;
    }

    .residence-detail__summary .residence-schedule th:last-child,
    .residence-detail__summary .residence-schedule td:last-child {
        width: 5.5rem;
    }
}

/* Location page ---------------------------------------------------------- */

.location-page {
    --location-gutter: clamp(1.25rem, 4vw, 4rem);
    overflow: clip;
    background: #26221e;
}

.location-page h1,
.location-page h2,
.location-page h3 {
    text-transform: none;
}

.location-page__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(251, 247, 239, 0.7);
    font-size: 0.66rem;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.location-page__eyebrow::before {
    content: "";
    width: 2.25rem;
    height: 1px;
    background: var(--warm);
}

.location-page-hero {
    position: relative;
    display: grid;
    min-height: clamp(48rem, 94svh, 63rem);
    overflow: hidden;
    background: #2a2521;
}

.location-page-hero__image,
.location-page-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.location-page-hero__image {
    object-fit: cover;
    object-position: center 48%;
    filter: saturate(1.03) contrast(1.06) brightness(1.02);
    transform: scale(1.015);
}

.location-page-hero__veil {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 8, 7, 0.48) 0%, rgba(10, 8, 7, 0.24) 38%, rgba(10, 8, 7, 0.04) 72%, rgba(10, 8, 7, 0.12) 100%),
        linear-gradient(180deg, rgba(10, 8, 7, 0.14) 0%, transparent 25%, transparent 62%, rgba(10, 8, 7, 0.42) 100%);
}

.location-page-hero__content {
    position: relative;
    z-index: 2;
    align-self: center;
    padding-top: clamp(9rem, 15vh, 12rem);
    padding-bottom: clamp(8rem, 14vh, 10rem);
}

.location-page-hero__content h1 {
    max-width: 10.5ch;
    margin: 1.35rem 0 1.5rem;
    font-size: clamp(4.8rem, 8vw, 8.2rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.035em;
}

.location-page-hero__content p {
    max-width: 39rem;
    color: rgba(251, 247, 239, 0.78);
    font-size: clamp(0.96rem, 1.35vw, 1.12rem);
    line-height: 1.72;
}

.location-page-hero__actions,
.location-page__closing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    margin-top: 2rem;
}

.location-page__text-link {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    min-height: 3.2rem;
    padding: 0 0.75rem;
    color: rgba(251, 247, 239, 0.74);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(251, 247, 239, 0.26);
    transition: color 220ms ease, border-color 220ms ease;
}

.location-page__text-link span {
    font-size: 0.95rem;
    transition: transform 240ms var(--ease-premium);
}

.location-page__text-link:hover {
    color: var(--contrast);
    border-color: var(--warm);
}

.location-page__text-link:hover span {
    transform: translate(0.15rem, -0.15rem);
}

.location-page-hero__index {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(251, 247, 239, 0.22);
}

.location-page-hero__index > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 5.5rem;
    padding: 1.2rem clamp(1rem, 2.4vw, 2.2rem);
    border-right: 1px solid rgba(251, 247, 239, 0.15);
    background: rgba(38, 34, 30, 0.24);
    backdrop-filter: blur(12px);
}

.location-page-hero__index > div:last-child {
    border-right: 0;
}

.location-page-hero__index span {
    color: var(--warm);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
}

.location-page-hero__index strong {
    color: rgba(251, 247, 239, 0.78);
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.location-page__connections {
    padding: clamp(5.5rem, 9vw, 8.5rem) 0 clamp(4.75rem, 8vw, 7rem);
    background:
        radial-gradient(circle at 92% 12%, rgba(185, 157, 118, 0.1), transparent 28rem),
        #171412;
}

.location-page__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.72fr);
    gap: clamp(3rem, 9vw, 8rem);
    align-items: end;
}

.location-page__intro h2,
.location-page__context-copy h2,
.location-page__closing h2 {
    margin: 1.2rem 0 0;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.location-page__intro h2 {
    max-width: 10ch;
    font-size: clamp(4rem, 6.5vw, 6.8rem);
    line-height: 0.86;
}

.location-page__intro > p {
    max-width: 30rem;
    padding-bottom: 0.45rem;
    color: rgba(201, 189, 177, 0.78);
    font-size: 1rem;
    line-height: 1.75;
}

.location-page__proximity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(3.5rem, 6vw, 5.5rem);
    border-top: 1px solid rgba(251, 247, 239, 0.16);
    border-bottom: 1px solid rgba(251, 247, 239, 0.16);
}

.location-proximity {
    min-width: 0;
    padding: clamp(1.75rem, 3vw, 2.75rem);
    border-right: 1px solid rgba(251, 247, 239, 0.12);
    transition: background 260ms ease;
}

.location-proximity:last-child {
    border-right: 0;
}

.location-proximity:hover {
    background: rgba(251, 247, 239, 0.025);
}

.location-proximity__value {
    display: block;
    min-height: 2.6rem;
    color: var(--warm);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1;
}

.location-proximity h3 {
    margin: 1.55rem 0 0.55rem;
    color: var(--contrast);
    font-family: "Outfit", sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.location-proximity p {
    color: var(--text-faint);
    font-size: 0.76rem;
    line-height: 1.55;
}

.location-page__travel-note {
    max-width: 56rem;
    margin-top: 1.1rem;
    color: rgba(201, 189, 177, 0.48);
    font-size: 0.68rem;
    line-height: 1.55;
}

.location-page__context {
    padding: clamp(5.5rem, 9vw, 8.5rem) 0;
    border-top: 1px solid rgba(251, 247, 239, 0.1);
    background:
        linear-gradient(115deg, rgba(86, 75, 66, 0.14), transparent 38%),
        #26221e;
}

.location-page__context-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.82fr);
    gap: clamp(3.5rem, 8vw, 7.5rem);
    align-items: start;
}

.location-map {
    position: relative;
    min-height: 43rem;
    overflow: hidden;
    border: 1px solid rgba(251, 247, 239, 0.14);
    background: #28231f;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.location-map::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(251, 247, 239, 0.025);
}

.location-map iframe {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 43rem;
    filter: grayscale(0.84) sepia(0.16) saturate(0.55) contrast(1.04) brightness(0.75);
}

.location-map__label {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    padding: 1.2rem 1.35rem;
    border: 1px solid rgba(251, 247, 239, 0.16);
    background: rgba(38, 34, 30, 0.76);
    backdrop-filter: blur(16px);
}

.location-map__label span,
.location-map__label strong {
    display: block;
}

.location-map__label span {
    margin-bottom: 0.45rem;
    color: var(--text-faint);
    font-size: 0.61rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.location-map__label strong {
    color: var(--contrast-soft);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 400;
}

.location-page__context-copy {
    padding-top: 0.4rem;
}

.location-page__context-copy h2 {
    max-width: 9ch;
    font-size: clamp(3.5rem, 5.4vw, 5.65rem);
    line-height: 0.88;
}

.location-context-list {
    margin-top: clamp(2.6rem, 5vw, 4.5rem);
}

.location-context-list article {
    display: grid;
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1.15rem;
    padding: 1.55rem 0 1.65rem;
    border-top: 1px solid rgba(251, 247, 239, 0.12);
}

.location-context-list article:last-child {
    border-bottom: 1px solid rgba(251, 247, 239, 0.12);
}

.location-context-list article > span {
    padding-top: 0.15rem;
    color: var(--warm);
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
}

.location-context-list h3 {
    margin: 0 0 0.65rem;
    color: var(--contrast);
    font-family: "Outfit", sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.location-context-list p {
    color: rgba(201, 189, 177, 0.72);
    font-size: 0.86rem;
    line-height: 1.7;
}

.location-page__closing {
    position: relative;
    display: flex;
    min-height: clamp(35rem, 66svh, 48rem);
    align-items: flex-end;
    overflow: hidden;
    border-top: 1px solid rgba(251, 247, 239, 0.12);
    background: #2a2521;
}

.location-page__closing-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(9, 8, 7, 0.72), rgba(9, 8, 7, 0.32) 54%, rgba(9, 8, 7, 0.18)),
        linear-gradient(180deg, rgba(9, 8, 7, 0.1), rgba(9, 8, 7, 0.68)),
        url("/images/projects/altamare-residence/altamare-residence-site-aerial-context.jpg") center 48% / cover no-repeat;
    filter: saturate(0.72);
    transform: scale(1.015);
}

.location-page__closing-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.62fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: end;
    padding-top: clamp(8rem, 15vw, 13rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.location-page__closing h2 {
    max-width: 11ch;
    font-size: clamp(3.5rem, 6.3vw, 6.7rem);
    line-height: 0.86;
}

.location-page__closing-copy {
    padding-bottom: 0.25rem;
}

.location-page__closing-copy p {
    color: rgba(251, 247, 239, 0.72);
    font-size: 0.95rem;
    line-height: 1.72;
}

@media (max-width: 1020px) {
    .location-page__intro,
    .location-page__context-grid,
    .location-page__closing-content {
        grid-template-columns: 1fr;
    }

    .location-page__intro {
        gap: 2rem;
    }

    .location-page__intro > p {
        max-width: 43rem;
    }

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

    .location-proximity:nth-child(2) {
        border-right: 0;
    }

    .location-proximity:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(251, 247, 239, 0.12);
    }

    .location-map,
    .location-map iframe {
        min-height: 34rem;
    }

    .location-page__context-copy {
        max-width: 47rem;
    }

    .location-page__closing-content {
        gap: 2.5rem;
    }

    .location-page__closing-copy {
        max-width: 36rem;
    }
}

@media (max-width: 640px) {
    .location-page-hero {
        min-height: 49rem;
    }

    .location-page-hero__image {
        object-position: 61% center;
    }

    .location-page-hero__veil {
        background:
            linear-gradient(90deg, rgba(10, 8, 7, 0.87), rgba(10, 8, 7, 0.42)),
            linear-gradient(180deg, rgba(10, 8, 7, 0.54), rgba(10, 8, 7, 0.06) 34%, rgba(10, 8, 7, 0.9) 78%, rgba(10, 8, 7, 0.98));
    }

    .location-page-hero__content {
        align-self: start;
        padding-top: 9.25rem;
        padding-bottom: 8.5rem;
    }

    .location-page-hero__content h1 {
        max-width: 9ch;
        margin-top: 1.15rem;
        font-size: clamp(3.5rem, 16.5vw, 4.45rem);
        line-height: 0.86;
    }

    .location-page-hero__content p {
        max-width: 31rem;
        font-size: 0.9rem;
        line-height: 1.62;
    }

    .location-page-hero__actions {
        align-items: flex-start;
        margin-top: 1.4rem;
    }

    .location-page-hero__actions .button {
        min-width: 0;
    }

    .location-page__text-link {
        min-height: 2.8rem;
        padding-inline: 0.25rem;
    }

    .location-page-hero__index > div {
        display: block;
        min-height: 4.5rem;
        padding: 0.9rem 0.55rem;
    }

    .location-page-hero__index span {
        display: block;
        margin-bottom: 0.35rem;
        font-size: 0.9rem;
    }

    .location-page-hero__index strong {
        display: block;
        font-size: 0.56rem;
        line-height: 1.35;
        letter-spacing: 0.045em;
    }

    .location-page__connections,
    .location-page__context {
        padding: 4.5rem 0;
    }

    .location-page__intro h2,
    .location-page__context-copy h2,
    .location-page__closing h2 {
        font-size: clamp(3.05rem, 14vw, 4rem);
        line-height: 0.88;
    }

    .location-page__intro > p {
        font-size: 0.9rem;
        line-height: 1.68;
    }

    .location-page__proximity-grid {
        margin-top: 2.8rem;
    }

    .location-proximity {
        min-height: 10.25rem;
        padding: 1.35rem 1rem;
    }

    .location-proximity__value {
        min-height: 2.25rem;
        font-size: 1.35rem;
    }

    .location-proximity h3 {
        margin-top: 1rem;
        font-size: 0.66rem;
    }

    .location-proximity p {
        font-size: 0.68rem;
    }

    .location-page__travel-note {
        margin-top: 0.9rem;
        font-size: 0.63rem;
    }

    .location-page__context-grid {
        gap: 3.5rem;
    }

    .location-map,
    .location-map iframe {
        min-height: 26rem;
    }

    .location-map__label {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.9rem 1rem;
    }

    .location-map__label strong {
        font-size: 1.2rem;
    }

    .location-context-list {
        margin-top: 2.35rem;
    }

    .location-context-list article {
        grid-template-columns: 1.5rem minmax(0, 1fr);
        gap: 0.75rem;
        padding: 1.35rem 0;
    }

    .location-context-list p {
        font-size: 0.81rem;
        line-height: 1.65;
    }

    .location-page__closing {
        min-height: 42rem;
    }

    .location-page__closing-image {
        background:
            linear-gradient(90deg, rgba(9, 8, 7, 0.58), rgba(9, 8, 7, 0.2)),
            linear-gradient(180deg, rgba(9, 8, 7, 0.12), rgba(9, 8, 7, 0.76) 68%),
            url("/images/projects/altamare-residence/altamare-residence-site-aerial-context.jpg") 62% center / cover no-repeat;
    }

    .location-page__closing-content {
        padding-top: 8rem;
        padding-bottom: 3.75rem;
    }

    .location-page__closing-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .location-page__closing-actions .button {
        width: 100%;
    }
}

/* Project facts: compact editorial cards ----------------------------------- */

.home-showcase {
    padding: clamp(4rem, 7vw, 6rem) 0 clamp(4.5rem, 7vw, 6.5rem);
}

.home-showcase__chapters {
    --story-image-height: clamp(13rem, 16vw, 15rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.5rem);
    width: min(100% - 3rem, 1380px);
    margin: 0 auto;
}

.story-panel,
.story-panel.story-panel--reverse {
    display: grid;
    grid-template-rows: var(--story-image-height) minmax(0, 1fr);
    width: auto;
    min-height: 0;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--surface-soft);
    box-shadow: 0 22px 60px rgba(5, 8, 8, 0.2);
    transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.story-panel:hover {
    border-color: rgba(185, 157, 118, 0.55);
    box-shadow: 0 28px 72px rgba(5, 8, 8, 0.28);
    transform: translateY(-0.35rem);
}

.story-panel__image {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    grid-row: 1;
    z-index: 0;
    cursor: zoom-in;
    background: transparent;
}

.story-panel__image img {
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.04) brightness(0.94);
    transform: none;
    transition: transform 420ms ease, filter 420ms ease;
}

.story-panel__image:hover img,
.story-panel__image:focus-visible img {
    filter: saturate(1.04) contrast(1.03) brightness(1);
    transform: scale(1.035);
}

.story-panel__image:focus-visible {
    outline: 1px solid rgba(251, 247, 239, 0.72);
    outline-offset: -0.35rem;
}

.story-panel__shade,
.story-panel--reverse .story-panel__shade {
    inset: 0 0 auto;
    z-index: 1;
    height: var(--story-image-height);
    pointer-events: none;
    background: linear-gradient(180deg, rgba(9, 8, 7, 0.04), rgba(9, 8, 7, 0.42));
}

.story-panel__content,
.story-panel--reverse .story-panel__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 1.5rem;
    background:
        linear-gradient(145deg, rgba(251, 247, 239, 0.045), transparent 58%),
        rgba(40, 34, 29, 0.2);
}

.story-panel--reverse .story-panel__number {
    order: 0;
}

.story-panel--reverse .story-panel__content > div {
    margin-left: 0;
    text-align: left;
}

.story-panel__content > div {
    max-width: none;
}

.story-panel__number {
    align-self: start;
    color: var(--accent);
    font-family: "Outfit", sans-serif;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
}

.story-panel__number::after {
    content: "";
    display: block;
    width: 1.8rem;
    height: 1px;
    background: rgba(185, 157, 118, 0.6);
}

.story-panel__content .section-eyebrow {
    margin-bottom: 0.7rem;
    color: var(--text-faint);
}

.story-panel__content h3,
.story-panel--reverse .story-panel__content h3 {
    max-width: none;
    margin: 0 0 0.8rem;
    font-size: clamp(1.8rem, 2.6vw, 2.75rem);
    line-height: 0.98;
    letter-spacing: -0.025em;
}

.story-panel__content p {
    max-width: none;
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(0.86rem, 1vw, 0.96rem);
    line-height: 1.68;
}

.home-showcase__action {
    padding-top: 2rem;
}

@media (max-width: 980px) {
    .home-showcase__chapters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-showcase__chapters .story-panel:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 0.5rem);
        justify-self: center;
    }
}

@media (max-width: 700px) {
    .home-showcase__chapters {
        grid-template-columns: 1fr;
        width: min(100% - 1rem, 34rem);
    }

    .home-showcase__chapters .story-panel:last-child {
        grid-column: auto;
        width: auto;
    }

    .story-panel,
    .story-panel.story-panel--reverse {
        --story-image-height: 12rem;
        grid-template-rows: var(--story-image-height) minmax(0, 1fr);
    }

    .story-panel__shade,
    .story-panel--reverse .story-panel__shade {
        height: var(--story-image-height);
    }
}

/* Homepage gallery preview ----------------------------------------------- */

.home-gallery-section {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(185, 157, 118, 0.1), transparent 28rem),
        linear-gradient(180deg, rgba(40, 34, 29, 0.22), rgba(12, 10, 9, 0.14));
}

.home-gallery__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
    gap: clamp(2rem, 8vw, 8rem);
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home-gallery__header h2 {
    max-width: 12ch;
    margin-bottom: 0;
    font-size: clamp(3.6rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
    text-transform: none;
    letter-spacing: -0.035em;
}

.home-gallery__header p {
    max-width: 31rem;
    margin-bottom: 0.15rem;
    color: var(--text-soft);
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
    line-height: 1.8;
}

.home-gallery__grid .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.5rem);
}

.home-gallery__grid .gallery-card {
    height: clamp(15rem, 22vw, 20rem);
    min-height: 0;
}

.home-gallery__grid .gallery-card img {
    min-height: 0;
}

.home-gallery__action {
    display: flex;
    justify-content: flex-end;
    margin-top: clamp(2rem, 4vw, 3.5rem);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(251, 247, 239, 0.22);
    border-radius: 50%;
    background: rgba(23, 20, 18, 0.78);
    color: var(--contrast);
    font-size: 1.45rem;
    line-height: 1;
    transform: translateY(-50%);
    box-shadow: 0 12px 30px rgba(5, 8, 8, 0.28);
    backdrop-filter: blur(12px);
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.lightbox__nav--previous {
    left: 1.35rem;
}

.lightbox__nav--next {
    right: 1.35rem;
}

.lightbox__nav:hover {
    border-color: rgba(251, 247, 239, 0.48);
    background: rgba(86, 75, 66, 0.88);
}

.lightbox__nav--previous:hover {
    transform: translate(-0.12rem, -50%);
}

.lightbox__nav--next:hover {
    transform: translate(0.12rem, -50%);
}

.lightbox__panel:focus-visible {
    outline: 1px solid rgba(251, 247, 239, 0.5);
    outline-offset: 0.35rem;
}

@media (max-width: 980px) {
    .home-gallery__header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .home-gallery__header p {
        max-width: 42rem;
    }

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

@media (max-width: 700px) {
    .home-gallery__header h2 {
        max-width: none;
        font-size: clamp(3.15rem, 14vw, 4.45rem);
    }

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

    .home-gallery__grid .gallery-card {
        height: min(78vw, 21rem);
    }

    .home-gallery__action {
        justify-content: flex-start;
    }

    .lightbox__nav {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 1.2rem;
    }

    .lightbox__nav--previous {
        left: 0.9rem;
    }

    .lightbox__nav--next {
        right: 0.9rem;
    }
}

/* Location page: clearer hierarchy and stronger imagery ------------------ */

.location-page {
    background: #171412;
}

.location-page-hero {
    min-height: clamp(42rem, 82svh, 58rem);
}

.location-page-hero__image {
    object-position: center 43%;
    filter: saturate(0.98) contrast(1.05) brightness(0.9);
}

.location-page-hero__veil {
    background:
        linear-gradient(90deg, rgba(10, 8, 7, 0.78) 0%, rgba(10, 8, 7, 0.52) 42%, rgba(10, 8, 7, 0.12) 78%, rgba(10, 8, 7, 0.2) 100%),
        linear-gradient(180deg, rgba(10, 8, 7, 0.2), transparent 28%, transparent 58%, rgba(10, 8, 7, 0.72));
}

.location-page-hero__content {
    max-width: 1400px;
    padding-top: clamp(8rem, 13vh, 10rem);
    padding-bottom: clamp(7rem, 11vh, 8.5rem);
}

.location-page-hero__content h1 {
    max-width: 11ch;
    margin-top: 1.1rem;
    margin-bottom: 1.35rem;
    font-size: clamp(4.2rem, 7vw, 7.2rem);
    line-height: 0.86;
}

.location-page-hero__content p {
    max-width: 42rem;
    color: rgba(251, 247, 239, 0.86);
    font-size: clamp(1rem, 1.2vw, 1.08rem);
    line-height: 1.78;
}

.location-page-hero__index {
    border-top-color: rgba(251, 247, 239, 0.28);
}

.location-page-hero__index > div {
    min-height: 5rem;
    background: rgba(23, 20, 18, 0.54);
}

.location-page-hero__index strong {
    color: rgba(251, 247, 239, 0.9);
    font-size: 0.7rem;
}

.location-page__connections {
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(4.5rem, 7vw, 6.5rem);
    background:
        radial-gradient(circle at 88% 8%, rgba(185, 157, 118, 0.12), transparent 26rem),
        #171412;
}

.location-page__intro {
    gap: clamp(2.5rem, 7vw, 6rem);
}

.location-page__intro h2 {
    max-width: 11ch;
    font-size: clamp(3.6rem, 5.8vw, 6rem);
    line-height: 0.9;
}

.location-page__intro > p {
    max-width: 34rem;
    color: rgba(215, 206, 195, 0.86);
    font-size: 1.02rem;
    line-height: 1.82;
}

.location-page__proximity-grid {
    margin-top: clamp(3rem, 5vw, 4.5rem);
    background: rgba(251, 247, 239, 0.018);
}

.location-proximity {
    min-height: 11.5rem;
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
}

.location-proximity__value {
    min-height: 2.9rem;
    color: var(--contrast);
    font-size: clamp(1.35rem, 2.2vw, 1.8rem);
    line-height: 1.05;
}

.location-proximity h3 {
    margin-top: 1.35rem;
    color: var(--warm);
}

.location-proximity p {
    color: rgba(215, 206, 195, 0.76);
    font-size: 0.8rem;
}

.location-page__travel-note {
    margin-top: 1.25rem;
    color: rgba(215, 206, 195, 0.58);
    font-size: 0.72rem;
}

.location-page__visuals {
    padding: clamp(5rem, 9vw, 8rem) 0;
    border-top: 1px solid rgba(251, 247, 239, 0.1);
    background:
        linear-gradient(135deg, rgba(86, 75, 66, 0.18), transparent 42%),
        #211d1a;
}

.location-page__visuals-head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.72fr);
    gap: clamp(2.5rem, 8vw, 7rem);
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.location-page__visuals-head h2 {
    max-width: 10ch;
    margin: 1.15rem 0 0;
    font-size: clamp(3.8rem, 6vw, 6.3rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.03em;
}

.location-page__visuals-head > p {
    max-width: 33rem;
    margin-bottom: 0.15rem;
    color: rgba(215, 206, 195, 0.86);
    font-size: 1rem;
    line-height: 1.82;
}

.location-page__visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

.location-photo {
    position: relative;
    min-height: clamp(24rem, 38vw, 34rem);
    overflow: hidden;
    border: 1px solid rgba(251, 247, 239, 0.14);
    border-radius: var(--radius-lg);
    background: #2a2521;
    box-shadow: 0 24px 70px rgba(5, 8, 8, 0.24);
}

.location-photo--wide {
    min-height: clamp(28rem, 43vw, 38rem);
}

.location-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 8, 7, 0.02) 30%, rgba(10, 8, 7, 0.8) 100%);
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.98) contrast(1.04) brightness(0.92);
    transition: transform 700ms var(--ease-premium), filter 420ms ease;
}

.location-photo--wide img {
    object-position: center 52%;
}

.location-photo:hover img {
    filter: saturate(1.04) contrast(1.04) brightness(1);
    transform: scale(1.035);
}

.location-photo figcaption {
    position: absolute;
    right: clamp(1rem, 2.2vw, 1.8rem);
    bottom: clamp(1rem, 2.2vw, 1.8rem);
    left: clamp(1rem, 2.2vw, 1.8rem);
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: end;
}

.location-photo figcaption > span {
    color: var(--warm);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
}

.location-photo figcaption strong,
.location-photo figcaption small {
    display: block;
}

.location-photo figcaption strong {
    color: var(--contrast);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.location-photo figcaption small {
    margin-top: 0.45rem;
    color: rgba(251, 247, 239, 0.72);
    font-size: 0.78rem;
    line-height: 1.5;
}

.location-page__context {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background:
        linear-gradient(115deg, rgba(86, 75, 66, 0.12), transparent 38%),
        #26221e;
}

.location-page__context-grid {
    gap: clamp(3rem, 7vw, 6rem);
}

.location-map {
    min-height: 39rem;
    border-color: rgba(251, 247, 239, 0.18);
}

.location-map iframe {
    min-height: 39rem;
    filter: grayscale(0.78) sepia(0.13) saturate(0.66) contrast(1.04) brightness(0.8);
}

.location-page__context-copy h2 {
    max-width: 10ch;
    font-size: clamp(3.5rem, 5.1vw, 5.4rem);
    line-height: 0.9;
}

.location-context-list {
    margin-top: clamp(2.3rem, 4vw, 3.75rem);
}

.location-context-list article {
    padding: 1.65rem 0 1.75rem;
}

.location-context-list h3 {
    margin-bottom: 0.55rem;
    color: var(--warm);
}

.location-context-list p {
    max-width: 35rem;
    color: rgba(215, 206, 195, 0.84);
    font-size: 0.94rem;
    line-height: 1.78;
}

.location-page__closing-image {
    background:
        linear-gradient(90deg, rgba(9, 8, 7, 0.76), rgba(9, 8, 7, 0.34) 54%, rgba(9, 8, 7, 0.18)),
        linear-gradient(180deg, rgba(9, 8, 7, 0.12), rgba(9, 8, 7, 0.78)),
        url("/images/projects/altamare-residence/altamare-residence-arrival-night-view-clean.png") center 52% / cover no-repeat;
    filter: saturate(0.84);
}

@media (max-width: 1020px) {
    .location-page__visuals-head {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-page__visuals-head > p {
        max-width: 43rem;
    }

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

    .location-photo--wide {
        grid-column: 1 / -1;
        min-height: 31rem;
    }

    .location-photo:not(.location-photo--wide) {
        min-height: 25rem;
    }
}

@media (max-width: 640px) {
    .location-page-hero {
        min-height: 46rem;
    }

    .location-page-hero__content {
        padding-top: 8.5rem;
        padding-bottom: 8rem;
    }

    .location-page-hero__content h1 {
        max-width: 10ch;
        font-size: clamp(3.4rem, 15vw, 4.45rem);
    }

    .location-page__visuals {
        padding: 4.5rem 0;
    }

    .location-page__visuals-head h2 {
        max-width: none;
        font-size: clamp(3.15rem, 14vw, 4.35rem);
    }

    .location-page__visual-grid {
        grid-template-columns: 1fr;
    }

    .location-photo--wide,
    .location-photo:not(.location-photo--wide) {
        grid-column: auto;
        min-height: min(76vw, 23rem);
    }

    .location-photo figcaption strong {
        font-size: 0.68rem;
    }

    .location-photo figcaption small {
        font-size: 0.72rem;
    }

    .location-page__context {
        padding: 4.5rem 0;
    }

    .location-map,
    .location-map iframe {
        min-height: 27rem;
    }

    .location-page__context-copy h2 {
        font-size: clamp(3.05rem, 14vw, 4.1rem);
    }

    .location-context-list p {
        font-size: 0.88rem;
    }
}

/* Location page: reference-driven redesign -------------------------------- */
.location-rebuild { overflow: clip; background: var(--bg); }
.location-rebuild__hero { position: relative; min-height: min(800px, calc(100svh - 5.6rem)); display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; color: var(--contrast); }
.location-rebuild__hero-image,
.location-rebuild__hero-overlay { position: absolute; inset: 0; }
.location-rebuild__hero-image { z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.location-rebuild__hero-overlay { z-index: -1; background: linear-gradient(90deg, rgba(20,17,15,.9), rgba(20,17,15,.48) 43%, rgba(20,17,15,.12)), linear-gradient(0deg, rgba(20,17,15,.92), rgba(20,17,15,.08) 38%, rgba(20,17,15,.24)); }
.location-rebuild__hero-content { width: var(--container); padding-top: 8rem; padding-bottom: 4rem; }
.location-rebuild__eyebrow { display: inline-flex; align-items: center; gap: .7rem; color: var(--warm); font-size: .68rem; font-weight: 600; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.location-rebuild__eyebrow::before { display: inline-block; width: 2.1rem; height: 1px; background: currentColor; content: ""; opacity: .72; }
.location-rebuild__hero-content h1 { max-width: 14.5ch; margin: 1.1rem 0 1.2rem; color: var(--contrast); font-family: "Cormorant Garamond", serif; font-size: clamp(3.6rem, 6.8vw, 6.4rem); font-weight: 400; letter-spacing: -.045em; line-height: .86; }
.location-rebuild__hero-content p { max-width: 35rem; margin: 0; color: var(--contrast-soft); font-size: clamp(1rem, 1.3vw, 1.22rem); line-height: 1.65; }
.location-rebuild__hero-actions,
.location-rebuild__closing-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.35rem; margin-top: 2.3rem; }
.location-rebuild__inline-link,
.location-rebuild__map-link { display: inline-flex; align-items: center; gap: .65rem; color: var(--contrast); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.location-rebuild__inline-link span,
.location-rebuild__map-link span { color: var(--warm); font-size: 1rem; transition: transform 180ms ease; }
.location-rebuild__inline-link:hover span,
.location-rebuild__map-link:hover span { transform: translate(2px, -2px); }
.location-rebuild__hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(251,247,239,.28); padding-top: 1rem; padding-bottom: 1.25rem; }
.location-rebuild__hero-facts > div { display: flex; flex-direction: column; gap: .25rem; min-height: 3.2rem; padding-right: 1.5rem; }
.location-rebuild__hero-facts > div + div { border-left: 1px solid rgba(251,247,239,.22); padding-left: 1.5rem; }
.location-rebuild__hero-facts strong { color: var(--contrast); font-family: "Cormorant Garamond", serif; font-size: 1.75rem; font-weight: 500; line-height: 1; }
.location-rebuild__hero-facts span { color: var(--contrast-soft); font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; }
.location-rebuild__why,
.location-rebuild__distances,
.location-rebuild__experiences,
.location-rebuild__map-section { position: relative; padding: clamp(5.5rem, 10vw, 9rem) 0; }
.location-rebuild__why { background: linear-gradient(135deg, rgba(102,90,79,.36), rgba(33,29,26,.98) 58%); }
.location-rebuild__section-heading { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(18rem,.72fr); align-items: end; gap: clamp(2rem,8vw,8rem); margin-bottom: 4rem; }
.location-rebuild__section-heading--compact { margin-bottom: 3rem; }
.location-rebuild__section-heading h2,
.location-rebuild__map-copy h2,
.location-rebuild__closing h2 { max-width: 13ch; margin: 1.2rem 0 0; color: var(--contrast); font-family: "Cormorant Garamond", serif; font-size: clamp(2.9rem,5.6vw,5.3rem); font-weight: 400; letter-spacing: -.04em; line-height: .9; }
.location-rebuild__section-heading > p,
.location-rebuild__map-copy > p,
.location-rebuild__closing-content > p { max-width: 34rem; margin: 0 0 .25rem; color: var(--text-soft); font-size: 1rem; line-height: 1.75; }
.location-rebuild__why-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); align-items: stretch; gap: clamp(2rem,7vw,7rem); }
.location-rebuild__why-image { position: relative; min-height: 35rem; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface-soft); }
.location-rebuild__why-image img { width: 100%; height: 100%; min-height: 35rem; display: block; object-fit: cover; }
.location-rebuild__why-image::after { position: absolute; inset: auto 0 0; height: 45%; background: linear-gradient(0deg, rgba(18,16,14,.84), transparent); content: ""; }
.location-rebuild__why-image figcaption { position: absolute; z-index: 1; right: 1.5rem; bottom: 1.35rem; left: 1.5rem; display: flex; align-items: center; gap: 1rem; color: var(--contrast); }
.location-rebuild__why-image figcaption span { color: var(--warm); font-size: .72rem; letter-spacing: .1em; }
.location-rebuild__why-image figcaption strong { font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }
.location-rebuild__why-copy { display: flex; flex-direction: column; justify-content: center; }
.location-rebuild__lead { max-width: 33rem; margin: 0 0 2.8rem; color: var(--contrast); font-family: "Cormorant Garamond", serif; font-size: clamp(1.8rem,2.7vw,2.65rem); line-height: 1.03; }
.location-rebuild__why-points { border-top: 1px solid var(--line); }
.location-rebuild__why-points article { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.location-rebuild__why-points article > span,
.location-rebuild__experience-top > span:first-child { color: var(--warm); font-size: .7rem; letter-spacing: .1em; }
.location-rebuild__why-points h3 { margin: 0 0 .45rem; color: var(--contrast); font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.location-rebuild__why-points p { max-width: 28rem; margin: 0; color: var(--text-soft); font-size: .88rem; line-height: 1.65; }
.location-rebuild__distances { background: #1a1715; }
.location-rebuild__distance-grid { display: grid; grid-template-columns: minmax(0,1.16fr) minmax(20rem,.84fr); gap: 1rem; }
.location-rebuild__distance-card { padding: clamp(1.4rem,3vw,2.6rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(102,90,79,.18); }
.location-rebuild__card-heading { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; align-items: start; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.location-rebuild__card-heading > span { color: var(--warm); font-size: .7rem; letter-spacing: .1em; }
.location-rebuild__card-heading .location-rebuild__eyebrow { margin-bottom: .65rem; }
.location-rebuild__card-heading h3 { margin: 0; color: var(--contrast); font-family: "Cormorant Garamond", serif; font-size: clamp(2rem,3vw,3rem); font-weight: 400; line-height: .95; }
.location-rebuild__table-wrap { overflow-x: auto; }
.location-rebuild table { width: 100%; border-collapse: collapse; color: var(--text-soft); font-size: .88rem; }
.location-rebuild th { padding: 1.1rem .25rem; color: var(--text-faint); font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-align: left; text-transform: uppercase; }
.location-rebuild td { padding: 1rem .25rem; border-top: 1px solid var(--line); vertical-align: top; line-height: 1.45; }
.location-rebuild td:last-child,
.location-rebuild th:last-child { width: 9.5rem; color: var(--contrast); text-align: right; }
.location-rebuild td small { color: var(--text-faint); font-size: .74rem; }
.location-rebuild__airport-list { display: grid; gap: 0; margin-top: 1.25rem; }
.location-rebuild__airport-list > div { display: grid; grid-template-columns: 5.5rem 1fr auto; gap: 1rem; align-items: center; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.location-rebuild__airport-list strong { color: var(--contrast); font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 500; }
.location-rebuild__airport-list span { color: var(--contrast); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.location-rebuild__airport-list small { color: var(--text-faint); font-size: .72rem; white-space: nowrap; }
.location-rebuild__table-note { margin: 1.5rem 0 0; color: var(--text-faint); font-size: .78rem; line-height: 1.65; }
.location-rebuild__experiences { background: linear-gradient(180deg, var(--bg), rgba(102,90,79,.2)); }
.location-rebuild__experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.location-rebuild__experience-grid article { min-height: 22rem; padding: clamp(1.4rem,3vw,2.3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(102,90,79,.14); transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.location-rebuild__experience-grid article:hover { border-color: var(--line-strong); background: rgba(102,90,79,.28); transform: translateY(-4px); }
.location-rebuild__experience-top { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.location-rebuild__experience-top > span:last-child { color: var(--warm); font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-align: right; text-transform: uppercase; }
.location-rebuild__experience-grid h3 { max-width: 11ch; margin: 2rem 0 1.7rem; color: var(--contrast); font-family: "Cormorant Garamond", serif; font-size: clamp(2rem,3.2vw,3.2rem); font-weight: 400; letter-spacing: -.03em; line-height: .92; }
.location-rebuild__experience-grid ul { display: grid; gap: .65rem; margin: 0; padding: 0; list-style: none; }
.location-rebuild__experience-grid li { padding-left: 1rem; border-left: 1px solid var(--accent); color: var(--text-soft); font-size: .85rem; line-height: 1.45; }
.location-rebuild__map-section { padding-top: clamp(4.5rem,8vw,7rem); background: #1a1715; }
.location-rebuild__map-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(18rem,.9fr); align-items: center; gap: clamp(2rem,8vw,8rem); }
.location-rebuild__map-frame { position: relative; min-height: 32rem; overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius-lg); background: #2b2723; box-shadow: var(--shadow); }
.location-rebuild__map-frame iframe { display: block; width: 100%; min-height: 32rem; border: 0; filter: saturate(.7) sepia(.12) contrast(.96); }
.location-rebuild__map-pin { position: absolute; right: 1.25rem; bottom: 1.25rem; display: flex; flex-direction: column; gap: .28rem; max-width: 14rem; padding: 1rem 1.1rem; border: 1px solid rgba(251,247,239,.2); border-radius: var(--radius-md); background: rgba(33,29,26,.9); backdrop-filter: blur(12px); }
.location-rebuild__map-pin span,
.location-rebuild__map-pin small { color: var(--text-faint); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.location-rebuild__map-pin strong { color: var(--contrast); font-family: "Cormorant Garamond", serif; font-size: 1.45rem; font-weight: 500; }
.location-rebuild__map-copy h2 { max-width: 11ch; }
.location-rebuild__map-copy > p { margin-top: 1.8rem; }
.location-rebuild__map-link { margin-top: 2rem; color: var(--warm); }
.location-rebuild__closing { position: relative; min-height: 35rem; display: flex; align-items: center; isolation: isolate; color: var(--contrast); }
.location-rebuild__closing-media { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(20,17,15,.9), rgba(20,17,15,.54)), url("/images/projects/altamare-residence/altamare-residence-arrival-night-view-clean.png") center / cover no-repeat; }
.location-rebuild__closing::after { position: absolute; z-index: -1; inset: 0; border-top: 1px solid rgba(251,247,239,.15); border-bottom: 1px solid rgba(251,247,239,.15); content: ""; }
.location-rebuild__closing-content { width: var(--container); padding-top: 6rem; padding-bottom: 6rem; }
.location-rebuild__closing h2 { max-width: 11ch; margin-bottom: 1.4rem; }
.location-rebuild__closing-content > p { max-width: 33rem; color: var(--contrast-soft); }

@media (max-width: 900px) {
    .location-rebuild__hero-content { padding-top: 7rem; padding-bottom: 3rem; }
    .location-rebuild__section-heading,
    .location-rebuild__why-grid,
    .location-rebuild__distance-grid,
    .location-rebuild__map-grid { grid-template-columns: 1fr; }
    .location-rebuild__section-heading { align-items: start; gap: 1.5rem; }
    .location-rebuild__section-heading h2,
    .location-rebuild__map-copy h2 { max-width: 15ch; }
    .location-rebuild__why-image,
    .location-rebuild__why-image img { min-height: min(32rem,72vw); }
    .location-rebuild__map-grid { gap: 3rem; }
}

@media (max-width: 640px) {
    .location-rebuild__hero { min-height: min(43rem, calc(100svh - 4.5rem)); }
    .location-rebuild__hero-image { object-position: 58% center; }
    .location-rebuild__hero-overlay { background: linear-gradient(90deg, rgba(20,17,15,.84), rgba(20,17,15,.3)), linear-gradient(0deg, rgba(20,17,15,.96), rgba(20,17,15,.08) 56%, rgba(20,17,15,.28)); }
    .location-rebuild__hero-content { padding-top: 6.5rem; padding-bottom: 2.5rem; }
    .location-rebuild__hero-content h1 { max-width: 14.5ch; font-size: clamp(3.2rem,14vw,5rem); }
    .location-rebuild__hero-actions,
    .location-rebuild__closing-actions { align-items: flex-start; flex-direction: column; gap: 1.15rem; }
    .location-rebuild__hero-facts { grid-template-columns: 1fr; gap: .9rem; padding-bottom: 1.25rem; }
    .location-rebuild__hero-facts > div,
    .location-rebuild__hero-facts > div + div { min-height: auto; padding: 0; border: 0; }
    .location-rebuild__hero-facts > div + div { padding-top: .9rem; border-top: 1px solid rgba(251,247,239,.18); }
    .location-rebuild__section-heading h2,
    .location-rebuild__map-copy h2,
    .location-rebuild__closing h2 { font-size: clamp(2.8rem,14vw,4.4rem); }
    .location-rebuild__why,
    .location-rebuild__distances,
    .location-rebuild__experiences,
    .location-rebuild__map-section { padding: 5rem 0; }
    .location-rebuild__section-heading { margin-bottom: 2.5rem; }
    .location-rebuild__why-image,
    .location-rebuild__why-image img { min-height: 22rem; }
    .location-rebuild__lead { margin-bottom: 2rem; font-size: 2rem; }
    .location-rebuild__distance-card { padding: 1.25rem; }
    .location-rebuild td:last-child,
    .location-rebuild th:last-child { width: 7.5rem; }
    .location-rebuild__airport-list > div { grid-template-columns: 4.6rem 1fr; gap: .7rem; }
    .location-rebuild__airport-list small { grid-column: 2; margin-top: -.45rem; }
    .location-rebuild__experience-grid { grid-template-columns: 1fr; }
    .location-rebuild__experience-grid article { min-height: 0; }
    .location-rebuild__map-frame,
    .location-rebuild__map-frame iframe { min-height: 24rem; }
    .location-rebuild__map-pin { right: .75rem; bottom: .75rem; }
    .location-rebuild__closing { min-height: 32rem; }
    .location-rebuild__closing-content { padding-top: 5rem; padding-bottom: 5rem; }
}
/* Location page headings: preserve sentence case */
.location-rebuild__hero-content h1,
.location-rebuild__section-heading h2,
.location-rebuild__map-copy h2,
.location-rebuild__closing h2,
.location-rebuild__card-heading h3,
.location-rebuild__experience-grid h3 {
    text-transform: none;
}

/* Mobile quick actions ----------------------------------------------------- */
.mobile-header-actions {
    display: none;
}

@media (max-width: 1220px) {
    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        margin-left: auto;
    }

    .mobile-header-action {
        display: inline-flex;
        align-items: center;
        min-height: 2.8rem;
        padding: 0.45rem 0.62rem;
        border: 1px solid rgba(251, 247, 239, 0.18);
        border-radius: 999px;
        background: rgba(42, 37, 33, 0.42);
        color: var(--text-soft);
        font-size: 0.62rem;
        font-weight: 600;
        line-height: 1;
        white-space: nowrap;
        transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
    }

    .mobile-header-action:hover,
    .mobile-header-action:focus-visible {
        border-color: rgba(223, 196, 154, 0.72);
        background: rgba(223, 196, 154, 0.14);
        color: var(--warm);
    }

    .mobile-header-action--brochure {
        border-color: rgba(223, 196, 154, 0.6);
        color: var(--warm);
    }

}

@media (max-width: 760px) {
    .site-header .header-inner {
        gap: 0.45rem;
    }

    .mobile-header-actions {
        gap: 0.28rem;
    }

    .mobile-header-action {
        min-height: 2.35rem;
        padding: 0.4rem 0.48rem;
        font-size: 0.56rem;
        letter-spacing: 0.01em;
    }

    .mobile-header-action--email {
        max-width: 3.9rem;
    }
}
