﻿:root {
    --nav-h: 86px;
    --nav-h-compact: 72px;
    --bg: #ffffff;
    --bg-alt: #f8f8f8;
    --text: #101010;
    --paragraph: #353535;
    --muted: #6b6b6b;
    --gold: #d4af37;
    --gold-light: #f3d56a;
    --gold-soft: rgba(212, 175, 55, 0.12);
    --gold-border: rgba(212, 175, 55, 0.28);
    --border: rgba(16, 16, 16, 0.08);
    --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 20px 48px rgba(0, 0, 0, 0.09);
    --shadow-gold: 0 20px 42px rgba(212, 175, 55, 0.20);
    --ease: cubic-bezier(.2, .8, .2, 1);
    --fab-size: 54px;
    --fab-right: 18px;
    --fab-bottom: 18px;
    --fab-gap: 14px;
    --action-h: 40px;
    --container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

    html.first-load,
    html.first-load body {
        overflow: hidden;
    }

body {
    margin: 0;
    color: var(--paragraph);
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.06), transparent 24%), linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

/* Loader */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.10), transparent 24%), rgba(255, 255, 255, 0.98);
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

    .site-loader.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.site-loader__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.site-loader__glow {
    position: absolute;
    inset: auto;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0));
    filter: blur(10px);
    z-index: 0;
}

.site-loader__logo,
.site-loader__spinner,
.site-loader__text {
    position: relative;
    z-index: 1;
}

.site-loader__logo {
    width: 140px;
    height: auto;
}

.site-loader__spinner {
    width: 42px;
    height: 42px;
    border: 3px solid #ececec;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

.site-loader__text {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--paragraph);
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Topbar */
.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

    .topbar::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.82), transparent);
    }

    .topbar.is-compact {
        height: var(--nav-h-compact);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    }

    .topbar.is-hidden {
        transform: translateY(-110%);
    }

.topbar__inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 170px;
}

.brand__logo {
    width: clamp(140px, 16vw, 210px);
    height: clamp(30px, 3.6vw, 42px);
    object-fit: contain;
}

.topbar__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.navlink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

    .navlink:hover,
    .navlink:focus-visible,
    .navlink.is-active,
    .navlink[aria-current="page"] {
        background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.08));
        border-color: rgba(212, 175, 55, 0.32);
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(212, 175, 55, 0.08);
        outline: none;
    }

.topbar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--action-h);
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #d4af37 0%, #c5981d 100%);
    box-shadow: 0 12px 26px rgba(212, 175, 55, 0.26);
}

    .btn--primary:hover,
    .btn--primary:focus-visible {
        transform: translateY(-1px);
        box-shadow: 0 18px 34px rgba(212, 175, 55, 0.30);
        outline: none;
    }

.btn--header {
    min-height: 42px;
    padding-inline: 18px;
    font-size: 13.5px;
    white-space: nowrap;
}

.btn--block {
    width: 100%;
}

.icon-btn {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.28);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

    .icon-btn:hover,
    .icon-btn:focus-visible {
        transform: translateY(-1px);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
        border-color: rgba(212, 175, 55, 0.46);
        outline: none;
    }

.topbar__burger {
    display: none;
}

.burger {
    width: 20px;
    height: 2px;
    position: relative;
    display: inline-block;
    background: var(--gold);
    border-radius: 999px;
}

    .burger::before,
    .burger::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 2px;
        border-radius: 999px;
        background: #111;
    }

    .burger::before {
        top: -6px;
    }

    .burger::after {
        bottom: -6px;
    }

/* Page */
.page {
    padding-top: var(--nav-h);
    min-height: calc(100dvh - 180px);
}

.page__inner {
    width: 100%;
    min-height: calc(100dvh - var(--nav-h));
    padding-block: 0 60px;
}

/* Footer */
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    border-top: 1px solid var(--border);
}

    .site-footer::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.78), transparent);
    }

.footer__inner {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    padding: 38px 0 22px;
}

.footer__brand-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__logo {
    width: clamp(140px, 16vw, 190px);
}

.footer__text,
.footer__bottom p,
.muted {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer__social-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.20);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    font-weight: 700;
}

.footer__social-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #1877f2;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__title {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.footer__nav {
    display: grid;
    gap: 10px;
}

    .footer__nav a {
        color: var(--paragraph);
        font-weight: 600;
        transition: color 0.18s ease, transform 0.18s ease;
    }

        .footer__nav a:hover,
        .footer__nav a:focus-visible {
            color: var(--gold);
            transform: translateX(2px);
            outline: none;
        }

.footer__info-list {
    display: grid;
    gap: 12px;
}

.footer__info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.footer__info-label {
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer__info-value {
    color: var(--paragraph);
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.footer__address-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

    .footer__address-card p {
        margin: 0;
        color: var(--paragraph);
        line-height: 1.7;
        font-weight: 600;
    }

.footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
}

.footer__bottom {
    padding: 0 0 26px;
}

/* Overlay */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.22s ease;
}

    .overlay.is-open {
        opacity: 1;
    }

/* Offcanvas */
.offcanvas {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
}

