:root {
    --bg-color: #fff;
    --text-color: #111;
    --muted-color: #999;
    --border-color: #e8e8e8;
    --accent-color: #000;
    --menu-bg: #fff;
    --gallery-gap: 64px;
    --promo-color: #E53935;
    --link-color: #0066CC;
    --font-serif: 'Didot', 'Bodoni MT', Georgia, 'Times New Roman', serif;
    --font-sans: 'Futura', 'Avenir Next', 'Century Gothic', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --focus-color: #0050b8;
    --text-muted-aa: #6e6e6e;
    --text-muted-strong: #595959;

        --z-header: 10;
    --z-lightbox: 1000;
    --z-option-modal: 1100;
    --z-legal-modal: 1200;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.maintenance-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 60px);
    animation: maintenanceFadeIn 0.5s ease both;
}

.maintenance-screen[hidden] {
    display: none;
}

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

.maintenance-card {
    text-align: center;
    max-width: 560px;
    width: 100%;
    animation: maintenanceRise 0.6s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes maintenanceRise {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

.maintenance-logo {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(1.2rem, 4vw, 1.65rem);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    padding-left: 0.32em;
    color: var(--text-color);
    margin-bottom: 28px;
}

.maintenance-rule {
    width: clamp(40px, 10vw, 64px);
    height: 1px;
    background: var(--text-color);
    margin: 0 auto clamp(32px, 8vh, 56px);
}

.maintenance-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.18em;
    padding-left: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: clamp(28px, 7vh, 48px);
}

.maintenance-text {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--text-muted-strong);
    margin: 0 auto;
    max-width: 420px;
}

.maintenance-bar {
    width: clamp(48px, 12vw, 80px);
    height: 1px;
    background: var(--border-color);
    margin: clamp(40px, 10vh, 72px) auto 0;
    overflow: hidden;
    position: relative;
}

.maintenance-bar span {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: var(--text-color);
    animation: maintenanceProgress 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes maintenanceProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

@media (prefers-reduced-motion: reduce) {
    .maintenance-screen,
    .maintenance-card { animation: none; }
    .maintenance-bar span { animation: none; opacity: 0.4; }
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html.lang-fr .i18n-en { display: none !important; }
html.lang-en .i18n-fr { display: none !important; }

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 20px 38px;
    position: relative;
    background-color: var(--bg-color);
    z-index: var(--z-header);
}

.logo {
    text-align: center;
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.65rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    padding-left: 0.32em;
    margin-bottom: 32px;
    white-space: nowrap;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

nav { flex: 0 0 auto; }

nav ul {
    list-style: none;
    display: flex;
    gap: 44px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted-strong);
    text-transform: uppercase;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.22em;
    transition: color 0.3s ease;
    position: relative;
    touch-action: manipulation;
    padding: 6px 2px;
}

.nav-link:hover,
.nav-link.active { color: var(--text-color); }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-color);
}

.lang-switch {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 9px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.22em;
    color: var(--text-muted-strong);
    padding: 6px 4px;
    transition: color 0.3s ease;
    touch-action: manipulation;
    flex-shrink: 0;
}

.lang-btn.active { color: var(--text-color); }

@media (hover: hover) {
    .lang-btn:not(.active):hover { color: var(--text-color); }
}

.lang-sep {
    width: 1px;
    height: 11px;
    background: #ccc;
    flex-shrink: 0;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    touch-action: manipulation;
    outline: none;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--text-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-menu.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main {
    padding: 28px 28px 80px;
    min-height: 70vh;
}

.content-section,
#gallery-container { display: none; }

.content-section.active-section { display: block; }

#gallery-container.active-section { display: block; }

.masonry-grid {
    display: flex;
    align-items: flex-start;
    gap: var(--gallery-gap);
    max-width: 1920px;
    margin: 0 auto;
}

.masonry-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gallery-gap);
}

.masonry-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #f6f6f6;
    aspect-ratio: 4 / 5;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.5s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.masonry-item img.loaded { opacity: 1; }

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.6) 50%, transparent 75%);
    animation: shimmer 1.4s infinite linear;
    z-index: 0;
    pointer-events: none;
}

.masonry-item.is-loaded::before { display: none; }

