@font-face {
    font-family: "Hooskai";
    src: url("../fonts/HooskaiChamferedSquare-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Light.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Lato";
    src: url("../fonts/Lato-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-Variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 900;
    font-display: swap;
}

@font-face {
    font-family: "Playfair Display";
    src: url("../fonts/PlayfairDisplay-Italic-Variable.woff2") format("woff2");
    font-style: italic;
    font-weight: 400 900;
    font-display: swap;
}

:root {
    --bg: #1a1614;
    --bg-deep: #120f0e;
    --bg-hero: #0f0d0c;
    --bg-footer: #0a0908;
    --panel: #120f0e;
    --panel-soft: #1a1614;
    --line: #2a221e;
    --line-soft: rgba(201, 169, 110, 0.4);
    --accent: #c9a96e;
    --text: #f0ead6;
    --body: #c8bfb0;
    --muted: #9a8c7a;
    --subtle: #4a3e35;
    --white: #f7f5f0;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
    --radius-sm: 6px;
    --radius-md: 10px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@keyframes playShadow {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 83, 155, 0.5), 0 0 0 0px rgba(0, 83, 155, 0.3);
        ;
        transform: scale(1);
    }
    18% {
        box-shadow: 0 0 0 0px rgba(0, 83, 155, 0.5), 0 0 0 0px rgba(0, 83, 155, 0.3);
        ;
    }
    35% {
        transform: scale(1.08);
    }
    76% {
        transform: scale(0.96);
    }
    100% {
        box-shadow: 0 0 0 16px rgba(0, 83, 155, 0), 0 0 0 27px rgba(239, 35, 60, 0);
        transform: scale(1);
    }
}


/* Фиксед Иконка ЗВОНКА */

@keyframes pulse {
    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
        transform: scale(1.3);
    }
}

@keyframes up {
    50% {
        -webkit-transform: translateY(-170%);
        transform: translateY(-170%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%);
    }
}

@keyframes down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: 0;
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.share {
    position: fixed;
    z-index: 99;
    bottom: 40px;
    right: 40px;
    z-index: 999;
}

.share:before,
.share:after {
    content: '';
    will-change: transform;
}

.share,
.share:before,
.share:after {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    position: fixed;
    cursor: pointer;
}

.share:after {
    background: var(--accent);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
    -webkit-transition: .39s;
    transition: .39s;
}

.share:hover:after {
    background: var(--white);
    -webkit-transition: .39s;
    transition: .39s;
}

.share.active:after {
    background: #fff;
}

.pulse::before {
    animation: pulse 2s infinite;
    box-shadow: 0px 0px 2px 2px var(--accent);
}