.offcanvas__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(86vw, 340px);
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 248, 0.98));
    border-right: 1px solid rgba(212, 175, 55, 0.20);
    box-shadow: var(--shadow-md);
    transform: translateX(-105%);
    transition: transform 0.26s ease;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    padding: 14px 14px 16px;
}

.offcanvas.is-open .offcanvas__panel {
    transform: translateX(0);
}

.offcanvas__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 6px 14px;
    border-bottom: 1px solid var(--border);
}

.offcanvas__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 6px 10px;
    overflow: auto;
    flex: 1;
}

.offlink {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    font-weight: 700;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

    .offlink.is-active,
    .offlink[aria-current="page"] {
        background: linear-gradient(180deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.08));
        border-color: rgba(212, 175, 55, 0.34);
    }

.offcanvas__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), transparent);
    margin: 8px 0;
}

.icon-close {
    width: 18px;
    height: 18px;
    display: block;
    stroke: #111111;
    stroke-width: 2.4;
    stroke-linecap: round;
    fill: none;
    pointer-events: none;
}

/* Floating buttons */
.fab-wa,
.to-top {
    position: fixed;
    right: var(--fab-right);
    bottom: var(--fab-bottom);
    width: var(--fab-size);
    height: var(--fab-size);
    border-radius: 18px;
    display: grid;
    place-items: center;
    transition: opacity 0.18s ease, transform 0.18s ease, bottom 0.18s ease, box-shadow 0.18s ease;
}

.fab-wa {
    z-index: 1600;
    background: #ffffff;
    border: 1px solid rgba(37, 211, 102, 0.18);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.16), 0 10px 24px rgba(0, 0, 0, 0.10);
    pointer-events: auto;
    cursor: pointer;
    touch-action: manipulation;
}

    .fab-wa:hover,
    .fab-wa:focus-visible {
        transform: translateY(-2px);
        box-shadow: 0 24px 44px rgba(37, 211, 102, 0.20), 0 12px 28px rgba(0, 0, 0, 0.12);
        outline: none;
    }

.fab-wa__img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

.fab-wa.is-raised {
    bottom: calc(var(--fab-bottom) + var(--fab-size) + var(--fab-gap));
}

.to-top {
    z-index: 1500;
    background: linear-gradient(135deg, #d4af37 0%, #c89b1d 100%);
    border: 1px solid rgba(212, 175, 55, 0.7);
    box-shadow: var(--shadow-gold);
    opacity: 0;
    transform: translateY(8px);
    cursor: pointer;
}

    .to-top.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.to-top__icon {
    width: 16px;
    height: 16px;
    position: relative;
}

    .to-top__icon::before {
        content: "";
        position: absolute;
        inset: 0;
        margin: auto;
        width: 10px;
        height: 10px;
        border-left: 2px solid #fff;
        border-top: 2px solid #fff;
        transform: rotate(45deg);
    }

    .to-top__icon::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 9px;
        margin: auto;
        width: 2px;
        height: 10px;
        border-radius: 999px;
        background: #fff;
    }

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

@media (max-width: 1060px) {
    .topbar__nav {
        display: none;
    }

    .topbar__burger {
        display: inline-grid;
    }

    .topbar__inner {
        grid-template-columns: auto minmax(120px, 1fr) auto;
    }

    .topbar__burger {
        justify-self: start;
    }

    .brand {
        justify-self: center;
        min-width: 0;
    }

    .topbar__actions {
        justify-self: end;
    }

    .footer__inner {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .topbar__inner {
        grid-template-columns: auto minmax(110px, 1fr) auto;
        gap: 8px;
    }

    .topbar__actions {
        display: flex;
    }

    .btn--header {
        min-height: 38px;
        padding-inline: 14px;
        font-size: 12.5px;
    }

    .brand {
        justify-self: center;
    }

    .page__inner {
        padding-block: 0 52px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(var(--container), calc(100% - 20px));
    }

    .topbar__inner {
        grid-template-columns: auto minmax(96px, 1fr) auto;
        gap: 6px;
    }

    .brand {
        justify-self: start;
        margin-left: -6px;
    }

    .brand__logo {
        width: 160px;
        height: 34px;
    }

    .btn--header {
        min-height: 36px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .to-top,
    .fab-wa {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
    }

    .fab-wa__img {
        width: 26px;
        height: 26px;
    }

    .fab-wa.is-raised {
        bottom: calc(14px + 50px + 12px);
    }
}

@media (max-width: 360px) {
    .topbar__inner {
        grid-template-columns: auto minmax(86px, 1fr) auto;
    }

    .brand {
        margin-left: -10px;
    }

    .brand__logo {
        width: 160px;
        height: 34px;
    }

    .btn--header {
        padding-inline: 10px;
        font-size: 11.5px;
    }
}

@media (max-width: 320px) {
    .topbar__inner {
        grid-template-columns: auto minmax(74px, 1fr) auto;
        gap: 4px;
    }

    .brand {
        margin-left: -16px;
    }

    .brand__logo {
        width: 160px;
        height: 34px;
    }

    .btn--header {
        min-height: 34px;
        padding-inline: 9px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
