:root {
    --ui-scale: 1;
    --bg: #0c100e;
    --bg-elevated: #141a17;
    --bg-soft: #1a221e;
    --text: #f3efe6;
    --text-muted: #a8b0a8;
    --accent: #c4a574;
    --accent-soft: #d4bc94;
    --line: rgba(196, 165, 116, 0.22);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --container: 70rem;
    --narrow: 45rem;
    --header-h: 4.5rem;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 0.75rem);
    font-size: calc(100% * var(--ui-scale, 1));
    zoom: var(--ui-scale, 1);
}

#ar {
    scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

@supports (zoom: 1) {
    html {
        font-size: 100%;
        zoom: var(--ui-scale, 1);
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

.container.narrow {
    width: min(100% - 2.5rem, var(--narrow));
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-h);
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(12, 16, 14, 0.88);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
}

.header-inner {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    z-index: 120;
    position: relative;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.brand-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    color: var(--accent) !important;
}

.nav-lang-mobile {
    display: none;
}

.lang-flag {
    font-size: 1.05rem;
    line-height: 1;
}

.lang-dropdown {
    position: relative;
    z-index: 120;
    flex-shrink: 0;
}

.lang-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 2.2rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid var(--line);
    background: rgba(12, 16, 14, 0.35);
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-dropdown-toggle:hover,
.lang-dropdown.is-open .lang-dropdown-toggle {
    border-color: var(--accent);
    background: rgba(196, 165, 116, 0.08);
}

.lang-dropdown-code {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.lang-dropdown-caret {
    width: 0.4rem;
    height: 0.4rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.7;
    transition: transform 0.25s var(--ease);
}

.lang-dropdown.is-open .lang-dropdown-caret {
    transform: rotate(225deg) translateY(-1px);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    min-width: 11.5rem;
    padding: 0.35rem;
    background: rgba(14, 18, 16, 0.97);
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    display: grid;
    gap: 0.15rem;
    z-index: 130;
}

.lang-dropdown-menu[hidden] {
    display: none;
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.65rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-dropdown-item:hover,
.lang-dropdown-item.is-active {
    color: var(--text);
    background: rgba(196, 165, 116, 0.1);
}

.lang-dropdown-item.is-active {
    color: var(--accent-soft);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 120;
    border: 1px solid var(--line);
    background: rgba(12, 16, 14, 0.35);
    flex-shrink: 0;
}

.nav-toggle span {
    position: absolute;
    left: 12px;
    right: 12px;
    height: 1.5px;
    background: var(--text);
    transition: transform 0.35s var(--ease), top 0.35s var(--ease), opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .site-header {
    background: rgba(12, 16, 14, 0.98);
    border-bottom-color: var(--line);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: end start;
    padding: calc(var(--header-h) + 4rem) 0 5rem;
    background: var(--bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--bg-soft);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at 70% 20%, rgba(196, 165, 116, 0.12), transparent 50%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { opacity: 0.5; transform: scale(1); }
    to { opacity: 1; transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(12, 16, 14, 0.28) 0%, rgba(12, 16, 14, 0.55) 50%, var(--bg) 100%),
        linear-gradient(105deg, rgba(12, 16, 14, 0.72) 0%, rgba(12, 16, 14, 0.18) 55%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
    max-width: 38rem;
    animation: heroIn 1.1s var(--ease) both;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-badge {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-soft);
    background: rgba(12, 16, 14, 0.35);
    backdrop-filter: blur(8px);
}

.hero-brand {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.hero-headline {
    margin: 0 0 1.25rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 500;
    font-style: normal;
    line-height: 1.12;
    color: var(--text);
}

.hero-sub {
    margin: 0 0 2rem;
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent-soft);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    right: 2.5rem;
    bottom: 2rem;
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--accent-soft);
    transform: translateY(-2px);
}

.section {
    padding: 6.5rem 0;
}

.section-head {
    margin-bottom: 3rem;
}

.eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
}

.section-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
}

.price-display {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.price-amount {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
}

.price-currency {
    font-size: 1.25rem;
    color: var(--accent);
    letter-spacing: 0.08em;
}

.specs-section {
    background:
        linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 40%, var(--bg) 100%);
}

.specs-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.9rem 1.35rem;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.spec-item:nth-child(4n) {
    border-right: 0;
}

.spec-label {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.spec-value {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    padding: 0;
    text-align: left;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    inset: auto 0 0;
    padding: 2.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(12, 16, 14, 0.85));
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s var(--ease);
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.gallery-item--plan img {
    object-fit: contain;
    background: #f4f1ea;
    padding: 0.75rem;
}

.gallery-download {
    margin: 2rem 0 0;
    text-align: center;
}

.location-bullets {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    color: var(--text-muted);
}

.location-bullets li {
    position: relative;
    padding-left: 1.25rem;
}

.location-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
}

.contact-empty {
    margin: 0;
    padding: 1.25rem;
    border: 1px dashed var(--line);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-empty a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-empty code {
    font-size: 0.85em;
    color: var(--accent-soft);
}

.mobile-cta {
    display: none;
    position: fixed;
    inset: auto 0 0;
    z-index: 90;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(12, 16, 14, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-cta-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
}

.mobile-cta .btn {
    min-height: 2.75rem;
    padding-inline: 1.35rem;
}

.description-section {
    background: var(--bg-elevated);
}

.prose {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.prose h2,
.prose h3 {
    font-family: var(--font-display);
    color: var(--text);
    font-weight: 500;
    line-height: 1.2;
}

.prose h2 {
    font-size: 2rem;
    margin: 0 0 1.25rem;
}

.prose h3 {
    font-size: 1.45rem;
    margin: 2rem 0 0.75rem;
}

.prose p {
    margin: 0 0 1.15rem;
}

.prose ul,
.prose ol {
    padding-left: 1.25rem;
    margin: 0 0 1.25rem;
}

.prose li {
    margin-bottom: 0.4rem;
}

.prose a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose strong {
    color: var(--text);
    font-weight: 500;
}

.prose img {
    margin: 1.5rem 0;
    border-radius: 2px;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.prose th,
.prose td {
    border: 1px solid var(--line);
    padding: 0.65rem 0.85rem;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
}

.feature-item h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
}

.feature-item p {
    margin: 0;
    color: var(--text-muted);
    max-width: 28rem;
}

.feature-item {
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 32rem;
}

.location-map {
    min-height: 320px;
    background: var(--bg-soft);
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    filter: grayscale(0.35) contrast(1.05);
}

.location-section:not(:has(.location-map)) .location-layout {
    grid-template-columns: 1fr;
}

.contact-section {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(196, 165, 116, 0.1), transparent 55%),
        var(--bg);
}

.contact-card {
    text-align: center;
}

.contact-note {
    color: var(--text-muted);
    margin: 1rem auto 2rem;
    max-width: 28rem;
}

.contact-actions {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
    border: 1px solid var(--line);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-link:hover {
    border-color: var(--accent);
    background: rgba(196, 165, 116, 0.06);
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.site-footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--delay, 0ms);
}

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

.hero-content.reveal {
    opacity: 1;
    transform: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    padding-top: 4.25rem;
    background: rgba(8, 10, 9, 0.94);
    backdrop-filter: blur(8px);
}

.lightbox[hidden] {
    display: none;
}

.lightbox-toolbar {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.lightbox-tool,
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(12, 16, 14, 0.55);
    display: grid;
    place-items: center;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.lightbox-tool {
    font-size: 1.15rem;
    font-weight: 500;
}

.lightbox-close {
    font-size: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover,
.lightbox-close:hover,
.lightbox-tool:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-figure {
    margin: 0;
    text-align: center;
    min-width: 0;
}

.lightbox-stage {
    position: relative;
    overflow: hidden;
    max-height: 78vh;
    max-width: min(92vw, 1100px);
    margin-inline: auto;
    touch-action: none;
    cursor: default;
    user-select: none;
}

.lightbox-stage.is-zoomed {
    cursor: grab;
}

.lightbox-stage.is-dragging {
    cursor: grabbing;
}

.lightbox-stage img {
    max-height: 78vh;
    max-width: min(92vw, 1100px);
    margin-inline: auto;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.05s linear;
    will-change: transform;
    pointer-events: auto;
}

.lightbox-stage img.is-zoomed {
    max-height: none;
    max-width: none;
    height: auto;
    width: auto;
    max-height: 78vh;
    max-width: min(92vw, 1100px);
}

.lightbox-figure figcaption {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

body.lightbox-open {
    overflow: hidden;
}



@media (max-width: 960px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-item:nth-child(4n) {
        border-right: 1px solid var(--line);
    }

    .spec-item:nth-child(2n) {
        border-right: 0;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .location-layout,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    body {
        padding-bottom: 4.5rem;
    }

    .mobile-cta {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .header-right {
        gap: 0.45rem;
    }

    .lang-dropdown {
        display: none;
    }

    .nav {
        position: fixed;
        inset: 0;
        z-index: 110;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.5rem;
        padding:
            calc(var(--header-h) + 1.25rem)
            1.5rem
            calc(1.5rem + env(safe-area-inset-bottom));
        background:
            radial-gradient(ellipse at 80% 0%, rgba(196, 165, 116, 0.12), transparent 45%),
            linear-gradient(180deg, #0c100e 0%, #101612 55%, #0a0d0b 100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            opacity 0.35s var(--ease),
            transform 0.4s var(--ease),
            visibility 0.35s;
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.15rem;
        padding-top: 0.5rem;
    }

    .nav-links a {
        padding: 1.05rem 0.15rem;
        font-size: 1.35rem;
        letter-spacing: 0.12em;
        border-bottom: 1px solid rgba(196, 165, 116, 0.12);
        color: var(--text);
        font-family: var(--font-display);
        text-transform: none;
        letter-spacing: 0.04em;
    }

    .nav-links a.nav-cta {
        color: var(--accent-soft) !important;
        border-bottom: 0;
        margin-top: 0.5rem;
    }

    .nav-lang-mobile {
        display: block;
        padding-top: 1rem;
        border-top: 1px solid rgba(196, 165, 116, 0.18);
    }

    .nav-lang-mobile-title {
        margin: 0 0 0.75rem;
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--accent);
    }

    .nav-lang-mobile-list {
        display: grid;
        gap: 0.45rem;
    }

    .nav-lang-mobile-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.8rem 0.9rem;
        border: 1px solid rgba(196, 165, 116, 0.14);
        background: rgba(255, 255, 255, 0.02);
        color: var(--text-muted);
        transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .nav-lang-mobile-item.is-active,
    .nav-lang-mobile-item:hover {
        color: var(--text);
        border-color: rgba(196, 165, 116, 0.4);
        background: rgba(196, 165, 116, 0.08);
    }

    .nav-lang-mobile-text {
        display: flex;
        flex-direction: column;
        gap: 0.1rem;
        line-height: 1.2;
    }

    .nav-lang-mobile-text strong {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        font-weight: 500;
    }

    .nav-lang-mobile-text span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .nav-lang-mobile-item.is-active .nav-lang-mobile-text span {
        color: var(--accent-soft);
    }

    .hero {
        place-items: end stretch;
        padding-bottom: 4rem;
    }

    .hero-scroll {
        display: none;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        aspect-ratio: 4 / 3;
    }

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

    .spec-item,
    .spec-item:nth-child(2n),
    .spec-item:nth-child(4n) {
        border-right: 0;
    }

    .lightbox {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        padding-top: 4rem;
    }

    .lightbox-prev,
    .lightbox-next {
        justify-self: center;
    }

    .lightbox-figure {
        grid-row: 1;
    }
}
