﻿/*
 * Responsive and mobile overrides
 * Extracted from lamer-public.css lines 4698-7136.
 */


.home-final-section {
    background: #fbfaf8;
    color: var(--ink);
}
.home-final-shell {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: clamp(32px, 5vw, 54px);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 8px;
    background:
        radial-gradient(circle at 88% 10%, rgba(183,154,88,.18), transparent 30%),
        #fff;
    box-shadow: 0 22px 68px rgba(8,17,15,.08);
}
.home-final-copy span {
    display: inline-block;
    margin-bottom: 12px;
    color: #8f7436;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.home-final-copy h2 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-family: "Roboto", system-ui, sans-serif;
    font-size: clamp(34px, 3.4vw, 54px);
    line-height: 1.04;
    letter-spacing: 0;
}
.home-final-copy p {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}
.home-final-points {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 6px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(251,250,248,.72);
}
.home-final-points article {
    padding: 18px 20px;
    border-right: 1px solid rgba(15,23,42,.08);
}
.home-final-points article:last-child {
    border-right: 0;
}
.home-final-points strong,
.home-final-points span {
    display: block;
}
.home-final-points strong {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.2;
}
.home-final-points span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}
.home-final-form {
    grid-column: 1 / -1;
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 8px;
    background: rgba(251,250,248,.82);
}
.home-final-form-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.home-final-form-fields label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}
.home-final-form-fields label:last-child {
    grid-column: 1 / -1;
}
.home-final-form-fields input,
.home-final-form-fields textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    color: var(--ink);
    border: 1px solid rgba(15,23,42,.12);
    border-radius: 4px;
    background: #fff;
    font: inherit;
    outline: none;
}
.home-final-form-fields textarea {
    min-height: 104px;
    resize: vertical;
}
.home-final-form-fields input:focus,
.home-final-form-fields textarea:focus {
    border-color: rgba(183,154,88,.7);
    box-shadow: 0 0 0 3px rgba(183,154,88,.14);
}
.home-final-submit {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    padding: 0 24px;
    color: #fff;
    border: 0;
    border-radius: 4px;
    background: linear-gradient(135deg, #b79a58, #8f7436);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.home-final-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 18px 38px rgba(143,116,54,.22);
}
.hacc-gallery {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: flex;
    height: 500px;
    gap: 22px;
    overflow: hidden;
}
.hacc-gallery input[type="radio"] { display: none; }
.hacc-panel {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: flex .6s ease;
    background: #ddd;
}
.hacc-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.52);
    transition: filter .3s ease, transform .5s ease;
}
.hacc-panel:hover img {
    filter: brightness(.72);
    transform: scale(1.025);
}
.hacc-panel label {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}
.hacc-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(8,17,15,.54);
    color: #fff;
    font-size: 20px;
}
.hacc-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease;
    max-width: 520px;
}
.hacc-content h3 {
    margin: 0 0 10px;
    color: #fff;
    font-family: "Roboto", system-ui, sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
}
.hacc-content p {
    margin: 0 0 16px;
    color: rgba(255,255,255,.78);
    line-height: 1.55;
}
.hacc-content a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.72);
    padding: 0 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}