@keyframes shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.about-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 90px 20px 80px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-photo {
    flex-shrink: 0;
    width: 380px;
    aspect-ratio: 3 / 4;
    background: #f6f6f6;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.about-text {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-text p {
    font-weight: 300;
    line-height: 2.1;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    color: var(--text-muted-strong);
    margin-bottom: 24px;
}

.about-text .about-note {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
    margin-top: 30px;
    margin-bottom: 0;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 20px 80px;
    text-align: center;
}

.contact-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding-left: 0.25em;
    margin-bottom: 30px;
}

.contact-intro {
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2.1;
    letter-spacing: 0.03em;
    color: var(--text-muted-strong);
    max-width: 520px;
    margin: 0 auto 75px;
    overflow-wrap: break-word;
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 55px 90px;
    margin-bottom: 75px;
}

.contact-block { max-width: 280px; }

.contact-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    padding-left: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
    margin-bottom: 16px;
}

.contact-value {
    font-size: 0.95rem;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--text-color);
    overflow-wrap: anywhere;
    word-break: break-word;
}

a.contact-value {
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3px;
    transition: border-color 0.3s ease;
}

.contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 48px;
    border-top: 1px solid var(--border-color);
}

.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-muted-aa);
    transition: color 0.3s ease;
    touch-action: manipulation;
}

.contact-social svg { display: block; }

@media (hover: hover) {
    a.contact-value:hover { border-color: var(--text-color); }
    .contact-social a:hover { color: var(--text-color); }
}

.pricing-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 90px 20px 80px;
    text-align: center;
}

.pricing-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding-left: 0.25em;
    margin-bottom: 14px;
}

.pricing-meta {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
    margin-bottom: 40px;
}

.pricing-meta::after {
    content: '';
    display: block;
    width: 64px;
    height: 1px;
    background: var(--text-color);
    margin: 28px auto 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    align-items: stretch;
}

.pricing-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 36px 28px 28px;
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-plan.recommended {
    border-color: var(--text-color);
    border-width: 1.5px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

@media (hover: hover) {
    .pricing-plan:not(.recommended):hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        transform: translateY(-2px);
    }
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--text-color);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 7px 13px 7px 15px;
    white-space: nowrap;
    z-index: 2;
}

.pricing-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 14px;
}

.pricing-desc {
    font-weight: 300;
    line-height: 1.9;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    color: var(--text-muted-strong);
    min-height: 82px;
    overflow-wrap: break-word;
}

.pricing-price-block {
    text-align: center;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-from {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
}

.pricing-price {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.pricing-price-value {
    position: relative;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 3.4rem;
    line-height: 1.05;
    color: var(--text-color);
}

.pricing-price.has-promo .pricing-price-value {
    color: var(--promo-color);
}

.pricing-price-annot {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: normal;
    line-height: 1;
    gap: 4px;
    max-width: 180px;
}

.pricing-promo {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-color);
    line-height: 1.4;
}

.pricing-old {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 1.2;
    color: var(--text-color);
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.pricing-price-annot.no-promo-title .pricing-old {
    font-size: 2.4rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .pricing-price-annot { margin-left: 14px; gap: 3px; max-width: 140px; }
    .pricing-price-value { font-size: 2.9rem; }
    .pricing-promo { font-size: 0.7rem; letter-spacing: 0.14em; }
    .pricing-old { font-size: 1.3rem; }
    .pricing-price-annot.no-promo-title .pricing-old { font-size: 1.9rem; }
}

@media (max-width: 480px) {
    .pricing-price-annot { max-width: 120px; }
    .pricing-promo { line-height: 1.25; }
}

@media (max-width: 380px) {
    .pricing-price-annot { margin-left: 10px; gap: 2px; max-width: 85px; }
    .pricing-price-value { font-size: 2.4rem; }
    .pricing-promo { font-size: 0.66rem; letter-spacing: 0.1em; }
    .pricing-old { font-size: 1.1rem; }
    .pricing-price-annot.no-promo-title .pricing-old { font-size: 1.6rem; }
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin-top: 28px;
}

.pricing-features {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 0;
}

.pricing-features li {
    font-weight: 300;
    font-size: 0.82rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--text-muted-strong);
}

.pricing sup {
    font-size: 0.65em;
    line-height: 1;
    vertical-align: baseline;
    position: relative;
    top: -0.45em;
    color: var(--text-muted-aa);
    letter-spacing: 0;
}

.pricing-optionzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.pricing-divider + .pricing-optionzone .pricing-toggle { margin-top: 24px; }
.pricing-optionzone + .pricing-features { margin-top: 24px; }

.pricing-divider + .pricing-features { margin-top: 26px; }

.pricing-features + .pricing-optionzone .pricing-toggle { margin-top: 26px; }
.pricing-optionzone + .pricing-optionzone { margin-top: 0; }

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 30px;
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    line-height: 1;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted-strong);
    padding: 9px 14px 9px 16px;
    transition: color 0.3s ease, background 0.3s ease;
    touch-action: manipulation;
}