.share .share-svg {
    z-index: 10000;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.share .fab .share-svg {
    z-index: 10000;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.share:hover .share-svg svg {
    width: 25px;
    height: 25px;
    fill: var(--red);
    animation: pulse 2s infinite;
    -webkit-transition: .39s;
    transition: .39s;
}

.share.active .share-svg svg {
    width: 25px;
    height: 25px;
    fill: var(--red);
    animation: pulse 2s infinite;
    -webkit-transition: .39s;
    transition: .39s;
}

.share-svg svg {
    width: 25px;
    height: 25px;
    fill: white;
    animation: pulse 2s infinite;
    -webkit-transition: .39s;
    transition: .39s;
}

.share.active .fab .share-svg svg {
    width: 25px;
    height: 25px;
    fill: white;
    animation: pulse 2s infinite;
    -webkit-transition: .39s;
    transition: .39s;
}

.share .fab {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-animation: .3s down forwards;
    animation: .3s down forwards;
    opacity: 0;
    will-change: animation;
}

.share .fab {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
}

.share .fab.active {
    -webkit-animation: .48s up forwards;
    animation: 1.2s up forwards;
}

.share .fab.phone {
    background: #09B83E;
}

.share .fab.phone {
    top: 0px;
}

.share .fab.active.phone {
    -webkit-animation-delay: .48s;
    animation-delay: .48s;
}

.share .fab.tg {
    background: #0099FF;
}

.share .fab.tg {
    top: -66px;
}

.share .fab.active.tg {
    -webkit-animation-delay: .39s;
    animation-delay: .39s;
}

.share .fab.youtub {
    background: #CD201F;
}

.share .fab.youtub {
    top: -132px;
}

.share .fab.active.youtub {
    -webkit-animation-delay: .29s;
    animation-delay: .29s;
}

.share .fab.vk {
    background: #4C75A3;
}

.share .fab.vk {
    top: -130px;
}

.share .fab.active.vk {
    -webkit-animation-delay: .19s;
    animation-delay: .19s;
}

.share .fab.inst {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}

.share .fab.inst {
    top: -264px;
}

.share .fab.active.inst {
    -webkit-animation-delay: .10s;
    animation-delay: .10s;
}

.share .fab.watsapp {
    background: #0dde67;
}

.share .fab.watsapp {
    top: -130px;
}

.share .fab.active.watsapp {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}

.share .fab.tiktok {
    background: #131418;
}

.share .fab.tiktok {
    top: -396px;
}

.share .fab.active.tiktok {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
}


/* ── Scroll animations ─────────────────────────────── */

.wow {
    opacity: 0;
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.wow.fadeInUp {
    transform: translateY(32px);
}

.wow.fadeInLeft {
    transform: translateX(-32px);
}

.wow.fadeInRight {
    transform: translateX(32px);
}

.wow.is-revealed {
    opacity: 1;
    transform: none;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--body);
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

main .row>*,
.site-navbar>*,
.footer-cta__inner>*,
.footer-bottom__inner>*,
.map-topbar>*,
.map-topbar__address>*,
.contact-card__head>*,
.footer-social>* {
    min-width: 0;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: rgba(201, 169, 110, 0.28);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: var(--accent);
}

a:focus-visible {
    outline: 2px solid rgba(201, 169, 110, 0.45);
    outline-offset: 4px;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
}

.icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    opacity: 0;
}

.site-shell {
    max-width: 1280px;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.section-dark,
.section-deep {
    position: relative;
    padding: 64px 0;
}

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

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

.section-heading {
    margin-bottom: 64px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    color: var(--accent);
    font-size: 10.4px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.section-kicker::before,
.section-kicker::after {
    content: "";
    width: 40px;
    height: 1px;
    background: currentColor;
}

.section-kicker--left::after {
    display: none;
}

.section-kicker--center {
    justify-content: center;
}

.section-title {
    margin: 0 0 18px;
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: 44.8px;
    font-weight: 500;
    line-height: 1.24;
}

.section-title--center {
    text-align: center;
}

.section-title--split em {
    display: block;
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.section-copy {
    max-width: 576px;
    margin: 0;
    color: var(--muted);
    font-size: 14.4px;
    line-height: 1.9;
}

.section-copy--center {
    margin: 0 auto;
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 10.9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.btn-gold:hover {
    background: #d3b57d;
    color: var(--bg-hero);
    transform: translateY(-1px);
}

.btn-outline-gold {
    position: relative;
    border: 1px solid var(--accent);
    color: var(--accent);
    overflow: hidden;
    transition: color 0.38s ease;
    z-index: 0;
}

.btn-outline-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.btn-outline-gold:hover {
    color: var(--bg-hero);
}

.btn-outline-gold:hover::before {
    transform: scaleX(1);
}

.btn-inline .icon {
    width: 13px;
    height: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 11.2px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-link:hover {
    color: #d8bc8a;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(15, 13, 12, 0.94);
    border-bottom-color: rgba(201, 169, 110, 0.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.site-navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    gap: 32px;
}

.site-brand img {
    height: 48px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-nav a,
.site-short-number,
.btn-header {
    color: #c8bfb0;
    font-size: 11.2px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-nav a:hover,
.site-short-number:hover,
.site-nav a.is-active {
    color: var(--accent);
}

.site-nav a.is-active {
    position: relative;
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    animation: nav-underline 0.25s ease forwards;
}

@keyframes nav-underline {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.site-actions {
    align-items: center;
    gap: 20px;
}

.site-short-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-short-number .icon {
    color: var(--accent);
}

.btn-header {
    min-height: 34px;
    padding: 8px 24px;
}

.nav-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    color: var(--body);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
    top: 14px;
}

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

.nav-toggle span:nth-child(3) {
    top: 28px;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 0;
}

.header-phones a {
    color: #f4ece1;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.25;
    white-space: nowrap;
}

.header-phones a:hover {
    color: var(--accent);
}

.header-phones__note {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
}

.header-phones__note .icon {
    width: 12px;
    height: 12px;
}

@media (max-width: 374.98px) {
    .header-phones a {
        font-size: 11px;
    }
    .header-phones__note {
        letter-spacing: 0.12em;
    }
}

.hero {
    position: relative;
    min-height: 852px;
    padding: 152px 0 44px;
    overflow: hidden;
    background: var(--bg-hero);
    isolation: isolate;
}

.hero-backdrop,
.hero::before,
.hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.hero-backdrop {
    inset: 0;
    z-index: -2;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.75) 100%), linear-gradient(90deg, rgba(12, 10, 9, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(12, 10, 9, 0.3) 100%), linear-gradient(180deg, rgba(12, 10, 9, 0.6) 0%, rgba(12, 10, 9, 0.3) 50%, rgba(12, 10, 9, 0.7) 100%), url("../images/hero-bg.jpg") center/cover no-repeat;
}

.hero::before,
.hero::after {
    display: none;
}

.hero-shell,
.guide-section .site-shell,
.about-section .site-shell,
.advantages-section .site-shell,
.services-section .site-shell,
.gallery-section .site-shell,
.testimonials-section .site-shell,
.form-section .site-shell,
.contact-section .site-shell,
.site-footer .site-shell {
    position: relative;
    z-index: 1;
}

.hero-side {
    position: absolute;
    z-index: -1;
    object-fit: cover;
    filter: brightness(0.3);
}

.hero-side--left {
    left: 0;
    bottom: 0;
    width: 288px;
    height: 639px;
    mask-image: linear-gradient( to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%), linear-gradient( to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient( to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%), linear-gradient( to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
}

.hero-side--right {
    right: 0;
    top: 170px;
    width: 288px;
    height: 682px;
    mask-image: linear-gradient( to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%), linear-gradient( to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient( to left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 100%), linear-gradient( to bottom, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-composite: source-in;
}

.hero-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border-top: 1px solid rgba(201, 169, 110, 0.4);
    z-index: 1;
}

.hero-corner::after {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 1px;
    background: rgba(201, 169, 110, 0.4);
}

.hero-corner--tl {
    top: 96px;
    left: 24px;
}

.hero-corner--tl::after {
    left: 0;
}

.hero-corner--tr {
    top: 96px;
    right: 24px;
}

.hero-corner--tr::after {
    right: 0;
}

.hero-title {
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-title span {
    color: var(--accent);
}

.hero-lead {
    margin: 22px auto 0;
    max-width: 477px;
    color: var(--body);
    font-size: 16px;
    line-height: 1.8;
}

.hero-lead__num {
    color: #fff;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
}

.hero-card {
    margin: 78px auto 0;
    max-width: 576px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(20, 15, 13, 0.85);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-card__intro {
    padding: 20px 24px 16px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    text-align: center;
}

.hero-card__intro h2 {
    margin: 0 0 8px;
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: 17.6px;
    font-weight: 600;
    line-height: 1.3;
}

.hero-card__intro p,
.hero-card__note {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.hero-form {
    padding: 16px 24px 18px;
}

.hero-form__row {
    display: flex;
    gap: 12px;
}

.phone-field {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-height: 47px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    overflow: hidden;
}

.phone-field span {
    padding: 0 12px;
    color: var(--muted);
    font-size: 13.6px;
    font-weight: 400;
}

.phone-field input {
    width: 100%;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--body);
    font-size: 13.6px;
    outline: 0;
}

.phone-field input::placeholder {
    color: var(--subtle);
}

.hero-card__note {
    margin-top: 16px;
    color: #6a5f57;
    font-size: 10.4px;
    text-align: center;
}

.hero-card__note a {
    color: var(--accent);
    text-decoration: underline;
    white-space: nowrap;
}

.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 52px;
    color: rgba(201, 169, 110, 0.55);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scroll-float 2.4s ease-in-out infinite;
    transition: color 0.25s ease;
}

.hero-scroll:hover {
    color: rgba(201, 169, 110, 0.9);
}

.hero-scroll .icon {
    width: 16px;
    height: 16px;
    animation: scroll-arrow 2.4s ease-in-out infinite;
}

.hero-scroll__mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll__finger {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-scroll__finger svg {
    width: 28px;
    height: 28px;
    animation: swipe-finger 2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.hero-scroll__swipe-label {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
}

@keyframes swipe-finger {
    0% {
        transform: translateY(6px);
        opacity: 0.4;
    }
    20% {
        transform: translateY(6px);
        opacity: 1;
    }
    70% {
        transform: translateY(0);
        opacity: 0.9;
    }
    85% {
        transform: translateY(0);
        opacity: 0;
    }
    86% {
        transform: translateY(6px);
        opacity: 0;
    }
    100% {
        transform: translateY(6px);
        opacity: 0.4;
    }
}

@media (max-width: 767.98px) {
    .hero-scroll__desktop {
        display: none;
    }
    .hero-scroll__mobile {
        display: flex;
    }
    .hero-scroll {
        animation: swipe-float 2s ease-in-out infinite;
    }
}

@keyframes swipe-float {
    0%,
    100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scroll-float {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

@keyframes scroll-arrow {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(4px);
        opacity: 1;
    }
}

.guide-section {
    border-top: 1px solid rgba(201, 169, 110, 0.4);
    border-bottom: 1px solid rgba(201, 169, 110, 0.4);
}

.guide-image {
    position: relative;
    height: 460px;
    overflow: visible;
    background: #101010;
}

.guide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 22, 20, 0.7) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(90deg, rgba(26, 22, 20, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(26, 22, 20, 0.8) 100%);
}

.guide-image__frame {
    position: absolute;
    z-index: 1;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 169, 110, 0.5);
}

.guide-image__frame--top {
    top: 16px;
    left: 16px;
    border-right: 0;
    border-bottom: 0;
}

.guide-image__frame--bottom {
    right: 16px;
    bottom: 16px;
    border-left: 0;
    border-top: 0;
}

.guide-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    width: 127px;
    padding: 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    background: var(--bg-deep);
    text-align: center;
}

.guide-badge strong {
    display: block;
    color: var(--accent);
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}

.guide-badge strong span {
    font-size: 16px;
}

.guide-badge>span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 11.2px;
    line-height: 1.4;
}

.number-list {
    display: grid;
    gap: 12px;
    margin: 32px 0 40px;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.number-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--body);
    font-size: 13.6px;
    line-height: 1.6;
    counter-increment: steps;
}

.number-list li::before {
    content: counter(steps);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--accent);
    font-family: "Playfair Display", serif;
    font-size: 12px;
    font-weight: 600;
}


/* ── Lightbox ──────────────────────────────────────── */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
}

.lightbox__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
}

.lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(0.94);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open .lightbox__img {
    transform: scale(1);
}

.lightbox__img {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.15s ease;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background: none;
    color: var(--body);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    z-index: 1;
}

.lightbox__close svg {
    width: 18px;
    height: 18px;
}

.lightbox__close:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background: none;
    color: var(--body);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    z-index: 1;
}

.lightbox__nav svg {
    width: 20px;
    height: 20px;
}

.lightbox__nav:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

.gallery-slide {
    cursor: zoom-in;
}


/* ── Modal ─────────────────────────────────────────── */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 8, 7, 0.82);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background: var(--bg);
    transform: translateY(24px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.is-open .modal-box {
    transform: translateY(0) scale(1);
}

.modal-box__close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-box__close:hover {
    color: var(--accent);
}

.modal-box__close .icon {
    width: 18px;
    height: 18px;
}

.modal-box__title {
    margin: 8px 0 28px;
    font-size: 26px;
}

.modal-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-form__full {
    grid-column: 1 / -1;
}

.modal-box--thanks {
    max-width: 440px;
    text-align: center;
    padding: 56px 48px 48px;
}

.modal-box__title--center {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

.thanks-circle {
    stroke-dasharray: 131.9;
    stroke-dashoffset: 131.9;
    transition: stroke-dashoffset 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.modal-overlay.is-open .thanks-circle {
    stroke-dashoffset: 0;
}

.thanks-check {
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    opacity: 0;
    transition: stroke-dashoffset 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.7s, opacity 0s linear 0.7s;
}

.modal-overlay.is-open .thanks-check {
    stroke-dashoffset: 0;
    opacity: 1;
}

.thanks-text {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.thanks-btn {
    width: 100%;
}

@media (max-width: 575.98px) {
    .modal-box {
        padding: 32px 24px;
    }
    .modal-box--thanks {
        padding: 44px 24px 36px;
    }
    .modal-form__fields {
        grid-template-columns: 1fr;
    }
}

.faq-card {
    margin-top: 64px;
    padding: 32px;
    border: 1px solid var(--line);
    background: #120f0e;
}

.faq-card h3 {
    margin: 18px 0 18px;
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: 22.4px;
    font-weight: 500;
    line-height: 1.35;
}

.faq-card p {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14.08px;
    line-height: 1.9;
}

.faq-card p span {
    color: var(--accent);
}

.faq-card__details {
    height: 0;
    margin-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.78s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.46s cubic-bezier(0.16, 1, 0.3, 1), margin-bottom 0.78s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: height, opacity;
}

.faq-card__details.is-opening,
.faq-card__details.is-open {
    margin-bottom: 20px;
    opacity: 1;
}

.faq-card__details strong {
    color: var(--body);
    font-weight: 400;
}

.faq-card__details>*,
.faq-card__grid>*,
.faq-list li {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1), transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card__details.is-open>*,
.faq-card__details.is-open .faq-card__grid>*,
.faq-card__details.is-open .faq-list li {
    opacity: 1;
    transform: none;
}

.faq-card__details.is-opening> :nth-child(1) {
    animation: faqFadeUp 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.08s;
}

.faq-card__details.is-opening> :nth-child(2) {
    animation: faqFadeUp 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.16s;
}

.faq-card__details.is-opening> :nth-child(3) {
    animation: faqFadeUp 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.24s;
}

.faq-card__details.is-opening> :nth-child(4) {
    animation: faqFadeUp 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.32s;
}

.faq-card__details.is-opening> :nth-child(5) {
    animation: faqFadeUp 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.faq-card__details.is-opening .faq-card__grid>* {
    animation: faqFadeUp 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-card__details.is-opening .faq-card__grid> :nth-child(1) {
    animation-delay: 0.28s;
}

.faq-card__details.is-opening .faq-card__grid> :nth-child(2) {
    animation-delay: 0.36s;
}

.faq-card__details.is-opening .faq-list li {
    animation: faqFadeUp 0.56s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-card__details.is-opening .faq-list li:nth-child(1) {
    animation-delay: 0.34s;
}

.faq-card__details.is-opening .faq-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.faq-card__details.is-opening .faq-list li:nth-child(3) {
    animation-delay: 0.46s;
}

.faq-card__details.is-opening .faq-list li:nth-child(4) {
    animation-delay: 0.52s;
}

.faq-card__details.is-opening .faq-list li:nth-child(5) {
    animation-delay: 0.58s;
}

.faq-card__details p:last-child,
.faq-card__details ul:last-child {
    margin-bottom: 0;
}

.faq-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 8px 0 20px;
}

.faq-card__column h4 {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 9.92px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-list li {
    position: relative;
    padding-left: 12px;
    color: var(--muted);
    font-size: 13.6px;
    line-height: 1.7;
}

.faq-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

.faq-card__conclusion {
    color: var(--body);
}

.faq-toggle {
    padding: 0;
    cursor: pointer;
    font-size: 12.48px;
    letter-spacing: 0.08em;
    text-transform: none;
}

.faq-toggle .icon {
    transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-toggle.is-open .icon {
    transform: rotate(180deg);
}

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

.about-divider,
.footer-line {
    width: 64px;
    height: 1px;
    margin: 22px 0 30px;
    background: rgba(201, 169, 110, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 40px 0 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.stats-grid strong {
    display: block;
    color: var(--accent);
    font-family: "Playfair Display", serif;
    font-size: 25.6px;
    font-weight: 600;
    line-height: 1;
}

.stats-grid span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11.2px;
}

.about-collage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-card {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.about-card img {
    min-height: inherit;
}

.about-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 13, 12, 0) 45%, rgba(15, 13, 12, 0.55) 100%);
}

.about-card--wide {
    grid-column: 1 / -1;
    height: 300px;
}

.about-card--wide span {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 1;
    color: var(--accent);
    font-size: 9.6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.collage-accent {
    position: absolute;
    border: 1px solid rgba(201, 169, 110, 0.3);
    pointer-events: none;
}

.collage-accent--large {
    left: -16px;
    bottom: -16px;
    width: 80px;
    height: 80px;
}

.collage-accent--small {
    top: -16px;
    right: -16px;
    width: 48px;
    height: 48px;
}

.feature-card,
.service-card__body,
.testimonial-card,
.contact-card {
    height: 100%;
    border: 1px solid var(--line);
    background: var(--panel);
}

.feature-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 32px 32px 28px;
    transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.36s ease, background-color 0.36s ease, box-shadow 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: -32% auto auto -18%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.14) 0%, rgba(201, 169, 110, 0) 72%);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.feature-card::after {
    content: "";
    position: absolute;
    right: 32px;
    bottom: 0;
    left: 32px;
    height: 1px;
    background: linear-gradient( 90deg, rgba(201, 169, 110, 0) 0%, rgba(201, 169, 110, 0.82) 50%, rgba(201, 169, 110, 0) 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.36s ease, transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    color: var(--accent);
    transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.36s ease, background-color 0.36s ease, color 0.36s ease;
}

.icon-box .icon {
    width: 28px;
    height: 28px;
}

.icon-box .icon,
.feature-card h3,
.feature-card p {
    transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), color 0.36s ease, opacity 0.36s ease;
}

.icon-box--sm {
    width: 46px;
    height: 46px;
    margin-bottom: 0;
}

.icon-box--sm .icon {
    width: 20px;
    height: 20px;
}

.feature-card h3,
.service-card h3,
.contact-card h3 {
    margin: 0 0 14px;
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: 17.6px;
    font-weight: 500;
    line-height: 1.35;
}

.feature-card p,
.service-card p,
.contact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13.6px;
    line-height: 1.8;
}

@media (hover: hover) and (pointer: fine) {
    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(201, 169, 110, 0.42);
        background: linear-gradient(180deg, rgba(26, 22, 20, 0.96) 0%, rgba(18, 15, 14, 1) 100%);
        box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
    }
    .feature-card:hover::before {
        opacity: 1;
        transform: translateY(0);
    }
    .feature-card:hover::after {
        opacity: 1;
        transform: translateY(0);
    }
    .feature-card:hover .icon-box {
        transform: translateY(-4px) scale(1.04);
        border-color: rgba(201, 169, 110, 0.55);
        background: rgba(201, 169, 110, 0.08);
        color: #e1c28c;
    }
    .feature-card:hover .icon-box .icon {
        transform: rotate(-5deg) scale(1.05);
    }
    .feature-card:hover h3 {
        color: #f7f1e2;
    }
    .feature-card:hover p {
        color: #c8bfb0;
    }
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 26px 58px rgba(0, 0, 0, 0.26);
    }
}

.services-grid {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
    align-items: stretch;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: transform 0.52s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 0%, rgba(15, 13, 12, 0.4) 50%, #0f0d0c 100%);
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 24px;
    border: 1px solid var(--line);
    border-top: 0;
    background: var(--panel-soft);
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
}

.service-card__body .text-link {
    margin-top: auto;
    padding-top: 24px;
}

.services-section .section-heading {
    margin-bottom: 64px;
}

.services-section .section-copy--center {
    line-height: 1.9;
}

.services-section .text-link {
    font-size: 11.2px;
    line-height: 1.5;
}

.services-section .text-link .icon {
    width: 14px;
    height: 14px;
}

.gallery-section {
    overflow: hidden;
}

.gallery-splide {
    overflow: visible;
}

.gallery-splide .splide__track {
    overflow: visible;
}

.gallery-splide .splide__list {
    align-items: stretch;
}

.gallery-splide .splide__slide {
    position: relative;
    z-index: 0;
    transition: z-index 0s 0.45s;
    width: clamp(180px, 22vw, 254px);
}

.gallery-slide {
    position: relative;
    aspect-ratio: 0.72;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: #0f0d0c;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.45s ease;
}

.gallery-splide .splide__slide:hover {
    z-index: 2;
    transition: z-index 0s;
}

.gallery-slide:hover {
    transform: scale(1.06);
    border-color: rgba(201, 169, 110, 1);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(201, 169, 110, 0.8);
}

.gallery-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.06);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-slide:hover::after {
    opacity: 1;
}

.gallery-slide img {
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.16fr 1.12fr 1.24fr 0.6fr;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    min-height: 230px;
}

.gallery-item img {
    height: 100%;
}

.gallery-item--narrow {
    grid-column: 1 / 2;
    grid-row: 1;
}

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

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

.gallery-item--wide {
    grid-column: 4 / 5;
    grid-row: 1;
}

.gallery-item--slim {
    grid-column: 5 / 6;
    grid-row: 1;
}

.gallery-item--narrow,
.gallery-item--slim,
.gallery-item--tail {
    min-height: 230px;
}

.gallery-item--large {
    min-height: 164px;
    grid-column: 1 / 2;
    grid-row: 2;
}

.gallery-item--medium {
    min-height: 164px;
    grid-column: 2 / 4;
    grid-row: 2;
}

.gallery-item--hero {
    min-height: 164px;
    grid-column: 4 / 5;
    grid-row: 2;
}

.gallery-item--tail {
    grid-column: 5 / 6;
    grid-row: 2;
}

.testimonials-section {
    overflow-x: hidden;
}

.testimonials-watermark {
    position: absolute;
    top: 312px;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
    color: #2a221e;
    font-family: "Playfair Display", serif;
    font-size: 192px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
    pointer-events: none;
}

.testimonials-splide {
    margin-top: 2px;
}

.testimonials-splide .splide__track {
    overflow: visible;
    padding-top: 12px;
    margin-top: -12px;
}

.testimonials-splide .splide__list {
    align-items: stretch;
}

.testimonials-splide .splide__slide {
    height: auto;
}

.testimonials-splide .splide__slide>* {
    height: 100%;
}

.testimonial-card {
    position: relative;
    min-height: 373px;
    padding: 32px 32px 34px;
    border-color: #2a221e;
    background: #120f0e;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
    cursor: default;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 169, 110, 0.25);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover::before {
    border-color: rgba(201, 169, 110, 0.15);
}

.testimonial-card:hover .testimonial-quote {
    color: var(--accent);
    transition: color 0.3s ease;
}

.testimonial-quote {
    display: inline-flex;
    color: rgba(201, 169, 110, 0.72);
}

.testimonial-quote .icon {
    width: 28px;
    height: 28px;
}

.testimonial-card p {
    margin: 38px 0 24px;
    color: var(--body);
    max-width: 324px;
    font-family: "Playfair Display", serif;
    font-size: 14.4px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-meta {
    padding-top: 20px;
}

.testimonial-meta::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    margin-bottom: 20px;
    background: rgba(201, 169, 110, 0.5);
}

.testimonial-meta strong {
    display: block;
    color: #f0ead6;
    font-size: 13.6px;
    font-weight: 700;
    line-height: 20.4px;
}

.testimonial-meta span {
    display: block;
    color: #9a8c7a;
    font-size: 12px;
    line-height: 18px;
}

.testimonial-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.testimonial-indicator {
    position: static;
    inset: auto;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.testimonial-indicator li {
    margin: 0;
    line-height: 0;
}

.testimonial-indicator .splide__pagination__page {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    border: 1px solid #4a3e35;
    border-radius: 999px;
    background: #2a221e;
    opacity: 1;
    box-shadow: none;
    transition: width 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.testimonial-indicator .splide__pagination__page.is-active {
    width: 28px;
    background: var(--accent);
    border-color: var(--accent);
    transform: none;
}

.testimonial-indicator .splide__pagination__page:focus-visible {
    outline: 2px solid rgba(201, 169, 110, 0.45);
    outline-offset: 4px;
}

.form-section .form-shell {
    max-width: 896px;
    margin: 0 auto;
}

.form-panel {
    padding: 49px;
    border: 1px solid var(--line);
    background: var(--bg);
}

.form-label {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 9.6px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-field {
    min-height: 52px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: var(--bg-deep);
    color: var(--body);
    box-shadow: none;
}

.form-field,
.form-field::placeholder,
.form-select.form-field {
    font-size: 14.4px;
    font-weight: 300;
}

.form-select.form-field {
    color: var(--body);
}

.form-field::placeholder {
    color: var(--subtle);
}

.form-field:focus {
    border-color: rgba(201, 169, 110, 0.45);
    background: var(--bg-deep);
    color: var(--body);
    box-shadow: 0 0 0 0.18rem rgba(201, 169, 110, 0.08);
}

.form-field--textarea {
    min-height: 117px;
    resize: vertical;
}

.form-privacy {
    margin: 22px 0 0;
    color: var(--subtle);
    font-size: 11.52px;
    line-height: 1.5;
}

.form-consent {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 0;
    cursor: pointer;
    user-select: none;
}

.form-consent__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-consent__box {
    flex-shrink: 0;
    position: relative;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    background: transparent;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-consent__check {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 8px;
    height: 7px;
    color: var(--bg-deep);
    opacity: 0;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: opacity 0.15s ease, stroke-dashoffset 0.25s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}

.form-consent__input:checked+.form-consent__box {
    border-color: var(--accent);
    background: var(--accent);
    transform: scale(1.08);
}

.form-consent__input:checked+.form-consent__box .form-consent__check {
    opacity: 1;
    stroke-dashoffset: 0;
}

.form-consent:active .form-consent__box {
    transform: scale(0.9);
}

.form-consent__label {
    color: var(--subtle);
    font-size: 11.52px;
    line-height: 1.5;
}

.form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.form-status {
    min-height: 18px;
    margin: 0;
    color: var(--accent);
    font-size: 12px;
    font-weight: 400;
}

.contact-card {
    padding: 28px;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.contact-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-card__line {
    width: 32px;
    height: 1px;
    margin: 18px 0 18px;
    background: rgba(201, 169, 110, 0.4);
}

.contact-card__body {
    display: grid;
    gap: 12px;
}

.contact-card__body span {
    display: block;
    color: var(--muted);
    font-size: 11.52px;
    line-height: 1.5;
}

.contact-card__body strong,
.contact-value {
    display: block;
    color: var(--body);
    font-size: 12.8px;
    font-weight: 400;
    line-height: 1.6;
}

.contact-value {
    color: var(--accent);
}

.contact-card__accent {
    color: var(--accent);
    font-weight: 700;
}

@media (hover: hover) and (pointer: fine) {
    .contact-card:hover {
        transform: translateY(-10px);
        border-color: rgba(201, 169, 110, 0.42);
        background: linear-gradient(180deg, rgba(26, 22, 20, 0.96) 0%, rgba(18, 15, 14, 1) 100%);
        box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
    }
    .contact-card:hover h3 {
        color: #f7f1e2;
    }
    .contact-card:hover p,
    .contact-card:hover .contact-card__body span,
    .contact-card:hover .contact-card__body strong {
        color: #c8bfb0;
    }
    .contact-card:hover .contact-card__accent,
    .contact-card:hover .contact-value {
        color: #e1c28c;
    }
    .contact-card:hover .contact-card__line {
        background: rgba(201, 169, 110, 0.65);
    }
}

.map-section {
    position: relative;
    min-height: 450px;
}

.map-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 32px 12px;
    border-top: 1px solid var(--line);
    background: rgba(15, 13, 12, 0.96);
}

.map-topbar__address {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 9.6px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.map-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.map-topbar__link {
    color: var(--accent);
    font-size: 9.6px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer {
    background: var(--bg-footer);
}

.footer-cta {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px 32px;
}

.footer-cta h2 {
    margin: 0 0 4px;
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: 20.8px;
    font-weight: 500;
    line-height: 1.4;
}

.footer-cta p {
    margin: 0;
    color: var(--muted);
    font-size: 13.6px;
}

.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

.footer-main {
    padding: 64px 0 52px;
}

.footer-brand img {
    height: 120px;
    width: auto;
}

.footer-copy {
    max-width: 274px;
    margin: 0;
    color: var(--muted);
    font-size: 13.12px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    color: var(--accent);
}

.footer-social a .icon {
    width: 14px;
    height: 14px;
}

.footer-social a:hover {
    border-color: var(--accent);
}

.footer-title {
    margin: 0;
    color: var(--text);
    font-size: 10.4px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li+li,
.footer-contact li+li {
    margin-top: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: var(--muted);
    font-size: 13.12px;
    line-height: 1.6;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    transition: color 0.25s ease;
}

.footer-links a::before {
    content: "→";
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-right: 0;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
    transition: color 0.25s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
    margin-right: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact .icon {
    margin-top: 4px;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid #1a1614;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 32px;
}

.footer-bottom__inner>a,
.footer-meta {
    color: #b19561;
    font-size: 11.52px;
}

.footer-bottom__inner>a {
    overflow-wrap: anywhere;
}

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: #4a3e35;
}

.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 20px 28px;
    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-credit span {
    font-family: "Hooskai", sans-serif;
    font-style: normal;
    letter-spacing: 0.08em;
}

.footer-credit__link {
    display: block;
    line-height: 0;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.footer-credit__link:hover {
    opacity: 0.75;
    transform: translateY(3px) scale(1.04);
    filter: brightness(1.3) drop-shadow(0 4px 12px rgba(201, 169, 110, 0.4));
}

.footer-credit svg {
    display: block;
    width: 160px;
    height: auto;
}

@media (max-width: 1199.98px) {
    .hero::before,
    .hero::after {
        display: none;
    }
    .hero-title {
        font-size: 56px;
    }
    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .gallery-item,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item--slim,
    .gallery-item--tail,
    .gallery-item--large,
    .gallery-item--medium,
    .gallery-item--hero,
    .gallery-item--wide,
    .gallery-item--narrow {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    .gallery-item--slim,
    .gallery-item--tail {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        background: rgba(15, 13, 12, 0.96);
        border-bottom-color: rgba(201, 169, 110, 0.18);
        backdrop-filter: blur(12px);
    }
    .services-grid {
        --bs-gutter-x: 24px;
        --bs-gutter-y: 24px;
    }
    .faq-card__grid {
        grid-template-columns: 1fr;
    }
    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: grid;
        gap: 14px;
        padding: 24px;
        border: 1px solid rgba(201, 169, 110, 0.18);
        background: rgba(15, 13, 12, 0.98);
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.28s ease;
    }
    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .site-nav a {
        color: var(--body);
        padding: 6px 0;
        font-size: 13px;
        letter-spacing: 0.12em;
        display: inline-block;
    }
    .hero {
        min-height: auto;
        padding-top: 132px;
        padding-bottom: 56px;
    }
    .hero-form__row,
    .footer-cta__inner,
    .footer-bottom__inner,
    .testimonial-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-form__row>* {
        width: 100%;
    }
    .guide-badge {
        right: 16px;
        bottom: 16px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .gallery-splide .splide__slide {
        width: clamp(168px, 30vw, 220px);
    }
    .gallery-item--narrow,
    .gallery-item--wide,
    .gallery-item--large,
    .gallery-item--medium,
    .gallery-item--hero,
    .gallery-item--slim,
    .gallery-item--tail {
        grid-column: auto;
    }
    .testimonials-watermark {
        font-size: 120px;
        top: 340px;
    }
    .map-topbar {
        padding: 12px 20px;
    }
    .footer-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .g-5,
    .gx-5 {
        --bs-gutter-x: 1.25rem;
    }
    .g-5,
    .gy-5 {
        --bs-gutter-y: 1.25rem;
    }
    .section-dark,
    .section-deep {
        padding: 48px 0;
    }
    .site-navbar {
        min-height: 72px;
        gap: 16px;
    }
    .site-brand {
        flex: 0 1 auto;
        min-width: 0;
    }
    .site-brand img {
        height: 40px;
        max-width: 100%;
    }
    .hero-title,
    .section-title {
        font-size: 36px;
        line-height: 1.2;
    }
    .hero-lead,
    .section-copy {
        font-size: 14px;
    }
    .section-kicker {
        flex-wrap: wrap;
        gap: 10px;
        letter-spacing: 0.22em;
    }
    .section-kicker::before,
    .section-kicker::after {
        width: 28px;
    }
    .hero-card__intro,
    .hero-form,
    .faq-card,
    .feature-card,
    .service-card__body,
    .testimonial-card,
    .contact-card,
    .form-panel {
        padding-right: 20px;
        padding-left: 20px;
    }
    .faq-card,
    .form-panel {
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .number-list li {
        align-items: flex-start;
        gap: 12px;
    }
    .guide-image {
        height: clamp(300px, 78vw, 420px);
    }
    .guide-badge {
        right: 12px;
        bottom: 12px;
        max-width: calc(100% - 24px);
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .about-collage {
        grid-template-columns: 1fr;
    }
    .about-card--wide {
        grid-column: auto;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-splide .splide__slide {
        width: clamp(150px, 54vw, 190px);
    }
    .testimonials-watermark {
        display: none;
    }
    .map-section {
        min-height: 320px;
    }
    .map-topbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
    }
    .map-topbar__address,
    .contact-card__head,
    .footer-social {
        flex-wrap: wrap;
    }
    .map-topbar__address {
        gap: 8px;
        align-items: flex-start;
    }
    .footer-cta__inner {
        padding: 32px 16px;
    }
    .footer-bottom__inner {
        padding: 20px 16px;
    }
    .footer-meta {
        gap: 12px;
    }
}


/* Universal anti-overflow safeguards */

.contact-card,
.contact-card__body,
.footer-contact,
.hero-card__note,
.faq-card,
.faq-card__details,
.section-copy,
.testimonial-card,
.feature-card,
.form-panel {
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.contact-value,
.footer-contact a,
.footer-links a,
.map-topbar__address,
.map-topbar__link,
.hero-card__note a {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.btn {
    white-space: normal;
    text-align: center;
}

.about-collage {
    overflow: hidden;
}

.guide-image {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .guide-badge {
        right: 12px;
        bottom: 12px;
    }
    .map-topbar__address,
    .map-topbar__link {
        font-size: 9.2px;
    }
}


/* Extra-small phones */

@media (max-width: 575.98px) {
    .section-dark,
    .section-deep {
        padding: 40px 0;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 48px;
    }
    .hero-title,
    .section-title {
        font-size: 30px;
    }
    .hero-lead br {
        display: none;
    }
    .section-kicker {
        gap: 8px;
        font-size: 9.6px;
        letter-spacing: 0.18em;
    }
    .section-kicker::before,
    .section-kicker::after {
        width: 20px;
    }
    .section-heading {
        margin-bottom: 44px;
    }
    .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 10.4px;
        letter-spacing: 0.08em;
    }
    .btn-header {
        width: auto;
    }
    .hero-card {
        margin-top: 48px;
    }
    .hero-card__intro h2 {
        font-size: 16px;
    }
    .hero-form__row {
        gap: 10px;
    }
    .hero-scroll {
        margin-top: 36px;
    }
    .phone-field span {
        padding: 0 10px;
    }
    .faq-card {
        margin-top: 40px;
        padding: 22px 16px;
    }
    .faq-card h3 {
        font-size: 19px;
    }
    .faq-card__grid {
        gap: 18px;
    }
    .feature-card {
        padding: 24px 18px;
    }
    .service-card__image {
        height: 220px;
    }
    .service-card__body {
        padding: 22px 18px;
    }
    .service-card h3 {
        font-size: 18px;
    }
    .gallery-splide .splide__slide {
        width: min(70vw, 184px);
    }
    .testimonial-card {
        padding: 24px 18px;
    }
    .form-panel {
        padding: 24px 16px;
    }
    .form-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-card {
        padding: 22px 18px;
    }
    .contact-value {
        font-size: 12.4px;
    }
    .map-topbar {
        padding: 12px 14px;
        gap: 8px;
    }
    .map-topbar__address {
        gap: 6px;
        align-items: flex-start;
        font-size: 8.8px;
        line-height: 1.5;
    }
    .footer-main {
        padding: 48px 0 40px;
    }
    .footer-cta__inner {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 14px;
        gap: 20px;
    }
    .footer-cta__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .footer-cta h2 {
        font-size: 18px;
    }
    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 14px;
    }
    .footer-meta {
        flex-direction: column;
        gap: 6px;
    }
    .guide-badge {
        right: 10px;
        bottom: 10px;
        width: 104px;
        max-width: calc(100% - 20px);
        padding: 16px 14px 12px;
    }
    .guide-badge strong {
        font-size: 26px;
    }
    .guide-badge>span {
        font-size: 10px;
        line-height: 1.35;
    }
    .guide-image {
        height: min(80vw, 340px);
    }
    .guide-image__frame--bottom {
        right: 12px;
        bottom: 12px;
    }
    .stats-grid {
        margin-top: 32px;
        padding-top: 24px;
    }
    .testimonial-actions {
        gap: 18px;
    }
    .testimonial-card p {
        margin-top: 28px;
    }
    .footer-social {
        gap: 10px;
    }
    .container,
    .container-xl,
    .site-shell {
        padding-left: 16px;
        padding-right: 16px;
    }
}
.hero-lead-cta {
    margin-top: 28px;
}

.hero-lead-cta .btn {
    padding: 14px 28px;
}

@keyframes hero-cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.55);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(201, 169, 110, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 110, 0);
    }
}

.hero-cta-pulse {
    animation: hero-cta-pulse 2s cubic-bezier(0.66, 0, 0, 1) infinite;
}

.hero-cta-pulse:hover {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .hero-cta-pulse {
        animation: none;
    }
}

/* --- Правки 18.08.2026: адрес в hero, акцент на транспортировке и коротком номере --- */
.hero-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--body);
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.25s ease;
}

.hero-address .icon {
    flex: none;
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.hero-address:hover {
    color: var(--accent);
}

.hero-lead-cta .btn {
    min-height: 56px;
    padding: 18px 34px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.28);
}

.hero-lead--call {
    margin-top: 16px;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.hero-lead--call .hero-lead__num {
    display: inline-block;
    color: #fff;
    font-size: 1.7em;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: color 0.25s ease;
}

.hero-lead--call .hero-lead__num:hover {
    color: var(--accent);
}

@media (max-width: 767.98px) {
    .hero-address {
        margin-top: 14px;
        font-size: 13px;
    }

    .hero-lead-cta .btn {
        width: 100%;
        padding: 18px 18px;
        font-size: 12.5px;
    }

    .hero-lead--call {
        font-size: 17px;
    }
}