.hacc-gallery input[type="radio"]:checked + .hacc-panel { flex: 4; }
.hacc-gallery input[type="radio"]:checked + .hacc-panel .hacc-content {
    opacity: 1;
    transform: translateY(0);
}
@media (hover: hover) {
    .hacc-gallery:hover .hacc-panel { flex: 1; }
    .hacc-panel:hover { flex: 4 !important; }
    .hacc-panel:hover .hacc-content {
        opacity: 1;
        transform: translateY(0);
    }
}
.gallery-filters {
    width: min(1160px, 100%);
    margin: 0 auto 30px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.gallery-filters a {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.86);
    padding: 10px 14px;
    color: var(--ink);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(15,23,42,.05);
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.gallery-filters a.active,
.gallery-filters a:hover {
    background: var(--deep);
    color: #fff;
    border-color: var(--deep);
    transform: translateY(-1px);
}
.gallery-item {
    height: 330px;
    overflow: hidden;
    background: #ddd;
    position: relative;
    border-radius: 8px;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 18px 44px rgba(15,23,42,.08);
    isolation: isolate;
}
.gallery-item::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(180deg, rgba(7,16,14,0), rgba(7,16,14,.72));
    z-index: 1;
    pointer-events: none;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.02);
    transition: transform .55s ease, filter .35s ease;
}
.gallery-item:hover img {
    transform: scale(1.045);
    filter: saturate(1.08) contrast(1.04);
}
.gallery-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #07100e;
}
.gallery-video-item::before {
    content: "Video santier";
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 11px;
    background: rgba(7, 16, 14, .76);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.gallery-video-item video::-webkit-media-controls-panel {
    background-color: rgba(7, 16, 14, .76);
}
.gallery-item span {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    background: rgba(255,255,255,.92);
    color: #07100e;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
    line-height: 1.25;
    font-size: 13px;
    text-transform: none;
    color: #07100e;
    padding: 10px 12px;
    font-weight: 900;
}
.gallery-video-item span {
    bottom: 58px;
}

.contact-panel {
    width: min(960px, 100%);
    margin: 0 auto;
    background: #fff;
    box-shadow: var(--shadow);
    padding: clamp(28px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}
.contact-list { display: grid; gap: 16px; }
.contact-list a, .contact-list span { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.contact-form { display: grid; gap: 12px; }
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    min-height: 48px;
    padding: 12px 14px;
    font: inherit;
    color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.contact-form button { border: 0; cursor: pointer; }

.site-footer {
    background: #07100e;
    color: #fff;
    padding: clamp(44px, 6vw, 70px) min(5vw, 70px) 34px;
}
.footer-shell {
    width: min(1160px, 100%);
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: minmax(230px, 1.25fr) repeat(4, minmax(135px, .8fr));
    gap: clamp(24px, 3vw, 44px);
    align-items: start;
}
.footer-brand-block {
    max-width: 310px;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-weight: 900;
    letter-spacing: .02em;
}
.footer-brand img {
    width: 118px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}
.footer-brand-block p {
    margin: 18px 0 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.65;
}
.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}
.social-links a {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.social-links a:hover {
    color: #07100e;
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.social-links svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    stroke: none;
}
.social-links a:nth-child(2) svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.footer-column {
    display: grid;
}
.footer-column {
    gap: 10px;
}
.footer-column strong {
    color: #fff;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.footer-column a {
    width: fit-content;
    color: rgba(255,255,255,.68);
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.35;
    transition: color .2s ease, transform .2s ease;
}
.footer-column a:hover {
    color: var(--accent);
    transform: translateX(3px);
}
.footer-bottom {
    margin-top: clamp(36px, 5vw, 58px);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 980px) {
    .site-header { position: absolute; flex-wrap: wrap; }
    .main-nav { order: 3; width: 100%; justify-content: space-between; gap: 12px; }
    .header-cta { display: none; }
    .footer-main { grid-template-columns: 1.2fr 1fr; }
    .footer-brand-block { max-width: none; }
    .hero-grid, .detail-layout, .contact-panel, .blog-layout, .blog-article-layout, .blog-featured,
    .apartments-index-hero-inner,
    .apartment-detail-hero .apartment-detail-shell,
    .apartment-data-layout,
    .apartment-story-layout,
    .apartment-data-layout,
    .apartment-floor-layout,
    .apartment-compartment-layout,
    .apartment-plan-layout,
    .apartment-location-layout { grid-template-columns: 1fr; }
    .hero-panel { max-width: 520px; }
    .feature-grid, .apartment-grid, .gallery-grid, .type-grid, .benefits-grid, .availability-strip, .plan-grid, .amenity-grid, .specification-grid { grid-template-columns: 1fr 1fr; }
    .contact-hero-inner,
    .contact-experience-shell {
        grid-template-columns: 1fr;
    }
    .contact-hero-card {
        max-width: 520px;
    }
    .about-hero-inner,
    .about-story-shell,
    .about-details-grid,
    .about-visual-shell,
    .about-location-band {
        grid-template-columns: 1fr;
    }
    .about-hero-card {
        max-width: 520px;
    }
    .about-position-grid,
    .about-type-grid {
        grid-template-columns: 1fr;
    }
    .about-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-proof-grid article:nth-child(2n) {
        border-right: 0;
    }
    .about-proof-grid article:nth-last-child(-n + 2) {
        border-top: 1px solid rgba(17,24,39,.08);
    }
    .about-location-actions {
        justify-content: flex-start;
    }
    .about-location-map,
    .about-location-map iframe {
        min-height: 320px;
    }
    .apartment-technical-card { position: static; }
    .apartment-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .apartment-decision-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .apartment-breakdown-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .apartment-breakdown-grid article { border-bottom: 1px solid rgba(15,23,42,.08); }
    .apartment-breakdown-grid article:nth-child(2n) { border-right: 0; }
    .apartment-breakdown-grid article:last-child { border-right: 1px solid rgba(15,23,42,.08); }
    .apartment-benefits-head { grid-template-columns: 1fr; }
    .apartment-benefits-list { grid-template-columns: 1fr 1fr; }
    .apartment-benefits-list article.featured { grid-column: span 2; }
    .apartment-benefits-action { align-items: flex-start; flex-direction: column; }
    .apartment-final-cta { grid-template-columns: 1fr; }
    .apartment-final-form { max-width: 620px; }
    .apartment-final-cta-actions { min-width: 0; grid-template-columns: 1fr 1fr; }
    .apartments-filter-bar {
        grid-template-columns: 1fr 1fr;
    }
    .apartments-filter-bar button {
        grid-column: span 2;
    }
    .apartments-seo-strip {
        grid-template-columns: 1fr;
    }
    .apartments-index-toolbar {
        align-items: start;
        flex-direction: column;
    }
    .hacc-gallery { height: 380px; gap: 12px; }
    .blog-sidebar { position: static; }
    .project-overview { grid-template-columns: 1fr; }
    .location-band { grid-template-columns: 1fr; }
    .why-lamer-shell { grid-template-columns: 1fr; }
    .why-lamer-media {
        height: 430px;
        min-height: 0;
    }
    .home-use-grid {
        grid-template-columns: 1fr;
    }
    .home-use-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-use-proof div:nth-child(2n) {
        border-right: 0;
    }
    .home-use-proof div:nth-last-child(-n + 2) {
        border-top: 1px solid rgba(15,23,42,.08);
    }
    .home-news-head {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .home-final-shell {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .timeline-card { grid-template-columns: 1fr; }
    .timeline-meta { justify-content: flex-start; }
    .section-head { display: block; }
    .section-head p { margin-top: 18px; }
}

@media (max-width: 640px) {
    :root {
        --mobile-bg: #07100e;
        --mobile-surface: #101916;
        --mobile-card: #fff;
        --mobile-line: rgba(255,255,255,.1);
        --mobile-radius: 24px;
    }

    html {
        background: var(--mobile-bg);
    }

    body {
        background: #f6f4ef;
        padding: 76px 0 82px;
        overflow-x: hidden;
    }

    main {
        min-height: 70vh;
    }

    .apartment-decision-strip {
        grid-template-columns: 1fr;
    }

    .apartment-decision-item {
        min-height: 0;
        padding: 16px;
    }

    .site-header {
        display: none;
    }

    .mobile-app-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 60;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-height: 70px;
        padding: calc(env(safe-area-inset-top, 0px) + 12px) 18px 12px;
        color: #fff;
        background: rgba(7, 16, 14, .92);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid rgba(255,255,255,.08);
        transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
    }

    .mobile-brand {
        min-width: 0;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-weight: 800;
        letter-spacing: .02em;
    }

    .mobile-brand img {
        width: 92px;
        height: auto;
        max-height: 38px;
        object-fit: contain;
    }

    .mobile-brand span:last-child {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-quick-actions {
        display: flex;
        gap: 8px;
    }

    .mobile-quick-actions a,
    .mobile-quick-actions .theme-toggle,
    .mobile-quick-actions .mobile-menu-toggle {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        color: #fff;
        background: rgba(255,255,255,.1);
        border: 1px solid rgba(255,255,255,.12);
        font-weight: 800;
        font-size: 0;
        cursor: pointer;
        transition: transform .22s ease, background .22s ease;
    }

    .mobile-quick-actions a:hover,
    .mobile-quick-actions .theme-toggle:hover,
    .mobile-quick-actions .mobile-menu-toggle:hover,
    .mobile-quick-actions .mobile-menu-toggle:active,
    .mobile-quick-actions a:active {
        transform: translateY(-2px);
        background: rgba(255,255,255,.16);
    }

    .mobile-quick-actions .theme-toggle svg {
        width: 17px;
        height: 17px;
    }

    .mobile-quick-actions .mobile-call-link svg {
        width: 17px;
        height: 17px;
        display: block;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-quick-actions .mobile-call-link::before {
        content: none;
    }

    .mobile-quick-actions a::before {
        content: "";
        width: 17px;
        height: 17px;
        display: block;
        grid-area: 1 / 1;
        place-self: center;
        background: currentColor;
        -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h16v16H4zM22 6l-10 7L2 6'/%3E%3C/svg%3E") center / contain no-repeat;
        mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h16v16H4zM22 6l-10 7L2 6'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .mobile-quick-actions a[href^="tel"]::before {
        transform: translate(1px, 1px);
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.92.33 1.82.62 2.68a2 2 0 0 1-.45 2.11L8 9.79a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.86.29 1.76.5 2.68.62A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.92.33 1.82.62 2.68a2 2 0 0 1-.45 2.11L8 9.79a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.86.29 1.76.5 2.68.62A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    }

    .mobile-menu-toggle {
        position: relative;
        align-content: center;
        gap: 4px;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
        display: block;
        background: currentColor;
        transform-origin: center;
        transition: transform .24s ease, opacity .18s ease, width .24s ease;
    }

    .mobile-menu-toggle span:nth-child(2) {
        width: 13px;
        justify-self: end;
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
        transform: translateX(8px);
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 90;
        pointer-events: none;
    }

    .mobile-menu-overlay[hidden] {
        display: none;
    }

    .mobile-menu-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(2, 7, 6, .68);
        backdrop-filter: blur(8px);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .mobile-menu-panel {
        position: absolute;
        left: 50%;
        top: 50%;
        width: min(86vw, 330px);
        max-height: min(74vh, 560px);
        padding: 0;
        background: #fbfaf8;
        color: #fff;
        border: 1px solid rgba(255,255,255,.2);
        box-shadow: 0 28px 90px rgba(0,0,0,.38);
        transform: translate(-50%, calc(-50% - 34px)) scale(.92);
        opacity: 0;
        overflow: hidden;
        transition: transform .34s cubic-bezier(.18,.84,.28,1), opacity .24s ease;
        display: flex;
        flex-direction: column;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .mobile-menu-overlay {
        pointer-events: auto;
    }

    body.mobile-menu-open .mobile-menu-backdrop {
        opacity: 1;
    }

    body.mobile-menu-open .mobile-menu-panel {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        animation: mobileTemplateMenuIn .42s cubic-bezier(.18,.84,.28,1) both;
    }

    .mobile-menu-head {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px 0 20px;
        background: #07100e;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .mobile-menu-head span {
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255,255,255,.82);
    }

    .mobile-menu-head button {
        width: 38px;
        height: 38px;
        border: 0;
        border-left: 1px solid rgba(255,255,255,.12);
        border-radius: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .mobile-menu-head button::before {
        content: "x";
        font-size: 24px;
        line-height: 1;
        display: block;
        transition: transform .24s ease, color .2s ease;
    }

    .mobile-menu-head button:hover::before,
    .mobile-menu-head button:active::before {
        color: var(--accent);
        transform: rotate(90deg) scale(1.08);
    }

    .mobile-menu-links {
        display: grid;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu-links a {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 56px;
        padding: 0 22px 0 64px;
        border: 0;
        border-bottom: 1px solid rgba(13,17,23,.09);
        background: #fff;
        color: #27312d;
        font-family: "Roboto", system-ui, sans-serif;
        font-size: 14px;
        font-weight: 800;
        text-align: left;
        cursor: pointer;
        opacity: 0;
        transform: translateY(-8px);
        transition: background .2s ease, color .2s ease, transform .3s cubic-bezier(.18,.84,.28,1), opacity .26s ease;
    }

    body.mobile-menu-open .mobile-menu-links > a {
        opacity: 1;
        transform: translateY(0);
    }

    body.mobile-menu-open .mobile-menu-links > :nth-child(1) { transition-delay: .04s; }
    body.mobile-menu-open .mobile-menu-links > :nth-child(2) { transition-delay: .08s; }
    body.mobile-menu-open .mobile-menu-links > :nth-child(3) { transition-delay: .12s; }
    body.mobile-menu-open .mobile-menu-links > :nth-child(4) { transition-delay: .16s; }
    body.mobile-menu-open .mobile-menu-links > :nth-child(5) { transition-delay: .2s; }
    body.mobile-menu-open .mobile-menu-links > :nth-child(6) { transition-delay: .24s; }

    .mobile-menu-links a:hover {
        background: #f4f1ea;
        color: #0d1117;
    }

    .mobile-menu-icon {
        position: absolute;
        left: 19px;
        top: 50%;
        width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        color: var(--accent-2);
        background: transparent;
        box-shadow: none;
        transform: translateY(-50%);
        transition: transform .28s ease, background .22s ease, color .22s ease;
    }

    .mobile-menu-icon svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.9;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-menu-links a:hover .mobile-menu-icon {
        color: var(--accent);
        background: transparent;
        transform: translateY(-50%) scale(1.08) rotate(-6deg);
    }

    .mobile-menu-links a::after {
        content: "";
        width: 7px;
        height: 7px;
        margin-left: auto;
        border-top: 2px solid rgba(183,154,88,1);
        border-right: 2px solid rgba(183,154,88,1);
        transform: rotate(45deg);
    }

    .mobile-menu-action {
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #b79a58, #8f7436);
        color: #fff;
        font-size: 13px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .05em;
        opacity: 0;
        transform: translateY(12px);
        transition: transform .3s cubic-bezier(.18,.84,.28,1), opacity .24s ease, filter .2s ease;
    }

    body.mobile-menu-open .mobile-menu-action {
        opacity: 1;
        transform: translateY(0);
        transition-delay: .28s;
    }

    .mobile-menu-action:hover,
    .mobile-menu-action:active {
        filter: brightness(1.08);
    }

    @keyframes mobileTemplateMenuIn {
        0% {
            transform: translate(-50%, calc(-50% - 44px)) scale(.9);
        }
        68% {
            transform: translate(-50%, calc(-50% + 4px)) scale(1.015);
        }
        100% {
            transform: translate(-50%, -50%) scale(1);
        }
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        padding: 7px 10px calc(env(safe-area-inset-bottom, 0px) + 8px);
        border-radius: 0;
        background: rgba(255,255,255,.96);
        border-top: 1px solid rgba(13,17,23,.08);
        box-shadow: 0 -18px 45px rgba(8,17,15,.14);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav a {
        position: relative;
        min-width: 0;
        min-height: 54px;
        display: grid;
        place-items: center;
        gap: 4px;
        border-radius: 0;
        color: #667085;
        font-size: 11px;
        font-weight: 800;
        transition: color .2s ease, transform .2s ease;
    }

    .mobile-bottom-nav a::after {
        content: "";
        position: absolute;
        left: 50%;
        top: -7px;
        width: 0;
        height: 3px;
        border-radius: 999px;
        background: var(--accent);
        transform: translateX(-50%);
        transition: width .24s ease;
    }

    .mobile-bottom-nav a span {
        width: 22px;
        height: 22px;
        display: block;
        font-size: 0;
        line-height: 0;
        background: currentColor;
        -webkit-mask: center / contain no-repeat;
        mask: center / contain no-repeat;
        transition: transform .24s ease;
    }

    .mobile-bottom-nav a.active {
        color: #0d1117;
        background: transparent;
        transform: translateY(-2px);
    }

    .mobile-bottom-nav a.active::after {
        width: 30px;
    }

    .mobile-bottom-nav a.active span {
        transform: translateY(-2px) scale(1.08);
        color: var(--accent);
    }

    .mobile-bottom-nav a:nth-child(1) span {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 11l9-8 9 8M5 10v10h14V10M9 20v-6h6v6'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M3 11l9-8 9 8M5 10v10h14V10M9 20v-6h6v6'/%3E%3C/svg%3E");
    }

    .mobile-bottom-nav a:nth-child(2) span {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h7v7H4zM13 4h7v7h-7zM4 13h7v7H4zM13 13h7v7h-7z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h7v7H4zM13 4h7v7h-7zM4 13h7v7H4zM13 13h7v7h-7z'/%3E%3C/svg%3E");
    }

    .mobile-bottom-nav a:nth-child(3) span {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 21h16M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16M9 8h1M14 8h1M9 12h1M14 12h1'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 21h16M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16M9 8h1M14 8h1M9 12h1M14 12h1'/%3E%3C/svg%3E");
    }

    .mobile-bottom-nav a:nth-child(4) span {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 5h16v14H4zM4 15l4-4 4 4 3-3 5 5M15 9h.01'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 5h16v14H4zM4 15l4-4 4 4 3-3 5 5M15 9h.01'/%3E%3C/svg%3E");
    }

    .mobile-bottom-nav a:nth-child(5) span {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h16v16H4zM22 6l-10 7L2 6'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 4h16v16H4zM22 6l-10 7L2 6'/%3E%3C/svg%3E");
    }

    .hero {
        min-height: calc(100svh - 70px);
        align-items: center;
        border-radius: 0;
        isolation: isolate;
    }

    .hero img.hero-bg {
        object-position: center center;
        opacity: .9;
        transform: scale(1.04);
    }

    .mobile-hero-video {
        position: absolute;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        opacity: .95;
        transform: scale(1.02);
        background: #07100e;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(7,16,14,.3), rgba(7,16,14,.08) 34%, rgba(7,16,14,.6)),
            radial-gradient(circle at center, rgba(7,16,14,.06), rgba(7,16,14,.58) 84%);
    }

    .hero-inner {
        width: 100%;
        min-height: calc(100svh - 70px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 56px 18px 118px;
    }

    .hero-grid {
        width: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 26px;
        text-align: center;
    }

    .hero-grid > div {
        width: 100%;
        display: grid;
        justify-items: center;
    }

    .hero h1, .page-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
        line-height: .95;
        margin: 0 auto 14px;
        max-width: 11ch;
        text-shadow: 0 14px 34px rgba(0,0,0,.38);
    }

    .hero p {
        font-size: 16px;
        line-height: 1.65;
        max-width: 330px;
        margin: 0 auto;
        color: rgba(255,255,255,.86);
        text-shadow: 0 8px 22px rgba(0,0,0,.35);
    }

    .hero-actions {
        width: min(100%, 330px);
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 26px;
    }

    .btn-primary,
    .btn-outline,
    .header-cta {
        min-height: 48px;
        border-radius: 0;
        width: auto;
        min-width: 150px;
        padding: 0 18px;
    }

    .hero-actions .btn-outline {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.46);
        backdrop-filter: blur(12px);
    }

    .hero-panel {
        width: min(100%, 360px);
        margin: 0 auto;
        border-radius: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        backdrop-filter: none;
    }

    .hero-panel strong {
        font-size: 18px;
        line-height: 1;
    }

    .hero-panel span {
        font-size: 10px;
        line-height: 1.25;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: rgba(255,255,255,.64);
    }

    .feature-grid, .apartment-grid, .gallery-grid, .type-grid, .project-kpis, .benefits-grid, .availability-strip, .plan-grid, .amenity-grid, .specification-grid, .blog-grid { grid-template-columns: 1fr; }

    .gallery-grid .gallery-item,
    .gallery-grid .gallery-item:nth-child(7n + 1),
    .gallery-grid .gallery-item:nth-child(7n + 4) {
        grid-column: span 1;
        height: 260px;
    }

    .gallery-page-head h2 {
        font-size: 30px;
    }

    .gallery-page-head p {
        font-size: 15px;
    }

    .gallery-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .gallery-filters a {
        flex: 0 0 auto;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid rgba(255,255,255,.18);
        border-bottom: 1px solid rgba(255,255,255,.18);
        background: rgba(255,255,255,.035);
        backdrop-filter: blur(10px);
    }

    .hero-stats div {
        min-height: 62px;
        display: grid;
        align-content: center;
        justify-items: center;
        gap: 5px;
        padding: 10px 6px;
        border-right: 1px solid rgba(255,255,255,.12);
    }

    .hero-stats div:last-child {
        border-right: 0;
    }

    .mobile-hero-cue {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 94px;
        z-index: 2;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .mobile-hero-cue span {
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: rgba(255,255,255,.44);
    }

    .mobile-hero-cue span:first-child {
        width: 28px;
        background: var(--accent);
    }
    .section {
        padding: 42px 18px;
    }

    .section.dark {
        border-radius: 30px 30px 0 0;
        margin-top: 8px;
    }

    .apartments-section {
        background: #fbfaf8;
        color: var(--ink);
        margin-top: 0;
        border-radius: 0;
    }

    .apartments-section .section-head h2 {
        color: var(--ink);
    }

    .apartments-section .section-head p {
        color: var(--muted);
    }

    .section-head {
        margin-bottom: 22px;
    }

    .section-head h2 {
        font-family: "Roboto", system-ui, sans-serif;
        font-size: 28px;
        line-height: 1.08;
        letter-spacing: 0;
    }

    .section-head p {
        margin-top: 10px;
        font-size: 15px;
    }

    .feature-card,
    .benefit-card,
    .specification-grid article,
    .availability-strip article,
    .type-card,
    .plan-card,
    .contact-panel,
    .location-band {
        border-radius: 22px;
        box-shadow: 0 18px 44px rgba(8,17,15,.09);
    }

    .apartment-grid {
        gap: 16px;
    }

    .apartment-card {
        border-radius: 4px;
        overflow: hidden;
        box-shadow: 0 18px 44px rgba(8,17,15,.1);
    }

    .apartment-image {
        height: 290px;
        border-radius: 0;
    }

    .apartment-badge-row {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .apartment-status-badge,
    .apartment-type-chip {
        min-height: 30px;
        padding: 0 10px;
        font-size: 11px;
    }

    .apartment-image-overlay {
        left: 16px;
        right: 16px;
        bottom: 58px;
    }

    .apartment-image-overlay strong {
        font-size: 24px;
    }

    .apartment-body {
        margin: 0;
        padding: 18px;
        border-radius: 0;
        gap: 16px;
    }

    .apartment-body h3 {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .apartment-description {
        font-size: 14px;
    }

    .apartment-card-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 10px 0;
        border-radius: 0;
        overflow: hidden;
    }

    .apartment-mini-spec {
        min-height: 68px;
        padding: 11px;
        grid-template-columns: 34px minmax(0, 1fr);
        column-gap: 9px;
    }

    .apartment-specs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        border-top: 0;
        padding-top: 0;
    }

    .apartment-specs span {
        border-radius: 3px;
        background: #f0eee8;
        padding: 8px 10px;
        color: #344054;
        font-size: 13px;
        font-weight: 700;
    }

    .apartment-price {
        font-size: 20px;
        margin-top: 16px;
    }

    .apartment-card-actions {
        gap: 8px;
    }

    .apartment-link,
    .apartment-contact-link,
    .apartment-tour-link {
        border-radius: 2px;
        min-height: 48px;
    }

    .why-lamer-section {
        padding: 48px 18px;
    }

    .why-lamer-shell {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .why-lamer-media {
        height: 320px;
        min-height: 0;
        border-radius: 16px;
        box-shadow: 0 18px 46px rgba(8,17,15,.12);
    }

    .why-lamer-media img {
        min-height: 0;
        object-position: left center;
        transform: scale(1.12);
    }

    .why-lamer-gallery-scroll {
        height: 320px;
        min-height: 0;
        border-radius: 12px;
    }

    .why-lamer-gallery-track {
        padding: 0;
    }

    .why-lamer-gallery-track img {
        min-height: 0;
        transform: scale(1.01);
        object-position: center;
    }

    .why-lamer-content {
        padding: 0;
    }

    .why-lamer-label {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .why-lamer-content h2 {
        font-size: 31px;
        line-height: 1.02;
        margin-bottom: 14px;
    }

    .why-lamer-content > p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .home-use-section {
        padding: 48px 18px;
    }

    .home-use-head {
        margin-bottom: 22px;
    }

    .home-use-head > span {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .home-use-head h2 {
        font-size: 29px;
        line-height: 1.06;
    }

    .home-use-head p {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.62;
    }

    .home-use-grid {
        gap: 12px;
    }

    .home-use-grid article {
        min-height: 0;
        padding: 0;
    }

    .home-use-media {
        aspect-ratio: 16 / 9;
    }

    .home-use-card-body {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 13px;
        padding: 18px;
    }

    .home-use-icon {
        width: 44px;
        height: 44px;
    }

    .home-use-icon svg {
        width: 22px;
        height: 22px;
    }

    .home-use-grid h3 {
        margin-bottom: 8px;
        font-size: 22px;
    }

    .home-use-grid p {
        font-size: 14px;
        line-height: 1.58;
    }

    .home-use-proof {
        margin-top: 12px;
    }

    .home-use-proof div {
        min-height: 72px;
        padding: 14px;
    }

    .home-use-proof strong {
        font-size: 24px;
    }

    .home-use-proof span {
        font-size: 10.5px;
    }

    .home-news-section {
        padding: 48px 18px;
    }

    .home-news-head {
        margin-bottom: 20px;
    }

    .home-news-head span {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .home-news-head h2 {
        font-size: 29px;
        line-height: 1.06;
    }

    .home-news-head p {
        margin-top: 10px;
        font-size: 14.5px;
    }

    .home-news-carousel {
        width: calc(100% + 18px);
    }

    .home-news-media {
        height: 205px;
    }

    .home-news-body {
        padding: 17px;
    }

    .home-news-card h3 {
        font-size: 20px;
    }

    .why-lamer-grid article {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 13px;
        padding: 16px 0;
    }

    .why-lamer-grid article > span {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .why-lamer-grid svg {
        width: 20px;
        height: 20px;
    }

    .why-lamer-grid h3 {
        font-size: 16px;
    }

    .why-lamer-grid p {
        font-size: 14px;
    }

    .why-lamer-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .why-lamer-actions .btn-primary,
    .why-lamer-link {
        width: 100%;
        min-width: 0;
        min-height: 48px;
    }

    .gallery-slider-section {
        padding: 32px 12px 40px;
    }

    .gallery-slider-card {
        width: 100%;
        padding: 18px 0 14px;
        border-radius: 8px;
    }

    .gallery-slider-head {
        margin: 0 16px 16px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px;
        align-items: start;
    }

    .gallery-slider-head span {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .gallery-slider-head h2 {
        font-size: 26px;
        line-height: 1.04;
    }

    .gallery-slider-head p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.55;
    }

    .gallery-slider-head a {
        min-height: 40px;
        padding: 0 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .lamer-template-gallery {
        width: 100%;
        margin-left: 0;
    }

    .lamer-gallery-slide {
        height: 320px;
        border-radius: 8px;
    }

    .construction-video-section {
        min-height: calc(100svh - 70px);
        align-items: end;
    }

    .construction-video-bg {
        object-position: center center;
    }

    .construction-video-overlay {
        background:
            linear-gradient(180deg, rgba(8,17,15,.18), rgba(8,17,15,.18) 30%, rgba(8,17,15,.88)),
            radial-gradient(circle at center, rgba(8,17,15,.08), rgba(8,17,15,.72) 76%);
    }

    .construction-video-inner {
        padding: 92px 18px 34px;
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .construction-video-copy {
        max-width: 100%;
    }

    .construction-video-copy > span {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .construction-video-copy h2 {
        max-width: 13ch;
        font-size: clamp(34px, 9.8vw, 48px);
        line-height: .98;
    }

    .construction-video-copy p {
        max-width: 340px;
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.62;
    }

    .construction-video-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .construction-video-actions .btn-primary,
    .construction-video-actions .btn-outline {
        width: 100%;
        min-width: 0;
        padding: 0 12px;
        min-height: 48px;
    }

    .construction-video-proof {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-left: 0;
        border-right: 0;
        background: rgba(255,255,255,.07);
    }

    .construction-video-proof article {
        min-height: 72px;
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        align-content: center;
        gap: 6px;
        padding: 12px 8px;
        border-bottom: 0;
        border-right: 1px solid rgba(255,255,255,.16);
        text-align: center;
    }

    .construction-video-proof article:last-child {
        border-right: 0;
    }

    .construction-video-proof strong {
        min-width: 0;
        font-size: 22px;
    }

    .construction-video-proof span {
        font-size: 10px;
        line-height: 1.25;
    }

    .home-final-section {
        padding: 42px 18px 50px;
    }

    .home-final-shell {
        padding: 24px 20px;
        border-radius: 8px;
        gap: 20px;
    }

    .home-final-copy span {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .home-final-copy h2 {
        font-size: 29px;
        line-height: 1.06;
    }

    .home-final-copy p {
        margin-top: 12px;
        font-size: 14.5px;
        line-height: 1.6;
    }

    .home-final-points {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .home-final-points article {
        padding: 15px 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }

    .home-final-points article:last-child {
        border-bottom: 0;
    }

    .home-final-form {
        padding: 16px;
    }

    .home-final-form-fields {
        grid-template-columns: 1fr;
    }

    .home-final-submit {
        width: 100%;
        justify-self: stretch;
    }

    .page-hero {
        margin-top: -76px;
        padding: 132px 18px 34px;
        border-radius: 0 0 30px 30px;
    }

    .contact-hero {
        margin-top: -76px;
        padding: 132px 18px 42px;
    }

    .contact-hero-inner {
        gap: 22px;
    }

    .contact-hero-copy h1 {
        font-size: clamp(36px, 10vw, 52px);
        line-height: .98;
    }

    .contact-hero-copy p {
        margin-top: 14px;
        font-size: 15px;
    }

    .contact-hero-card {
        padding: 18px;
    }

    .contact-hero-card strong {
        font-size: 23px;
    }

    .contact-experience-section {
        padding: 42px 18px;
    }

    .contact-form-card,
    .contact-methods-card,
    .contact-help-card {
        border-radius: 8px;
    }

    .contact-form-card {
        padding: 20px;
    }

    .contact-form-head h2,
    .contact-methods-card h2 {
        font-size: 28px;
    }

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

    .contact-submit {
        width: 100%;
        justify-self: stretch;
    }

    .page-hero p {
        font-size: 16px;
    }

    .apartment-detail-hero {
        margin-top: -76px;
        padding: 124px 18px 0;
    }

    .apartment-detail-hero .apartment-detail-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .apartment-breadcrumb {
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-bottom: 18px;
        padding-bottom: 4px;
        font-size: 12px;
        scrollbar-width: none;
    }

    .apartment-breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .apartment-breadcrumb strong,
    .apartment-breadcrumb a {
        white-space: nowrap;
    }

    .apartment-detail-copy h1 {
        font-size: 38px;
        line-height: 1;
    }

    .apartment-detail-copy > p:not(.apartment-detail-kicker) {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.62;
    }

    .apartment-detail-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 22px;
    }

    .apartment-detail-actions.has-tour {
        grid-template-columns: 1fr;
    }

    .apartment-detail-actions .btn-primary,
    .apartment-detail-actions .btn-outline {
        min-height: 48px;
        padding: 0 14px;
        border-radius: 8px;
        font-size: 13px;
    }

    .apartment-detail-media {
        min-height: 360px;
        margin: 0 -18px;
    }

    .apartment-detail-hero + .apartment-detail-summary-section {
        padding-top: 12px;
    }

    .apartment-hero-controls {
        top: 12px;
        right: 12px;
    }

    .apartment-hero-controls button {
        width: 40px;
        height: 40px;
    }

    .apartment-detail-status {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 13px;
    }

    .apartment-detail-status strong {
        font-size: 16px;
    }

    .apartment-detail-section {
        padding: 34px 18px;
    }

    .apartment-detail-summary-section {
        padding: 12px 18px 14px;
    }

    .apartment-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .apartment-summary-grid article {
        grid-template-columns: 36px minmax(0, 1fr);
        grid-template-areas:
            "icon label"
            "icon value";
        align-items: center;
        align-content: center;
        min-height: 68px;
        padding: 9px 10px;
        column-gap: 8px;
        row-gap: 2px;
        border-radius: 5px;
        box-shadow: 0 10px 24px rgba(15,23,42,.052);
    }

    .apartment-summary-grid article::before {
        display: none;
    }

    .apartment-summary-grid article > span:not(.apartment-summary-icon) {
        font-size: 9px;
        letter-spacing: .035em;
    }

    .apartment-summary-grid strong {
        font-size: 15px;
        line-height: 1.13;
    }

    .apartment-summary-icon {
        width: 36px;
        height: 36px;
    }

    .apartment-summary-icon svg {
        width: 18px;
        height: 18px;
    }

    .apartment-section-head {
        display: block;
        margin-bottom: 18px;
    }

    .apartment-section-head h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .apartment-section-head p {
        margin-top: 10px;
        font-size: 15px;
    }

    .apartment-detail-gallery {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .apartment-detail-gallery::-webkit-scrollbar {
        display: none;
    }

    .apartment-detail-gallery a,
    .apartment-detail-gallery a.featured {
        min-width: 82%;
        flex-basis: 82%;
        height: 320px;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .apartment-detail-gallery a:nth-child(3n + 1) {
        flex-basis: 82%;
    }

    .apartment-gallery-controls {
        right: 12px;
        bottom: 14px;
    }

    .apartment-gallery-controls button {
        width: 40px;
        height: 40px;
    }

    .apartment-inline-gallery-section {
        padding-top: 0;
        padding-bottom: 30px;
    }

    .apartment-inline-gallery-head {
        display: block;
        margin-bottom: 16px;
    }

    .apartment-inline-gallery-head h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .apartment-inline-gallery-head p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 1.55;
    }

    .apartment-inline-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .apartment-inline-gallery-grid a,
    .apartment-inline-gallery-grid a:nth-child(1),
    .apartment-inline-gallery-grid a:nth-child(2),
    .apartment-inline-gallery-grid a:nth-child(3),
    .apartment-inline-gallery-grid a:nth-child(n + 4) {
        grid-column: span 1;
        grid-row: auto;
        min-height: 156px;
        border-radius: 5px;
        box-shadow: 0 10px 24px rgba(15,23,42,.06);
    }

    .apartment-inline-gallery-grid a:nth-child(1) {
        grid-column: span 2;
        min-height: 240px;
    }

    .apartment-story-layout,
    .apartment-floor-layout,
    .apartment-compartment-layout,
    .apartment-plan-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .apartment-location-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .apartment-story,
    .apartment-floor-copy,
    .apartment-floor-card,
    .apartment-compartment-intro,
    .apartment-compartment-card,
    .apartment-location-copy,
    .apartment-technical-card {
        padding: 22px;
    }

    .apartment-floor-copy h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .apartment-floor-copy p {
        font-size: 15px;
    }

    .apartment-floor-map {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 14px;
    }

    .apartment-floor-corridor {
        min-height: 54px;
    }

    .apartment-floor-corridor span {
        max-width: none;
        writing-mode: horizontal-tb;
        transform: none;
    }

    .apartment-floor-units {
        grid-template-columns: 1fr;
    }

    .apartment-floor-card-head {
        display: grid;
        gap: 5px;
    }

    .apartment-location-copy h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .apartment-location-copy p {
        font-size: 15px;
    }

    .apartment-location-map,
    .apartment-location-map iframe,
    .apartment-map-visual {
        min-height: 360px;
    }

    .apartment-location-map {
        display: block;
        position: relative;
        height: 360px;
        overflow: hidden;
    }

    .apartment-location-map iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 0;
        opacity: 1;
        visibility: visible;
    }

    .map-sea {
        width: 24%;
        font-size: 10px;
    }

    .apartment-map-visual {
        grid-template-columns: minmax(0, 1fr) 88px;
    }

    .map-land,
    .map-coast {
        min-height: 390px;
    }

    .map-coast::before {
        left: -18px;
        width: 34px;
    }

    .map-coast strong {
        max-width: 78px;
        font-size: 15px;
    }

    .map-coast span {
        padding: 7px 8px;
        font-size: 10px;
    }

    .map-pin {
        left: 58%;
        top: 40%;
        padding: 10px 12px;
    }

    .map-pin strong {
        font-size: 12px;
    }

    .map-label {
        font-size: 10px;
    }

    .map-area-label {
        top: 18px;
        left: 16px;
        font-size: 11px;
    }

    .map-road-main {
        left: 9%;
        right: 10%;
        top: 18%;
        height: 24px;
        transform: rotate(72deg);
    }

    .map-road-name {
        left: 26%;
        top: 47%;
        padding: 7px 9px;
        font-size: 10px;
        transform: rotate(-16deg);
    }

    .map-context-note {
        left: 28%;
        top: 26%;
        padding: 7px 9px;
        font-size: 10px;
    }

    .map-nearby {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .map-nearby span {
        padding: 7px 8px;
        font-size: 10px;
    }

    .map-city {
        font-size: 10px;
    }

    .map-city-navodari {
        top: 18px;
        left: 14px;
    }

    .map-city-mamaia {
        bottom: 86px;
        left: 14px;
    }

    .map-city-constanta {
        bottom: 44px;
        left: 14px;
    }

    .map-label-beach {
        right: 13%;
    }

    .apartment-map-link {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .apartment-compartment-intro {
        gap: 18px;
    }

    .apartment-compartment-intro h2 {
        font-size: 28px;
        line-height: 1.08;
    }

    .apartment-compartment-intro p {
        font-size: 15px;
    }

    .apartment-compartment-stats {
        grid-template-columns: 1fr;
        border-top: 0;
        gap: 10px;
    }

    .apartment-compartment-stats div {
        padding: 12px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }

    .apartment-compartment-stats div:last-child {
        border-bottom: 0;
    }

    .apartment-compartment-card-head {
        display: grid;
        gap: 6px;
        margin-bottom: 18px;
    }

    .apartment-compartment-card-head strong {
        font-size: 22px;
    }

    .apartment-compartment-card-head span {
        font-size: 12px;
    }

    .apartment-compartment-rows article {
        min-height: 54px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        padding: 8px 6px;
        background: transparent;
        border: 0;
        border-bottom: 1px solid rgba(15,23,42,.08);
        border-radius: 0;
        box-shadow: none;
    }

    .apartment-compartment-rows article:last-child {
        border-bottom: 0;
    }

    .apartment-compartment-rows article::before {
        display: none;
    }

    .apartment-compartment-rows article > div {
        order: initial;
        align-items: center;
        gap: 8px;
        width: auto;
    }

    .apartment-compartment-icon {
        width: 38px;
        height: 38px;
        color: #8f7436;
        background: transparent;
        border: 1px solid rgba(143,116,54,.28);
        border-radius: 999px;
        box-shadow: none;
    }

    .apartment-compartment-icon svg {
        width: 18px;
        height: 18px;
    }

    .apartment-compartment-rows article strong {
        font-size: 15px;
        line-height: 1.25;
    }

    .apartment-compartment-rows article b {
        order: initial;
        font-size: 16px;
        line-height: 1.1;
        letter-spacing: 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
    }

    .apartment-compartment-rows article:hover {
        transform: none;
        box-shadow: none;
        background: rgba(248,246,240,.55);
    }

    .apartment-compartment-rows article:hover .apartment-compartment-icon {
        transform: none;
    }

    .apartment-story .content-copy {
        padding: 0;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
    }

    .apartment-technical-card {
        position: static;
    }

    .apartment-breakdown-grid {
        grid-template-columns: 1fr;
    }

    .apartment-breakdown-grid article {
        min-height: 132px;
        border-right: 0 !important;
        border-bottom: 1px solid rgba(15,23,42,.08);
    }

    .apartment-breakdown-grid article:last-child {
        border-bottom: 0;
    }

    .apartment-plan-figure {
        padding: 10px;
    }

    .apartment-plan-figure iframe {
        min-height: 430px;
    }

    .apartment-benefits-list {
        grid-template-columns: 1fr;
    }

    .apartment-benefits-head {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 18px;
    }

    .apartment-benefits-head h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    .apartment-benefits-head p {
        font-size: 15px;
    }

    .apartment-benefits-list {
        gap: 12px;
    }

    .apartment-benefits-list article,
    .apartment-benefits-list article.featured {
        grid-column: auto;
        min-height: auto;
        padding: 22px;
    }

    .apartment-benefit-icon {
        width: 46px;
        height: 46px;
    }

    .apartment-benefits-action {
        display: grid;
        gap: 14px;
        padding: 20px;
    }

    .apartment-benefits-action a {
        width: 100%;
    }

    .apartment-final-cta-section {
        padding-top: 24px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .apartment-final-cta {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 22px;
    }

    .apartment-final-cta-copy h2 {
        font-size: 30px;
        line-height: 1.08;
    }

    .apartment-final-cta-copy p {
        font-size: 15px;
    }

    .apartment-final-cta-actions {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .apartment-final-form {
        padding: 18px;
    }

    .apartment-final-form-head {
        display: grid;
        gap: 6px;
    }

    .apartment-final-form-head span {
        max-width: none;
        text-align: left;
    }

    .apartments-index-hero {
        margin-top: -76px;
        padding: 132px 18px 42px;
        background:
            linear-gradient(180deg, rgba(7,16,14,.58), rgba(7,16,14,.84)),
            url("/images/projects/lamer-residence-hero.webp") center/cover no-repeat;
    }

    .apartments-index-hero-inner {
        gap: 24px;
    }

    .apartments-index-copy h1 {
        font-size: 38px;
        line-height: 1;
    }

    .apartments-index-copy p {
        margin-top: 16px;
        font-size: 15px;
        line-height: 1.62;
    }

    .apartments-index-proof {
        grid-template-columns: 1fr;
    }

    .apartments-index-proof article {
        grid-template-columns: 74px 1fr;
        padding: 17px 18px;
    }

    .apartments-index-proof strong {
        font-size: 31px;
    }

    .apartments-index-section {
        padding-top: 38px;
    }

    .apartments-index-toolbar {
        margin-bottom: 16px;
    }

    .apartments-index-toolbar h2 {
        font-size: 28px;
    }

    .apartments-filter-bar {
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 10px;
    }

    .apartments-filter-bar button {
        grid-column: auto;
    }

    .apartments-seo-strip {
        gap: 10px;
        margin-bottom: 22px;
    }

    .apartments-seo-strip article {
        padding: 16px;
    }

    .apartments-seo-content {
        margin-top: 28px;
        padding-top: 28px;
    }

    .apartments-seo-content-head h2 {
        font-size: 27px;
    }

    .apartments-seo-content-head p {
        font-size: 15px;
    }

    .apartments-empty-state {
        padding: 28px 20px;
    }

    .about-hero {
        min-height: auto;
        padding: 118px 18px 54px;
        align-items: flex-end;
        background:
            linear-gradient(180deg, rgba(7,16,14,.52), rgba(7,16,14,.84)),
            var(--about-hero-image) center/cover no-repeat;
    }

    .about-hero-inner {
        gap: 22px;
    }

    .about-hero-copy h1 {
        font-size: 38px;
        line-height: 1;
    }

    .about-hero-copy p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.62;
    }

    .about-hero-actions {
        display: grid;
        gap: 12px;
        margin-top: 24px;
    }

    .about-hero-actions a,
    .about-location-actions a,
    .about-final-section .center-actions a {
        width: 100%;
    }

    .about-hero-card {
        padding: 18px;
    }

    .about-hero-card strong {
        font-size: 22px;
    }

    .about-proof-strip {
        padding: 0 18px;
        background: #f6f4ef;
    }

    .about-proof-grid {
        margin-top: -28px;
        grid-template-columns: 1fr 1fr;
    }

    .about-proof-grid article {
        padding: 18px;
    }

    .about-proof-grid strong {
        font-size: 28px;
    }

    .about-proof-grid span {
        font-size: 11px;
    }

    .about-story-section {
        padding-top: 64px;
    }

    .about-story-shell,
    .about-details-grid,
    .about-visual-shell {
        gap: 24px;
    }

    .about-story-shell h2,
    .about-details-grid h2,
    .about-visual-shell h2,
    .about-location-band h2 {
        font-size: 31px;
        line-height: 1.08;
    }

    .about-story-copy p,
    .about-details-grid p,
    .about-visual-shell p,
    .about-location-band p {
        font-size: 15px;
        line-height: 1.62;
    }

    .about-position-grid {
        gap: 12px;
    }

    .about-feature-card {
        min-height: auto;
        padding: 22px;
    }

    .about-feature-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 14px;
    }

    .about-feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .about-feature-card h3,
    .about-type-body h3 {
        font-size: 21px;
    }

    .about-feature-card h3 {
        margin-top: 12px;
    }

    .about-detail-rows div {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
        padding: 15px 0;
    }

    .about-detail-rows span {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .about-detail-rows p {
        font-size: 16px;
        line-height: 1.38;
    }

    .about-type-grid {
        gap: 14px;
    }

    .about-type-card img {
        height: 180px;
    }

    .about-type-body {
        padding: 18px;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .about-image-grid img,
    .about-image-grid img:first-child {
        height: 240px;
        grid-row: auto;
    }

    .about-location-band {
        padding: 18px;
    }

    .about-location-actions {
        display: grid;
        justify-content: stretch;
    }

    .about-location-copy {
        padding: 4px;
        gap: 22px;
    }

    .about-location-map,
    .about-location-map iframe {
        min-height: 280px;
    }

    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: calc(82px + env(safe-area-inset-bottom, 0px));
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .cookie-consent-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .privacy-shell {
        padding: 24px 18px;
        border-radius: 8px;
    }

    .privacy-copy {
        font-size: 15px;
        line-height: 1.65;
    }

    .privacy-copy h2 {
        font-size: 21px;
    }
}