.toggle-btn.active {
    background: var(--text-color);
    color: #fff;
}

.toggle-btn.is-disabled,
.toggle-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

@media (hover: hover) {
    .toggle-btn:not(.active):not(.is-disabled):hover { color: var(--text-color); }
}

.toggle-sep {
    width: 1px;
    height: 14px;
    background: #ccc;
    flex-shrink: 0;
}

.pricing-linkzone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20px;
    margin-top: 16px;
    margin-bottom: 0;
}

.pricing-link {
    color: var(--link-color);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    touch-action: manipulation;
    transition: opacity 0.25s ease;
}

@media (hover: hover) {
    .pricing-link:hover {
        opacity: 0.7;
        text-decoration: underline;
    }
}

.pricing-notes {
    max-width: 640px;
    margin: 80px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.pricing-notes p {
    font-weight: 300;
    font-size: 0.78rem;
    line-height: 1.85;
    color: var(--text-muted-aa);
    margin-bottom: 11px;
    overflow-wrap: break-word;
}

.pricing-custom {
    max-width: 560px;
    margin: 52px auto 0;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2;
    color: #666;
    overflow-wrap: break-word;
}

.pricing-legal {
    margin-top: 52px;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
    line-height: 2.2;
    overflow-wrap: break-word;
}

#pricing.active-section .pricing-plan {
    animation: pricingIn 0.55s ease both;
}

#pricing.active-section .pricing-plan:nth-child(2) { animation-delay: 0.08s; }
#pricing.active-section .pricing-plan:nth-child(3) { animation-delay: 0.16s; }

@keyframes pricingIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}

.option-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: var(--z-option-modal);
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    overflow-y: auto;
    overflow-x: hidden;
    padding: clamp(16px, 4vh, 56px) clamp(12px, 3vw, 56px);
    justify-content: center;
    align-items: center;
}

.option-modal.open {
    display: flex;
    animation: modalFadeIn 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.option-dialog {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: min(1080px, 92vw);
    max-height: calc(100dvh - clamp(40px, 8vh, 112px));
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
    animation: dialogRise 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: auto;
}

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

.option-close {
    position: absolute;
    top: clamp(10px, 1.5vw, 16px);
    right: clamp(10px, 1.5vw, 16px);
    z-index: 30;
    background: rgba(17, 17, 17, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: clamp(34px, 3vw, 40px);
    height: clamp(34px, 3vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    transition: background 0.2s ease, transform 0.15s ease;
}

.option-close:hover { background: rgba(255, 255, 255, 0.3); }
.option-close:active { transform: scale(0.92); }

.option-close:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.option-close svg { display: block; }

.option-body {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
}

.option-media {
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 3vh, 36px) clamp(16px, 2.5vw, 32px) clamp(14px, 2vh, 22px);
    overflow: hidden;
    min-width: 0;
    min-height: 0;
}

.option-media.has-image {
    background: #fff;
}

.option-media.no-image {
    background: #f5f5f7;
}

.carousel-stage {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 0;
}

.carousel-figure {
    position: relative;
    width: min(100%, calc((100dvh - clamp(120px, 22vh, 280px)) * 0.8));
    aspect-ratio: 4 / 5;
    max-height: calc(100dvh - clamp(120px, 22vh, 280px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .carousel-figure { width: min(100%, calc(60vh * 0.8)); max-height: 60vh; }
}
@media (max-width: 768px) {
    .carousel-figure { width: min(100%, calc(56vh * 0.8)); max-height: 56vh; }
}
@media (max-width: 380px) {
    .carousel-figure { width: min(100%, calc(54vh * 0.8)); max-height: 54vh; }
}
@media (max-height: 720px) and (min-width: 1025px) {
    .carousel-figure { width: min(100%, calc(56vh * 0.8)); max-height: 56vh; }
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transition: opacity 0.18s ease, transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.carousel-stage.is-loading .carousel-img {
    opacity: 0;
    transform: scale(0.985);
}

.carousel-stage.is-loaded .carousel-img {
    animation: carouselEnter 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes carouselEnter {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: none; }
}

.carousel-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border: 2px solid #e0e0e0;
    border-top-color: var(--text-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}
.carousel-loader.visible { opacity: 1; }

.option-media.no-image .carousel-figure::after {
    content: attr(data-placeholder);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
    text-align: center;
    background: #f5f5f7;
    border-radius: 12px;
}

.option-media.no-image .carousel-img,
.option-media.no-image .carousel-arrow {
    display: none;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    z-index: 3;
    touch-action: manipulation;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, opacity 0.25s ease;
    opacity: 0;
}

.option-media:hover .carousel-arrow,
.carousel-arrow:focus-visible {
    opacity: 1;
}

.carousel-arrow:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.carousel-arrow:active { transform: translateY(-50%) scale(0.92); }

.carousel-arrow:focus-visible {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}

.carousel-arrow svg { display: block; }

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

@media (max-width: 768px) {
    .carousel-arrow { display: none; }
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-shrink: 0;
    padding: 4px 0 0;
}

.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cfcfcf;
    border: none;
    cursor: pointer;
    padding: 0;
    touch-action: manipulation;
    transition: background 0.2s ease, transform 0.2s ease, width 0.25s ease, border-radius 0.25s ease;
}

.carousel-dot.active {
    background: var(--text-color);
    width: 22px;
    border-radius: 4px;
}

@media (hover: hover) {
    .carousel-dot:not(.active):hover { background: #999; }
}

.option-info {
    padding: clamp(28px, 4vh, 44px) clamp(24px, 3.2vw, 48px) clamp(24px, 3.5vh, 36px);
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.option-info::-webkit-scrollbar { width: 5px; }
.option-info::-webkit-scrollbar-track { background: transparent; }
.option-info::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

.option-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
    margin-bottom: 8px;
    text-align: left;
}

#option-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.7rem;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--text-color);
    margin: 0;
    text-align: left;
    animation: infoFade 0.32s ease;
}

@keyframes infoFade {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: none; }
}

#option-title:empty { display: none; }

.option-selector {
    width: 100%;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.option-tab {
    background: #f5f5f7;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 500;
    color: var(--text-muted-strong);
    padding: 9px 14px;
    white-space: nowrap;
    transition: color 0.22s ease, background 0.22s ease;
    touch-action: manipulation;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.option-tab.active {
    background: var(--text-color);
    color: #fff;
}

@media (hover: hover) {
    .option-tab:not(.active):hover {
        color: var(--text-color);
        background: #e8e8ed;
    }
}

.option-tab:focus-visible {
    outline: 2px solid var(--focus-color);
    outline-offset: 2px;
}

.option-selector-sep {
    width: 1px;
    height: 14px;
    background: var(--border-color);
    flex-shrink: 0;
    margin: 0 4px;
}

.option-price-block {
    margin-top: 22px;
    text-align: left;
    width: 100%;
    max-width: 380px;
}

.option-from {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
    margin: 0 0 4px;
}

.option-price {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 2.9rem;
    line-height: 1.05;
    color: var(--text-color);
    letter-spacing: -0.01em;
    margin: 0;
    animation: infoFade 0.32s ease;
}

.option-price.has-discount {
    color: #d63031;
}

.option-old-price {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.2;
    color: var(--text-muted-aa);
    text-decoration: line-through;
    margin: 4px 0 0;
}

.option-old-price:empty { display: none; }

.option-price:empty { display: none; }

.option-divider {
    width: 100%;
    max-width: 380px;
    height: 1px;
    background: var(--border-color);
    margin: 18px 0;
}

.option-total-old:empty { display: none; }

.option-specs {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 380px;
    text-align: left;
}

.option-specs .spec-item {
    padding: 8px 2px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 300;
    font-size: 0.84rem;
    line-height: 1.4;
    color: var(--text-muted-strong);
    overflow-wrap: break-word;
    animation: infoFade 0.32s ease;
}

.option-specs .spec-item:last-child { border-bottom: none; }

@media (max-width: 1024px) {
    .option-dialog { max-width: 100%; max-height: none; border-radius: 20px; }
    .option-body { grid-template-columns: 1fr; flex: 0 0 auto; max-height: none; min-height: 0; overflow: visible; }
    .option-media { padding: clamp(20px, 4vh, 32px) clamp(16px, 4vw, 32px) clamp(14px, 2vh, 22px); }
    .carousel-stage { min-height: 0; }
    .carousel-img { max-height: 100%; }
    .option-info { padding: clamp(24px, 4vh, 36px) clamp(20px, 4vw, 32px) clamp(22px, 3vh, 32px); max-height: none; overflow: visible; }
    #option-title { font-size: 1.5rem; }
    .option-price { font-size: 2.5rem; }
    .option-old-price { font-size: 1.05rem; }
}

@media (max-width: 768px) {
    .option-modal { padding: 0; }
    .option-close { width: 38px; height: 38px; top: 10px; right: 10px; }
    .option-dialog {
        max-width: 100%;
        width: 100%;
        max-height: none;
        min-height: 100dvh;
        border-radius: 0;
        box-shadow: none;
    }
    .option-body { grid-template-columns: 1fr; flex: 0 0 auto; max-height: none; min-height: 0; overflow: visible; }
    .option-media { padding: clamp(18px, 4vh, 28px) clamp(12px, 4vw, 24px) clamp(12px, 2vh, 18px); }
    .carousel-stage { min-height: 0; }
    .carousel-img { max-height: 100%; }
    .carousel-arrow { width: 36px; height: 36px; }
    .carousel-prev { left: 6px; }
    .carousel-next { right: 6px; }
    .option-info { padding: clamp(20px, 4vh, 28px) clamp(16px, 4vw, 24px) clamp(20px, 3vh, 28px); max-height: none; overflow: visible; }
    #option-title { font-size: 1.35rem; }
    .option-price-block { margin-top: 18px; }
    .option-price { font-size: 2.1rem; }
    .option-old-price { font-size: 0.95rem; }
    .option-divider { margin: 16px 0; }
    .option-specs .spec-item { font-size: 0.82rem; padding: 8px 2px; }
    .option-tab { font-size: 0.66rem; padding: 7px 11px; }
}

@media (max-width: 380px) {
    .option-close { width: 34px; height: 34px; top: 8px; right: 8px; }
    .option-media { padding: 16px 12px 14px; }
    .carousel-img { max-height: 100%; }
    .carousel-arrow { width: 32px; height: 32px; }
    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
    #option-title { font-size: 1.2rem; }
    .option-price { font-size: 1.8rem; }
    .option-tab { font-size: 0.6rem; padding: 6px 9px; }
    .option-specs .spec-item { font-size: 0.78rem; padding: 7px 2px; }
}

@media (max-height: 720px) and (min-width: 1025px) {
    .option-info { padding: 24px 28px 22px; }
    #option-title { font-size: 1.4rem; }
    .option-price { font-size: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .option-modal.open,
    .option-dialog,
    .carousel-stage.is-loaded .carousel-img,
    #option-title,
    .option-price,
    .option-specs .spec-item { animation: none !important; }
    .carousel-img,
    .option-tab,
    .carousel-arrow,
    .option-close { transition: none !important; }
}

footer {
    text-align: center;
    padding: 45px 20px 40px;
    border-top: 1px solid var(--border-color);
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
}

.footer-legal {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 30px;
}

.footer-legal a {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted-aa);
    text-decoration: none;
    transition: color 0.3s ease;
    touch-action: manipulation;
}

@media (hover: hover) {
    .footer-legal a:hover { color: var(--text-color); }
}

.legal-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: var(--z-legal-modal);
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.legal-modal.open {
    display: flex;
    animation: fadeIn 0.25s ease;
}

.legal-dialog {
    background: var(--bg-color);
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.legal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 40px 20px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.legal-head h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-left: 0.18em;
}

.legal-close {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-color);
    padding: 10px 0 10px 20px;
    flex-shrink: 0;
    touch-action: manipulation;
    outline: none;
}

.legal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30px 40px 40px;
}

.legal-body h4 {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-color);
    margin: 26px 0 10px;
}

.legal-body h4:first-child { margin-top: 0; }

.legal-body p {
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--text-muted-strong);
    margin-bottom: 10px;
    overflow-wrap: break-word;
}

.legal-date {
    color: var(--text-muted-aa);
    font-size: 0.72rem;
    margin-top: 24px;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: var(--z-lightbox);
    background-color: var(--bg-color);
    justify-content: center;
    align-items: center;
    padding: 40px;
    touch-action: manipulation;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox.active [data-focus-trap-end],
.lightbox [tabindex="-1"] { outline: none; }

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

.lightbox-figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.lightbox-figure img {
    max-width: 76vw;
    max-height: 74vh;
    object-fit: contain;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.16);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.lightbox-caption {
    margin-top: 24px;
    max-width: 70vw;
    text-align: center;
    color: var(--text-color);
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    line-height: 1.8;
    pointer-events: none;
    overflow-wrap: break-word;
}

.lightbox-caption:empty { display: none; }

.lightbox-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 2px solid #e5e5e5;
    border-top-color: var(--text-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.lightbox.is-loading .lightbox-loader { opacity: 1; }

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

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    opacity: 1;
    z-index: 2;
    touch-action: manipulation;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.close-lightbox:focus,
.close-lightbox:focus-visible { outline: none; }

.close-lightbox svg { display: block; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 72px;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 0;
    opacity: 1;
    user-select: none;
    z-index: 2;
    touch-action: manipulation;
    outline: none;
}

.lightbox-nav:focus,
.lightbox-nav:focus-visible { outline: none; }

.lightbox-nav svg { display: block; }

.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }

.tap-zone { display: none; }

.noscript-msg {
    text-align: center;
    padding: 24px 20px;
    color: var(--text-muted-strong);
    background: #fafafa;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    line-height: 1.7;
}

.noscript-msg a {
    color: var(--link-color);
    text-decoration: underline;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media print {
    header, footer, .lightbox, .legal-modal, .option-modal, .burger-menu, .lang-switch { display: none !important; }
    main { padding: 0; }
    .content-section { display: block !important; page-break-after: always; }
    .masonry-item { break-inside: avoid; }
    body { background: #fff !important; color: #000 !important; }
}

:focus-visible {
    outline: 2px solid var(--focus-color);
    outline-offset: 3px;
    border-radius: 1px;
}

.lang-btn:focus-visible,
.toggle-btn:focus-visible,
.nav-link:focus-visible,
.pricing-link:focus-visible,
.legal-close:focus-visible,
.option-close:focus-visible,
.close-lightbox:focus-visible,
.lightbox-nav:focus-visible,
.burger-menu:focus-visible,
.contact-value:focus-visible,
.contact-social a:focus-visible,
.footer-legal a:focus-visible,
.legal-link:focus-visible {
    outline: 2px solid var(--focus-color);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .masonry-item::before,
    .lightbox-loader { animation: none; }
    .masonry-item::before { display: none; }
    .carousel-img { animation: none; }
    .masonry-item img,
    .nav-link,
    .burger-menu span,
    .lightbox-nav,
    .close-lightbox,
    .lang-btn,
    .toggle-btn,
    .pricing-link,
    .option-tab,
    .carousel-arrow,
    .carousel-dot,
    a.contact-value,
    .contact-social a,
    .footer-legal a { transition: none; }
    .lightbox.active,
    .legal-modal.open,
    .option-modal.open,
    #pricing.active-section .pricing-plan { animation: none; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .header-row { gap: 30px; }
    nav ul { gap: 30px; }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 52px;
        max-width: 480px;
        margin: 0 auto;
    }

    .pricing-plan {
        border: 1px solid var(--border-color);
        border-radius: 14px;
        padding: 32px 24px 24px;
    }

    .pricing-plan:first-child {
        border-top: 1px solid var(--border-color);
        padding-top: 32px;
    }

    .pricing-plan.recommended {
        border: 1px solid var(--text-color);
        padding: 30px 20px 24px;
    }

    .pricing-desc { min-height: 0; }
    .pricing-price-value { font-size: 3.1rem; }
}

@media (max-width: 900px) {
    main { padding: 22px 20px 70px; }

    .about-photo { width: 320px; }
    .about-container { gap: 50px; }

    header { padding: 40px 20px 32px; }
}

@media (max-width: 768px) {
    header {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        padding: 10px 20px;
    }

    .logo {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        text-align: left;
        margin-bottom: 0;
        font-size: 1.05rem;
        letter-spacing: 0.22em;
        padding-left: 0.22em;
    }

    .header-row { display: contents; }

    .lang-switch {
        order: 2;
        margin-right: 14px;
    }

    .lang-btn { padding: 12px 2px; }

    nav { order: 4; flex: 0 0 100%; height: 0; }

    .burger-menu { order: 3; display: flex; }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--menu-bg);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        transition: max-height 0.35s ease;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    nav ul.active {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        padding: 8px 0 12px;
        border-top: 1px solid var(--border-color);
    }

    nav ul li { text-align: center; }

    .nav-link {
        display: block;
        padding: 14px 20px;
        line-height: 1.4;
    }

    .nav-link.active::after { bottom: 8px; }

    main { padding: 18px 16px 60px; }

    .pricing-container { padding: 60px 20px 55px; }
    .pricing-meta { margin-bottom: 32px; }
    .pricing-meta::after { margin-top: 24px; }
    .pricing-name { font-size: 1.2rem; }
    .pricing-price-value { font-size: 2.9rem; }
    .pricing-features { gap: 12px; }
    .pricing-notes { margin-top: 56px; }

    .about-container {
        flex-direction: column;
        padding: 60px 20px 55px;
        gap: 45px;
    }
    .about-photo { width: min(320px, 100%); }
    .about-text { text-align: center; }
    .about-text .about-note { margin-top: 25px; }

    .contact-container { padding: 60px 20px 55px; }
    .contact-title {
        font-size: 1.5rem;
        letter-spacing: 0.22em;
        padding-left: 0.22em;
    }
    .contact-intro { margin-bottom: 55px; }
    .contact-grid {
        flex-direction: column;
        align-items: center;
        gap: 45px;
        margin-bottom: 55px;
    }
    .contact-social { gap: 25px; padding-top: 40px; }

    .lightbox { padding: 56px 16px 100px; }

    .close-lightbox {
        top: 4px;
        right: 8px;
        width: 44px;
        height: 44px;
        z-index: 4;
    }

    .lightbox-figure img {
        max-width: 92vw;
        max-height: 60vh;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    }

    .lightbox-caption {
        margin-top: 14px;
        font-size: 0.7rem;
        letter-spacing: 0.25em;
        max-width: 86vw;
    }

    .lightbox-nav {
        top: auto;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
        transform: none;
        width: 64px;
        height: 56px;
        z-index: 4;
    }

    .lightbox-prev { left: calc(50% - 82px); }
    .lightbox-next { right: calc(50% - 82px); }

    .tap-zone {
        display: block;
        position: absolute;
        top: 56px;
        bottom: 0;
        width: 30vw;
        z-index: 3;
    }

    .tap-prev { left: 0; }
    .tap-next { right: 0; }

    .legal-modal { padding: 15px; }
    .legal-head { padding: 20px 22px 16px; }
    .legal-head h3 { font-size: 0.95rem; }
    .legal-body { padding: 22px 22px 30px; }

    footer { padding: 35px 20px 30px; }
}

@media (max-height: 480px) {
    .lightbox { padding: 48px 14px 92px; }
    .lightbox-figure img { max-height: 50vh; }
    .lightbox-caption { margin-top: 8px; }
    .tap-zone { top: 48px; }
    .close-lightbox { top: 2px; }
}

@media (max-width: 360px) {
    .logo { font-size: 0.95rem; letter-spacing: 0.18em; }
    .lang-switch { gap: 6px; margin-right: 10px; }
    .lightbox-prev { left: calc(50% - 70px); }
    .lightbox-next { right: calc(50% - 70px); }
}
