:root {
    --bg: #f6f0e6;
    --bg-soft: #fffaf2;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #fffdf9;
    --surface-deep: #f1e2cc;
    --ink: #1f2937;
    --muted: #5f6b7a;
    --line: rgba(31, 41, 55, 0.1);
    --line-strong: rgba(84, 56, 21, 0.16);
    --brand: #c48a2c;
    --brand-deep: #8e5d12;
    --brand-soft: #f6e8c8;
    --accent: #5b6e4f;
    --accent-soft: #edf3e2;
    --royal: #0056A5;
    --royal-deep: #003f7a;
    --royal-soft: #d8ebff;
    --royal-glow: rgba(0, 86, 165, 0.18);
    --shadow: 0 24px 60px rgba(43, 33, 22, 0.12);
    --shadow-soft: 0 18px 38px rgba(43, 33, 22, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1440px;
    --header-height: 174px;
    --wheat-ornament: url("../images/img-032.svg");
    --motion-quick: 0.24s;
    --motion-smooth: 0.42s;
    --motion-emphasis: 0.56s;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(196, 138, 44, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(91, 110, 79, 0.12), transparent 20%),
        linear-gradient(180deg, #fffaf3 0%, var(--bg) 100%);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, transparent, black 16%, black 84%, transparent);
}

body::after {
    content: "";
    position: fixed;
    right: -12px;
    bottom: 8%;
    width: 150px;
    height: 300px;
    pointer-events: none;
    opacity: 0.07;
    background-image: var(--wheat-ornament);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    transform: rotate(8deg);
    animation: driftOrnament 18s ease-in-out infinite;
}

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

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

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

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(255, 249, 240, 0.8);
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
    background: rgba(255, 250, 243, 0.95);
    border-color: rgba(31, 41, 55, 0.04);
    box-shadow: 0 18px 35px rgba(43, 33, 22, 0.08);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    min-height: var(--header-height);
}

.header-cta {
    flex-shrink: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    min-width: fit-content;
}

.brand-logo {
    display: block;
    width: auto;
    height: 150px;
    max-width: min(440px, 62vw);
    object-fit: contain;
    transition: height 0.3s ease;
}

.header.is-scrolled .brand-logo {
    height: 150px;
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: white;
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.brand-title,
.brand-subtitle {
    display: block;
}

.brand-title {
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: 12px;
    flex-wrap: nowrap;
}

.nav a {
    display: inline-block;
    color: var(--muted);
    flex: 0 0 auto;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    transition:
        color 0.78s cubic-bezier(0.22, 1, 0.36, 1),
        text-shadow 0.78s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    padding: 6px 1px;
    overflow: hidden;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 12%;
    bottom: -6px;
    width: 76%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(196, 138, 44, 0), rgba(196, 138, 44, 0.92) 18%, rgba(142, 93, 18, 0.9) 82%, rgba(142, 93, 18, 0));
    box-shadow: 0 0 18px rgba(196, 138, 44, 0.18);
    opacity: 0;
    transform: scaleX(0.35) translateY(8px);
    transform-origin: center;
    transition:
        transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(196, 138, 44, 0.14), transparent 68%);
    opacity: 0;
    transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.nav a span,
.nav a {
    isolation: isolate;
}

.nav a strong,
.nav a em {
    font-style: normal;
    font-weight: inherit;
}

.nav a::selection {
    background: rgba(196, 138, 44, 0.18);
}

.nav a::marker {
    content: "";
}

.nav a::before {
    background:
        radial-gradient(circle at 50% 50%, rgba(196, 138, 44, 0.14), transparent 48%),
        radial-gradient(circle at 50% 50%, rgba(196, 138, 44, 0.1), transparent 74%);
}

.nav a::after {
    background-size: 200% 100%;
    animation: navUnderlineIdle 6.5s ease-in-out infinite;
}

.nav a:hover,
.nav a:focus-visible,
.nav a:active,
.nav a.is-active {
    color: var(--brand-deep);
    text-shadow: 0 0 16px rgba(196, 138, 44, 0.12);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    all: unset;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 6px 1px;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-dropdown summary::after {
    content: "▾";
    font-size: 0.7rem;
    opacity: 0.7;
}

.nav-dropdown[open] summary,
.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible {
    color: var(--brand-deep);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid rgba(31, 41, 55, 0.1);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(43, 33, 22, 0.12);
    padding: 10px 0;
    z-index: 20;
    display: grid;
    gap: 4px;
}

.nav-dropdown-menu a {
    display: block;
    color: var(--muted);
    padding: 10px 18px;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    color: var(--brand-deep);
    background: rgba(196, 138, 44, 0.08);
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.header .btn-outline {
    color: #ffffff;
    border-color: rgba(142, 93, 18, 0.16);
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    box-shadow: 0 18px 28px rgba(142, 93, 18, 0.22);
}

.header .btn-outline:hover,
.header .btn-outline:focus-visible,
.header .btn-outline:active {
    box-shadow:
        0 24px 40px rgba(142, 93, 18, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 24px rgba(196, 138, 44, 0.14);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a:active::after,
.nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1) translateY(0);
}

.nav a:hover::before,
.nav a:focus-visible::before,
.nav a:active::before,
.nav a.is-active::before {
    opacity: 1;
    animation: navHaloPulse 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-panel {
    position: static;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
    z-index: auto;
}

/* == Carousel: equal slide heights == */
:root {
    --carousel-height: 360px; /* Измените значение на нужную высоту */
}

.carousel-inner,
.carousel-item {
    height: var(--carousel-height);
}

.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-item img,
.carousel-item picture,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* заполняет слайд по высоте/ширине, может обрезать края */
    display: block;
}

/* Поддержка для варианта, когда контент внутри слайда — блоки */
.carousel-item > * {
    max-height: 100%;
    width: 100%;
}

/* При желании можно принудительно задать фиксированную высоту для маленьких экранов */
@media (max-width: 600px) {
    :root { --carousel-height: 240px; }
}

.nav-panel a {
    width: auto;
}

.nav-panel-title {
    display: none;
}

.nav-panel-close {
    display: none;
}

.nav-panel .nav-cta {
    display: none;
}

.menu-open .nav-panel {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-toggle {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    position: relative;
    padding: 0;
    border: 1px solid rgba(142, 93, 18, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-deep);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition:
        box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    display: none;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    box-shadow: 0 16px 34px rgba(43, 33, 22, 0.14);
}

.menu-toggle span {
    display: block;
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: translateX(-50%);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.menu-toggle span:nth-child(1) {
    top: 50%;
    margin-top: -7px;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
}

.menu-toggle span:nth-child(3) {
    top: 50%;
    margin-top: 7px;
}

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

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

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

.menu-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(17, 18, 16, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 60;
    display: none;
}

.menu-open .menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 14px 24px;
    min-height: 52px;
    max-width: 100%;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0) translateZ(0);
    transition:
        transform var(--motion-smooth) var(--ease-smooth),
        box-shadow var(--motion-smooth) var(--ease-smooth),
        background-color var(--motion-smooth) var(--ease-smooth),
        border-color var(--motion-smooth) var(--ease-smooth),
        color var(--motion-smooth) var(--ease-smooth),
        filter var(--motion-smooth) var(--ease-smooth);
    will-change: transform, box-shadow, filter;
}

.btn::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.24) 42%, rgba(255, 255, 255, 0.48) 50%, rgba(255, 255, 255, 0.18) 58%, transparent 82%);
    transform: translateX(-135%);
    transition: transform var(--motion-emphasis) var(--ease-smooth);
    pointer-events: none;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.22), transparent 34%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12), transparent 38%);
    opacity: 0;
    transition:
        opacity var(--motion-smooth) var(--ease-smooth),
        filter var(--motion-smooth) var(--ease-smooth);
    pointer-events: none;
    mix-blend-mode: screen;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px) translateZ(0);
    filter: saturate(1.03);
    box-shadow: 0 26px 42px rgba(142, 93, 18, 0.2);
}

.btn:hover::before,
.btn:focus-visible::before,
.btn:active::before {
    transform: translateX(135%);
}

.btn:hover::after,
.btn:focus-visible::after,
.btn:active::after {
    opacity: 1;
    filter: blur(0.2px);
}

.btn:active {
    transform: translateY(0) translateZ(0);
    filter: saturate(1.03);
    box-shadow: 0 26px 42px rgba(142, 93, 18, 0.2);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    box-shadow: 0 18px 28px rgba(142, 93, 18, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline {
    color: var(--brand-deep);
    border-color: rgba(142, 93, 18, 0.24);
    background: rgba(255, 255, 255, 0.84);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
    box-shadow:
        0 28px 46px rgba(142, 93, 18, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 0 24px rgba(196, 138, 44, 0.16);
}

.btn-outline:hover,
.btn-outline:focus-visible,
.btn-outline:active {
    box-shadow:
        0 22px 38px rgba(142, 93, 18, 0.12),
        0 0 0 1px rgba(196, 138, 44, 0.12) inset;
}

@keyframes navHaloPulse {
    0% {
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes navUnderlineIdle {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 18px;
}

.section,
.page-section,
.page-hero,
.hero {
    position: relative;
}

.section {
    padding: 82px 0;
}

.page-section {
    padding: 72px 0;
}

.section-heading,
.section-intro {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.section-intro h2,
.hero h1,
.page-hero h1,
.split-copy h2,
.form-copy h2,
.contacts-copy h2,
.cta-copy h2 {
    font-family: "Unbounded", sans-serif;
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(1.8rem, 3vw, 3.05rem);
    margin-bottom: 12px;
}

.section-heading h2,
.section-intro h2,
.split-copy h2,
.form-copy h2,
.contacts-copy h2,
.cta-copy h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
    margin-bottom: 18px;
}

.hero-text,
.section-intro p,
.section-heading p:last-child,
.content-card p,
.article-card p,
.split-copy p,
.cta-copy p,
.contacts-copy p,
.form-copy p {
    color: var(--muted);
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.content-card .btn {
    margin-top: 16px;
    align-self: flex-start;
}

.hero .hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.94rem, 0.96rem + 0.12vw, 1.04rem);
    line-height: 1.5;
    max-width: 52ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0 18px;
}

.hero,
.page-hero-card,
.content-card,
.review-card,
.service-card,
.advantage-card,
.partner-logo,
.highlight-card,
.stats-strip,
.metric-card,
.icon-card,
.article-card,
.photo-card,
.timeline-card,
.map-card,
.contact-card,
.form-card,
.quote-panel,
.accordion-card,
.gallery-panel,
.visual-notes,
.split-panel,
.spotlight-band,
.cta-panel,
.trust-grid,
.partnership-panel {
    opacity: 0;
    --reveal-y: 34px;
    --hover-lift: 0px;
    --hover-scale: 1;
    transform: translateY(calc(var(--reveal-y) + var(--hover-lift))) scale(var(--hover-scale));
    transition:
        opacity var(--motion-emphasis) var(--ease-smooth),
        transform var(--motion-smooth) var(--ease-smooth),
        box-shadow var(--motion-smooth) var(--ease-smooth),
        border-color var(--motion-smooth) var(--ease-smooth),
        background-color var(--motion-smooth) var(--ease-smooth);
}

.is-visible {
    opacity: 1;
    --reveal-y: 0px;
}

.glass-panel,
.page-hero-card,
.content-card,
.review-card,
.advantage-card,
.partner-logo,
.highlight-card,
.stats-strip,
.metric-card,
.icon-card,
.article-card,
.photo-card,
.timeline-card,
.map-card,
.contact-card,
.form-card,
.quote-panel,
.accordion-card,
.gallery-panel,
.visual-notes,
.split-panel,
.spotlight-band,
.cta-panel {
    position: relative;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
}

.page-hero-card,
.content-card,
.review-card,
.advantage-card,
.metric-card,
.icon-card,
.article-card,
.photo-card,
.timeline-card,
.contact-card,
.quote-panel,
.accordion-card,
.gallery-panel,
.visual-notes,
.split-panel,
.spotlight-band,
.cta-panel {
    padding: 28px;
    overflow: hidden;
}

.hoverable:hover,
.page-hero-card:hover,
.content-card:hover,
.review-card:hover,
.service-card:hover,
.advantage-card:hover,
.partner-logo:hover,
.highlight-card:hover,
.form-card:hover,
.article-card:hover,
.icon-card:hover,
.photo-card:hover,
.timeline-card:hover,
.contact-card:hover,
.visual-notes:hover,
.spotlight-band:hover {
    --hover-lift: -2px;
    --hover-scale: 1;
    box-shadow: 0 24px 50px rgba(43, 33, 22, 0.12);
}

.feature-list,
.check-list,
.process-list,
.timeline-list,
.spec-list,
.media-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.feature-list li,
.check-list li,
.process-list li,
.timeline-list li,
.spec-list li,
.media-list li {
    position: relative;
    padding-left: 32px;
    color: var(--muted);
}


.feature-list li::before,
.check-list li::before,
.process-list li::before,
.timeline-list li::before,
.spec-list li::before,
.media-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    box-shadow: 0 0 0 4px rgba(196, 138, 44, 0.12);
}

.icon-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 232, 200, 0.9));
    border: 1px solid rgba(142, 93, 18, 0.12);
    color: var(--brand-deep);
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.icon-badge svg,
.icon-badge i {
    width: 26px;
    height: 26px;
    font-size: 26px;
    line-height: 1;
    display: inline-block;
}

.icon-badge svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero {
    height: calc(100svh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    max-height: calc(100svh - var(--header-height));
    overflow: hidden;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    left: 4%;
    bottom: 6%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 148, 0.28) 0%, rgba(255, 214, 148, 0) 72%);
    filter: blur(12px);
}

.hero::before {
    content: "";
    position: absolute;
    right: 4%;
    bottom: 10%;
    width: 190px;
    height: 360px;
    background-image: var(--wheat-ornament);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.12;
    filter: blur(0.2px) drop-shadow(0 12px 22px rgba(196, 138, 44, 0.14));
    transform: rotate(6deg);
    pointer-events: none;
    animation: swayOrnament 14s ease-in-out infinite;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.slide.is-active {
    opacity: 1;
}

.slide img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.slide.is-active img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 18, 16, 0.76) 0%, rgba(17, 18, 16, 0.38) 54%, rgba(17, 18, 16, 0.18) 100%),
        linear-gradient(180deg, rgba(17, 18, 16, 0.12) 0%, rgba(17, 18, 16, 0.72) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
    gap: 22px;
    align-items: center;
    height: 100%;
    min-height: 0;
    padding: 0 0 54px;
}

.hero-copy {
    color: white;
    max-width: 760px;
    transform: translateY(var(--hero-shift, 0px));
    transition: transform 0.35s ease;
}

@keyframes heroTextEntrance {
    0% {
        opacity: 0;
        transform: translateY(38px) skewY(-3deg) scale(0.96);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) skewY(0deg) scale(1);
        filter: blur(0);
    }
}

@keyframes blinkCaret {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.hero .hero-copy > *,
.page-hero .eyebrow,
.page-hero h1,
.page-hero .hero-text,
.page-hero .hero-actions {
    opacity: 0;
    transform: translateY(28px) skewY(-1deg);
    filter: blur(1px);
}

.hero-copy.is-animated > *,
.page-hero.is-animated .eyebrow,
.page-hero.is-animated h1,
.page-hero.is-animated .hero-text,
.page-hero.is-animated .hero-actions {
    animation: heroTextEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy.is-animated > *:nth-child(1),
.page-hero.is-animated .eyebrow {
    animation-delay: 0.12s;
}

.hero-copy.is-animated > *:nth-child(2),
.page-hero.is-animated h1 {
    animation-delay: 0.22s;
}

.hero-copy.is-animated > *:nth-child(3),
.page-hero.is-animated .hero-text {
    animation-delay: 0.32s;
}

.hero-copy.is-animated > *:nth-child(4),
.page-hero.is-animated .hero-actions {
    animation-delay: 0.42s;
}

.hero h1 {
    display: inline-block;
    white-space: normal;
}

.hero h1.typing-letter-wrap .typing-letter {
    opacity: 0;
    display: inline-block;
    transform: translateY(8px);
    animation: typingLetterIn 0.18s ease forwards;
}

.hero h1.typing-letter-wrap::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1.1em;
    margin-left: 6px;
    vertical-align: bottom;
    background: white;
    animation: blinkCaret 0.8s step-end infinite;
}

.hero-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.stat-card {
    padding: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.stat-card strong {
    display: block;
    font-size: 0.96rem;
    margin-bottom: 3px;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
}

.slider-panel {
    position: absolute;
    right: 0;
    bottom: 10px;
    justify-self: end;
    align-self: end;
    width: auto;
    max-width: none;
    padding: 14px 16px;
    margin-bottom: 0;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.slider-nav {
    display: none;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.32s ease,
        transform 0.38s ease,
        box-shadow 0.38s ease,
        background-color 0.38s ease,
        color 0.38s ease;
}

.slider-prev,
.slider-next {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 30px rgba(17, 12, 8, 0.16);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.hero:hover .hero-slider-arrow,
.hero:focus-within .hero-slider-arrow {
    opacity: 1;
    pointer-events: auto;
}

.hero-slider-arrow-left {
    left: 28px;
}

.hero-slider-arrow-right {
    right: 28px;
}

.slider-prev i,
.slider-next i {
    font-size: 16px;
    line-height: 1;
}

.slider-prev::before {
    content: "←";
}

.slider-next::before {
    content: "→";
}

.slider-prev:hover,
.slider-next:hover,
.slider-prev:focus-visible,
.slider-next:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 20px 38px rgba(17, 12, 8, 0.2);
}

.hero-slider-arrow::before {
    content: none;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
}

.slider-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.slider-panel-head span {
    font-weight: 700;
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.38s ease, background-color 0.38s ease, box-shadow 0.38s ease;
}

.dot.is-active {
    background: white;
    transform: scale(1.14);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.08);
}

.advantages-showcase {
    padding-top: 96px;
}

.advantages-showcase .container {
    position: relative;
    padding: 34px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(196, 138, 44, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(255, 251, 244, 0.96), rgba(246, 232, 200, 0.82));
    border: 1px solid rgba(142, 93, 18, 0.12);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.advantages-showcase .container::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -54px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 110, 79, 0.18), rgba(91, 110, 79, 0));
    pointer-events: none;
}

.advantages-showcase .container::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 26px;
    width: 120px;
    height: 220px;
    background-image: var(--wheat-ornament);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.085;
    transform: rotate(-10deg);
    pointer-events: none;
    animation: swayOrnamentSoft 16s ease-in-out infinite;
}

.advantages-showcase .section-heading {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin-bottom: 30px;
}

.feature-list-light {
    position: relative;
    z-index: 1;
    margin-top: 28px;
    padding: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(142, 93, 18, 0.12);
    box-shadow: var(--shadow-soft);
    counter-reset: feature-card;
}

.feature-list-light li {
    min-height: 118px;
    padding: 24px 22px 24px 74px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.9));
    border: 1px solid rgba(142, 93, 18, 0.1);
    color: var(--ink);
    line-height: 1.45;
    box-shadow: 0 18px 34px rgba(43, 33, 22, 0.08);
    transition:
        box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    counter-increment: feature-card;
    display: grid;
    align-content: start;
    gap: 8px;
}

.feature-list-light li::before {
    content: counter(feature-card, decimal-leading-zero);
    left: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(196, 138, 44, 0.22);
}

.feature-list-light li strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--ink);
}

.feature-list-light li span {
    display: block;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
}

.feature-list-light li:hover {
    border-color: rgba(142, 93, 18, 0.24);
    box-shadow: 0 24px 40px rgba(43, 33, 22, 0.12);
}

.trust-bar {
    margin-top: -34px;
    z-index: 4;
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.trust-grid::after {
    content: "";
    position: absolute;
    right: -14px;
    top: -8px;
    width: 92px;
    height: 180px;
    background-image: var(--wheat-ornament);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.06;
    transform: rotate(10deg);
    pointer-events: none;
    animation: swayOrnament 17s ease-in-out infinite reverse;
}

.trust-grid div {
    padding: 10px 14px;
}

.trust-grid strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.trust-grid span {
    color: var(--muted);
}

.page-hero {
    padding: 120px 0 62px;
}

.page-hero-grid,
.about-grid,
.split-grid,
.form-layout,
.contacts-grid,
.magazine-grid,
.catalog-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.page-hero-frame {
    position: relative;
    overflow: hidden;
    height: min(760px, calc(100svh - var(--header-height) - 72px));
    min-height: 480px;
    max-height: calc(100svh - var(--header-height) - 72px);
    border-radius: 36px;
    box-shadow: var(--shadow);
}

.page-hero-frame-catalog {
    background: linear-gradient(180deg, #f7f1e6 0%, #efe5d4 100%);
}

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

.packshot-collage {
    position: absolute;
    inset: 22px 28px 136px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
    z-index: 1;
}

.packshot-card {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: contain;
    border-radius: 24px;
    background: transparent;
    padding: 16px;
    border: 1px solid rgba(31, 41, 55, 0.06);
    box-shadow: 0 16px 30px rgba(31, 41, 55, 0.08);
    filter: none;
    transform: translateY(0) translateZ(0);
    transition: transform var(--motion-smooth) var(--ease-smooth), box-shadow var(--motion-smooth) var(--ease-smooth);
    will-change: transform, box-shadow;
}

.packshot-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 22px 36px rgba(31, 41, 55, 0.12);
}

.hero-ornament {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 120px;
    height: auto;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    object-fit: contain;
}

.page-hero-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 16, 14, 0.08) 0%, rgba(15, 16, 14, 0.4) 100%);
}

.page-hero-frame-catalog::after {
    background: linear-gradient(180deg, rgba(15, 16, 14, 0.01) 0%, rgba(15, 16, 14, 0.12) 100%);
}

.frame-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 250, 241, 0.88);
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: var(--shadow-soft);
}

[dir="rtl"] .hero-ornament {
    right: auto;
    left: 18px;
}

.frame-note strong {
    display: block;
    margin-bottom: 6px;
}

.metric-row,
.icon-grid,
.card-grid,
.article-grid,
.photo-strip,
.mosaic-grid,
.seo-grid {
    display: grid;
    gap: 18px;
}

.article-grid {
    align-items: start;
}

.metric-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-panel .metric-row {
    margin-top: 24px;
}

.icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.card-grid-3,
.article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4,
.mosaic-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.export-markets {
    margin-top: 22px;
}

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

.metric-card strong,
.metric-card span {
    display: block;
}

.metric-card strong {
    margin-bottom: 6px;
    font-size: 1.1rem;
    overflow-wrap: anywhere;
}

.metric-card span {
    color: var(--muted);
}

.icon-card {
    display: grid;
    gap: 16px;
    align-content: start;
}

.form-copy,
.cta-copy {
    display: flex;
    flex-direction: column;
}

.icon-card h3,
.content-card h3,
.article-card h3,
.split-panel h3,
.visual-notes h3,
.gallery-panel h3,
.form-card h3,
.spotlight-band h3,
.cta-panel h3,
.timeline-card h3,
.review-card h3 {
    font-size: 1.14rem;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.service-card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border-radius: var(--radius-xl);
    background: var(--surface-strong);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.service-media,
.card-media,
.panel-media img {
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--radius-xl) - 8px);
    box-shadow: var(--shadow-soft);
}

.service-media,
.card-media,
.panel-media img,
.photo-card img,
.gallery-panel img,
.content-carousel-slide img {
    max-height: calc(100svh - var(--header-height));
}

.service-media {
    height: 400px;
    margin: -8px 0 22px;
}

.card-media {
    height: 300px;
    margin-bottom: 18px;
}

.panel-media {
    margin-top: 24px;
}

.panel-media img {
    width: 100%;
    height: 220px;
    max-height: 260px;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 8px);
    box-shadow: var(--shadow-soft);
}

.service-card,
.content-card,
.review-card,
.advantage-card,
.contact-card,
.article-card,
.icon-card,
.timeline-card,
.photo-card,
.visual-notes,
.spotlight-band,
.metric-card,
.page-hero-card,
.quote-panel,
.gallery-panel,
.split-panel,
.cta-panel,
.partner-logo {
    transition:
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.68s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::after,
.content-card::after,
.review-card::after,
.advantage-card::after,
.contact-card::after,
.article-card::after,
.icon-card::after,
.timeline-card::after,
.photo-card::after,
.visual-notes::after,
.spotlight-band::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(196, 138, 44, 0.08), rgba(91, 110, 79, 0.04));
    opacity: 0;
    transition: opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.service-card:hover::after,
.content-card:hover::after,
.review-card:hover::after,
.advantage-card:hover::after,
.contact-card:hover::after,
.article-card:hover::after,
.icon-card:hover::after,
.timeline-card:hover::after,
.photo-card:hover::after,
.visual-notes:hover::after,
.spotlight-band:hover::after {
    opacity: 1;
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand-deep);
}

.service-icon svg,
.service-icon i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    line-height: 1;
    display: inline-block;
}

.service-icon svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.accent-warm {
    background: linear-gradient(180deg, rgba(255, 242, 219, 0.92) 0%, rgba(255, 253, 248, 0.96) 100%);
}

.accent-cool {
    background: linear-gradient(180deg, rgba(237, 243, 226, 0.95) 0%, rgba(255, 253, 248, 0.96) 100%);
}

.split-section {
    padding: 86px 0;
}

.split-grid {
    align-items: stretch;
}

.page-hero .split-grid {
    align-items: start;
}

.split-copy,
.split-panel {
    align-self: stretch;
}

.page-hero .page-hero-card,
.page-hero .content-carousel {
    align-self: start;
}

.page-hero .content-carousel {
    display: grid;
    align-content: start;
}

.split-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-copy .hero-actions {
    margin-bottom: 0;
}

.visual-notes .card-media,
.split-panel .card-media,
.quote-panel .card-media {
    margin-bottom: 20px;
}

.visual-stack {
    display: grid;
    gap: 18px;
}

.photo-card {
    display: grid;
    gap: 16px;
    overflow: hidden;
    align-items: start;
}

.photo-card img,
.gallery-panel img {
    border-radius: calc(var(--radius-xl) - 8px);
    width: 100%;
    min-height: 280px;
    aspect-ratio: 4 / 5;
    max-height: calc(100svh - var(--header-height) - 96px);
    object-fit: cover;
}

.visual-stack .photo-card img {
    aspect-ratio: 4 / 3;
}

.mosaic-grid .photo-card {
    min-height: 280px;
}

.mosaic-grid .photo-card:first-child img {
    min-height: 520px;
}

.photo-card figcaption {
    margin-top: 0;
    color: var(--ink);
    line-height: 1.6;
}

.photo-card figcaption,
.photo-card p {
    padding-bottom: 8px;
}


.mosaic-grid .photo-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-grid .photo-card:first-child img {
    min-height: 460px;
}

.private-label-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.private-label-gallery .photo-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
}

.private-label-gallery .photo-card img {
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.private-label-gallery .photo-card:first-child img {
    min-height: 0;
    max-height: calc(100svh - var(--header-height) - 240px);
}

.quote-panel {
    background: linear-gradient(135deg, rgba(142, 93, 18, 0.92), rgba(73, 86, 63, 0.92));
    color: white;
    position: relative;
    overflow: hidden;
}

.quote-panel p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.quote-panel strong {
    display: inline-block;
    margin-top: 18px;
}

.timeline-list {
    gap: 18px;
}

.timeline-list li {
    padding-left: 32px;
}

.spotlight-band {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 246, 228, 0.92), rgba(237, 243, 226, 0.86));
}

.spotlight-band::before {
    content: "";
    position: absolute;
    right: -22px;
    top: 22px;
    width: 110px;
    height: 220px;
    background-image: var(--wheat-ornament);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.07;
    transform: scaleX(-1) rotate(12deg);
    pointer-events: none;
    animation: driftOrnamentSoft 15s ease-in-out infinite;
}

.split-panel {
    position: relative;
    overflow: hidden;
}

.split-panel::before {
    content: "";
    position: absolute;
    left: -16px;
    bottom: -6px;
    width: 96px;
    height: 190px;
    background-image: var(--wheat-ornament);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.055;
    transform: scaleY(-1) rotate(-16deg);
    pointer-events: none;
    animation: swayOrnamentFlipY 19s ease-in-out infinite;
}

.quote-panel::before {
    content: "";
    position: absolute;
    right: -8px;
    bottom: -10px;
    width: 86px;
    height: 170px;
    background-image: var(--wheat-ornament);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    transform: scaleX(-1) scaleY(-1) rotate(8deg);
    pointer-events: none;
    animation: driftOrnamentFlipXY 16s ease-in-out infinite reverse;
}

.spotlight-band .icon-row {
    margin-top: 18px;
}

.gallery-panel {
    display: grid;
    gap: 18px;
    align-content: start;
}

.gallery-panel p {
    color: var(--muted);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.spec-table th {
    color: var(--brand-deep);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.catalog-table-wrap {
    overflow-x: auto;
}

.catalog-table {
    width: 100%;
    border-collapse: collapse;
}

.catalog-table th,
.catalog-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.08);
}

.catalog-table th {
    color: var(--brand-deep);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.article-card {
    display: grid;
    gap: 12px;
    text-align: left;
}

.article-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-deep);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.article-card a {
    color: var(--brand-deep);
    font-weight: 800;
}

.article-grid-editorial {
    gap: 26px;
}

.article-card-editorial {
    padding: 18px;
    gap: 0;
}

.article-card-media {
    display: block;
    overflow: hidden;
    border-radius: calc(var(--radius-xl) - 8px);
    background: rgba(255, 248, 238, 0.85);
}

.article-card-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition:
        transform var(--motion-smooth) var(--ease-smooth),
        filter var(--motion-smooth) var(--ease-smooth);
}

.article-card-editorial:hover .article-card-media img,
.article-card-editorial:focus-within .article-card-media img {
    transform: scale(1.035);
    filter: saturate(1.04);
}

.article-card-body {
    display: grid;
    gap: 16px;
    padding: 20px 6px 8px;
}

.article-card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.article-date {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.article-card-editorial h3 {
    margin: 0;
    font-size: clamp(1.38rem, 1.8vw, 1.8rem);
    line-height: 1.18;
    text-wrap: balance;
}

.article-card-editorial p {
    margin: 0;
    color: var(--muted);
}

.article-card-btn {
    justify-self: start;
    margin-top: 6px;
    color: #fff !important;
}

.article-card-btn:hover,
.article-card-btn:focus-visible {
    color: #fff !important;
}

.application-form {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(237, 243, 226, 0.46) 100%);
}

.form-card {
    padding: 32px;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.field span {
    font-weight: 700;
    color: var(--ink);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(31, 41, 55, 0.12);
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(255, 253, 248, 0.92);
    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease,
        transform 0.35s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(91, 110, 79, 0.48);
    box-shadow: 0 0 0 4px rgba(91, 110, 79, 0.1);
    background: white;
    transform: translateY(-1px);
}

.field-full {
    grid-column: 1 / -1;
}

.btn-submit {
    width: 100%;
    margin-top: 22px;
}

.btn-submit.is-loading {
    pointer-events: none;
    opacity: 0.88;
}

.form-status {
    min-height: 24px;
    margin-top: 14px;
    font-weight: 700;
}

.form-status.is-success {
    color: #0f766e;
}

.form-status.is-error {
    color: #b42318;
}

.form-status.is-sending {
    color: var(--accent);
}

.contacts-cards {
    display: grid;
    gap: 18px;
}

.contact-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-deep);
    font-weight: 800;
}

.contact-card a {
    font-size: 1.14rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.map-card {
    padding: 18px;
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: calc(var(--radius-xl) - 8px);
}

.partner-logo {
    min-height: 120px;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: "Unbounded", sans-serif;
    color: #46535c;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 24px;
}

.stats-strip strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.06rem;
}

.seo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.seo-tags a {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
    transition:
        box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.seo-tags a:hover,
.seo-tags a:focus-visible {
    box-shadow: 0 20px 44px rgba(43, 33, 22, 0.14);
    color: var(--brand-deep);
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 245, 224, 0.95), rgba(237, 243, 226, 0.88));
}

.content-carousel {
    position: relative;
    overflow: hidden;
    align-self: start;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(31, 41, 55, 0.08);
    box-shadow: var(--shadow);
}

.content-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), height 0.42s var(--ease-smooth);
    will-change: transform;
    align-items: flex-start;
}

.content-carousel-slide {
    min-width: 100%;
    padding: 24px;
}

.content-carousel-slide img {
    width: 100%;
    height: 420px;
    border-radius: calc(var(--radius-xl) - 8px);
    object-fit: cover;
}

.content-carousel-slide p,
.content-carousel-slide figcaption {
    margin-top: 14px;
    color: var(--muted);
}

.content-carousel-controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px 8px;
    background: rgba(255, 255, 255, 0.88);
    margin-top: 18px;
    border-top: 1px solid rgba(31, 41, 55, 0.08);
}

.page-hero .content-carousel-controls {
    margin-top: 0;
}

.content-carousel-nav {
    display: flex;
    gap: 10px;
}

.content-carousel-prev,
.content-carousel-next,
.content-carousel-dot {
    border: 0;
    cursor: pointer;
}

.content-carousel-prev,
.content-carousel-next {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-deep);
    box-shadow: var(--shadow-soft);
    transition:
        box-shadow 0.56s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.56s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.56s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-carousel-prev:hover,
.content-carousel-next:hover,
.content-carousel-prev:focus-visible,
.content-carousel-next:focus-visible {
    box-shadow: 0 16px 34px rgba(43, 33, 22, 0.14);
}

.content-carousel-prev::before {
    content: "←";
}

.content-carousel-next::before {
    content: "→";
}

.content-carousel-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.content-carousel-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(142, 93, 18, 0.22);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.content-carousel-dot.is-active {
    background: var(--brand-deep);
    transform: scale(1.14);
}

.footer {
    padding: 52px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(196, 138, 44, 0.16), transparent 24%),
        linear-gradient(180deg, #2a231a 0%, #17120d 100%);
    color: rgba(255, 247, 235, 0.82);
}

.footer-shell {
    position: relative;
    display: grid;
    gap: 24px;
    overflow: hidden;
    isolation: isolate;
    padding: 12px 0;
}

.footer-shell::before,
.footer-shell::after {
    content: "";
    position: absolute;
    width: 92px;
    height: 180px;
    background-image: var(--wheat-ornament);
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.footer-shell::before {
    left: -18px;
    bottom: 10px;
    opacity: 0.09;
    transform: rotate(-8deg);
    animation: swayOrnamentFooter 18s ease-in-out infinite;
}

.footer-shell::after {
    right: -12px;
    top: 8px;
    opacity: 0.08;
    transform: scaleX(-1) rotate(10deg);
    animation: driftOrnamentSoft 20s ease-in-out infinite reverse;
}

.footer-shell > * {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
}

.footer-brand {
    display: grid;
    gap: 14px;
    max-width: 420px;
}

.footer-brand .brand {
    width: fit-content;
}

.footer-brand p {
    color: rgba(255, 247, 235, 0.72);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff4e1;
    transition:
        background-color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-link i {
    font-size: 18px;
    line-height: 1;
}

.social-link:hover,
.social-link:focus-visible {
    transform: none;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 22px;
}

.footer-nav a {
    color: rgba(255, 247, 235, 0.78);
    transition: color 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: #fff4e1;
}

.footer-content {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 247, 235, 0.72);
    display: flex;
    justify-content: space-between;
    gap: 18px 28px;
    align-items: center;
    flex-wrap: wrap;
}

body[data-page="about"] {
    --brand: #b47a23;
    --brand-deep: #7e4e0a;
    --accent: #52695c;
}

body[data-page="products"] {
    --brand: #cb8a34;
    --brand-deep: #935912;
    --accent: #536a48;
}

body[data-page="private-label"] {
    --brand: #bb7d2e;
    --brand-deep: #7f4a0b;
    --accent: #6a6244;
}

body[data-page="export"] {
    --brand: #bd8e37;
    --brand-deep: #8a6114;
    --accent: #44646d;
}

body[data-page="logistics"] {
    --brand: #c08a3c;
    --brand-deep: #8a5821;
    --accent: #5c6a50;
}

body[data-page="certificates"] {
    --brand: #b88d2c;
    --brand-deep: #7d5814;
    --accent: #536775;
}

body[data-page="contacts"] {
    --brand: #c48130;
    --brand-deep: #874e12;
    --accent: #5f7352;
}

body[data-page="catalog"] {
    --brand: #b97c30;
    --brand-deep: #7d4c15;
    --accent: #66715d;
}

body[data-page="blog"] {
    --brand: #bb8338;
    --brand-deep: #82561b;
    --accent: #5a6658;
}

@keyframes floatGlow {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(20px, -14px, 0) scale(1.08);
    }
}

@keyframes swayOrnament {
    0%,
    100% {
        transform: rotate(6deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(10deg) translate3d(-10px, -12px, 0);
    }
}

@keyframes swayOrnamentSoft {
    0%,
    100% {
        transform: rotate(-10deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-6deg) translate3d(8px, -10px, 0);
    }
}

@keyframes driftOrnament {
    0%,
    100% {
        transform: rotate(8deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(12deg) translate3d(-12px, -16px, 0);
    }
}

@keyframes driftOrnamentSoft {
    0%,
    100% {
        transform: scaleX(-1) rotate(10deg) translate3d(0, 0, 0);
    }

    50% {
        transform: scaleX(-1) rotate(6deg) translate3d(10px, -12px, 0);
    }
}

@keyframes swayOrnamentFlipY {
    0%,
    100% {
        transform: scaleY(-1) rotate(-16deg) translate3d(0, 0, 0);
    }

    50% {
        transform: scaleY(-1) rotate(-11deg) translate3d(8px, -10px, 0);
    }
}

@keyframes driftOrnamentFlipXY {
    0%,
    100% {
        transform: scaleX(-1) scaleY(-1) rotate(8deg) translate3d(0, 0, 0);
    }

    50% {
        transform: scaleX(-1) scaleY(-1) rotate(12deg) translate3d(-10px, -12px, 0);
    }
}

@keyframes swayOrnamentFooter {
    0%,
    100% {
        transform: rotate(-8deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-4deg) translate3d(8px, -10px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }

    .hero .hero-copy > *,
    .page-hero .eyebrow,
    .page-hero h1,
    .page-hero .hero-text,
    .page-hero .hero-actions {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .hero,
    .section,
    .page-hero,
    .page-hero-card,
    .content-card,
    .review-card,
    .service-card,
    .advantage-card,
    .partner-logo,
    .highlight-card,
    .stats-strip,
    .metric-card,
    .icon-card,
    .article-card,
    .photo-card,
    .timeline-card,
    .map-card,
    .contact-card,
    .form-card,
    .quote-panel,
    .accordion-card,
    .gallery-panel,
    .visual-notes,
    .split-panel,
    .spotlight-band,
    .cta-panel,
    .trust-grid,
    .partnership-panel {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    :root {
        --header-height: 170px;
    }

    .header-content {
        gap: 14px;
    }

    .hero-content,
    .page-hero-grid,
    .about-grid,
    .split-grid,
    .form-layout,
    .contacts-grid,
    .magazine-grid,
    .catalog-layout,
    .spotlight-band,
    .cta-panel {
        grid-template-columns: 1fr;
    }

    .slider-panel {
        justify-self: start;
    }

    .icon-grid,
    .mosaic-grid,
    .card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nav a {
        font-size: 0.82rem;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 166px;
    }

    body::after,
    .hero::before,
    .advantages-showcase .container::before,
    .trust-grid::after,
    .spotlight-band::before,
    .split-panel::before,
    .quote-panel::before,
    .footer-shell::before,
    .footer-shell::after {
        opacity: 0.05;
    }

    .header-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        min-height: auto;
        row-gap: 10px;
    }

    .brand {
        grid-column: 1 / -1;
        justify-self: center;
        margin-right: 0;
    }

    .header-cta {
        display: none;
    }

    .nav {
        display: grid;
        gap: 12px;
    }

    .nav-panel {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100dvh;
        min-height: 100svh;
        max-height: 100dvh;
        overflow-y: auto;
        padding: 88px 22px 32px;
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(255, 251, 244, 0.99) 0%, rgba(255, 247, 236, 0.98) 100%);
        border: 0;
        box-shadow: none;
        backdrop-filter: blur(18px);
        transform: translate3d(100%, 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.22s ease;
        will-change: transform, opacity;
        z-index: 120;
    }

    .nav-panel a {
        display: block;
        width: 100%;
        font-size: 0.98rem;
        padding: 11px 14px;
        border-radius: 16px;
        text-align: center;
        transition:
            color 0.56s cubic-bezier(0.22, 1, 0.36, 1),
            background-color 0.56s cubic-bezier(0.22, 1, 0.36, 1),
            box-shadow 0.56s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-panel-title {
        display: block;
        margin-bottom: 18px;
        color: var(--brand-deep);
        font-family: "Unbounded", sans-serif;
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        opacity: 0.72;
        text-align: center;
    }

.nav-panel-close {
        position: fixed;
        top: 12px;
        right: 11px;
        width: 52px;
        height: 52px;
        border: 1px solid rgba(142, 93, 18, 0.18);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.88);
        color: var(--brand-deep);
        display: inline-grid;
        place-items: center;
        padding: 0;
        cursor: pointer;
        box-shadow: var(--shadow-soft);
        transition:
            box-shadow 0.62s cubic-bezier(0.22, 1, 0.36, 1),
            background-color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
            border-color 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-panel-close:hover,
    .nav-panel-close:focus-visible {
        box-shadow: 0 16px 34px rgba(43, 33, 22, 0.14);
    }

    .nav-panel-close span {
        position: absolute;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
    }

    .nav-panel-close span:first-child {
        transform: rotate(45deg);
    }

    .nav-panel-close span:last-child {
        transform: rotate(-45deg);
    }

    .nav-panel a::after {
        display: none;
    }

    .nav-panel a:hover,
    .nav-panel a:focus-visible,
    .nav-panel a.is-active {
        background: rgba(203, 138, 52, 0.12);
        box-shadow: inset 0 0 0 1px rgba(196, 138, 44, 0.16);
    }

    .nav-panel a[data-page="catalog"] {
        margin-top: 12px;
        padding-top: 18px;
        border-top: 1px solid rgba(31, 41, 55, 0.08);
    }

    .nav-panel a[data-page="contacts"] {
        margin-top: 12px;
        padding-top: 18px;
        border-top: 1px solid rgba(31, 41, 55, 0.08);
    }

    .nav-panel .nav-cta {
        display: inline-flex;
        width: 100%;
        margin-top: 18px;
        position: sticky;
        bottom: 0;
        justify-content: center;
        box-shadow: 0 16px 28px rgba(43, 33, 22, 0.12);
    }

    .menu-open .nav-panel {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu-toggle,
    .menu-backdrop {
        display: inline-grid;
    }

    .menu-open .nav-panel {
        transform: translate3d(0, 0, 0);
    }

    .lang-switcher {
        margin-left: 0;
        justify-self: start;
    }

    .menu-toggle {
        justify-self: end;
    }

    .section {
        padding: 68px 0;
    }

    .page-hero {
        padding: 82px 0 50px;
    }

    .hero {
        height: auto;
        min-height: calc(100svh - var(--header-height));
        max-height: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: 0;
        height: auto;
        padding: 36px 0 64px;
        align-items: center;
        align-content: center;
        justify-items: center;
        text-align: center;
        gap: 20px;
    }

    .slider-panel {
        right: 50%;
        bottom: 10px;
        transform: translateX(50%);
        justify-self: center;
        align-self: end;
        margin: 0 auto;
    }

    .hero-slider-arrow-left {
        left: 16px;
    }

    .hero-slider-arrow-right {
        right: 16px;
    }

    .hero-slider-arrow {
        opacity: 1;
        pointer-events: auto;
    }

    .hero-copy {
        margin-inline: auto;
        text-align: center;
    }

    .hero-actions,
    .slider-dots {
        justify-content: center;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .cta-panel .btn,
    .nav-panel .nav-cta {
        width: 100%;
    }

    .hero-stats,
    .trust-grid,
    .metric-row,
    .icon-grid,
    .card-grid-2,
    .card-grid-3,
    .card-grid-4,
    .article-grid,
    .mosaic-grid,
    .seo-grid,
    .form-grid,
    .stats-strip {
        grid-template-columns: 1fr;
    }

    .page-hero-frame,
    .about-visual img,
    .page-hero-visual img {
        height: auto;
        min-height: 300px;
        max-height: none;
    }

    .packshot-collage {
        inset: 18px 14px 162px;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }

    .packshot-card {
        min-height: 120px;
        padding: 8px;
    }

    .packshot-card:hover {
        transform: none;
    }

    .mosaic-grid .photo-card:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .article-card-media img {
        height: 220px;
    }

    .article-card-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .article-card-btn {
        width: 100%;
        justify-content: center;
    }

    .mosaic-grid .photo-card:first-child img {
        min-height: 280px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top,
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .feature-list-light {
        grid-template-columns: 1fr;
    }

    .advantages-showcase .container {
        padding: 24px;
    }

    .map-card iframe {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    :root {
        --header-height: 128px;
    }

    body::after,
    .hero::before,
    .advantages-showcase .container::before,
    .trust-grid::after,
    .spotlight-band::before,
    .split-panel::before,
    .quote-panel::before,
    .footer-shell::before,
    .footer-shell::after {
        display: none;
    }

    .container {
        width: min(var(--container), calc(100% - 22px));
    }

    .header-content {
        padding: 12px 0;
    }

    .brand {
        justify-self: start;
    }

    .hero {
        min-height: calc(100svh - var(--header-height));
    }

    .hero-content {
        padding: 20px 0 56px;
    }

    .slider-panel,
    .service-card,
    .review-card,
    .advantage-card,
    .page-hero-card,
    .content-card,
    .metric-card,
    .icon-card,
    .article-card,
    .photo-card,
    .timeline-card,
    .map-card,
    .contact-card,
    .form-card,
    .quote-panel,
    .accordion-card,
    .gallery-panel,
    .visual-notes,
    .split-panel,
    .spotlight-band,
    .cta-panel,
    .partnership-panel {
        padding: 22px;
    }

    .brand-logo {
        height: 88px;
        max-width: min(260px, 68vw);
    }

    .brand-title {
        font-size: 16px;
    }

    .service-media,
    .card-media,
    .panel-media img,
    .content-carousel-slide img {
        min-height: 0;
        height: 180px;
    }

    .advantages-showcase .container,
    .feature-list-light,
    .feature-list-light li {
        padding-left: 22px;
        padding-right: 22px;
    }

    .feature-list-light li {
        padding-top: 74px;
    }

    .feature-list-light li::before {
        left: 22px;
        top: 22px;
    }

    .brand-subtitle {
        font-size: 12px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .hero-text,
    .page-hero .hero-text {
        font-size: 0.98rem;
    }

    .page-hero {
        padding: 64px 0 38px;
    }

    .page-hero-card,
    .page-hero-frame,
    .content-carousel-slide,
    .map-card {
        border-radius: 22px;
    }

    .page-hero-frame,
    .about-visual img,
    .page-hero-visual img {
        min-height: 240px;
    }

    .lang-switcher {
        padding: 4px;
        gap: 2px;
    }

    .lang-switcher-btn {
        padding: 6px 8px;
        font-size: 0.7rem;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }

    .menu-toggle span {
        width: 18px;
    }

    .map-card iframe {
        min-height: 240px;
    }

    .contact-card a,
    .seo-tags a {
        font-size: 1rem;
    }

    .footer-content {
        gap: 8px;
    }
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 5px;
    margin-left: auto;
    border-radius: 8px;
    border: 1.5px solid rgba(196, 138, 44, 0.3);
    background: rgba(255, 253, 249, 0.95);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(43, 33, 22, 0.1);
}

.lang-switcher-floating {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 80;
}

.lang-switcher-btn {
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transform: translateY(0) translateZ(0);
    transition:
        color var(--motion-quick) var(--ease-smooth),
        background-color var(--motion-quick) var(--ease-smooth),
        border-color var(--motion-quick) var(--ease-smooth),
        box-shadow var(--motion-quick) var(--ease-smooth),
        transform var(--motion-quick) var(--ease-smooth);
    user-select: none;
    -webkit-user-select: none;
}

.lang-switcher-btn:hover {
    color: var(--brand);
    background: rgba(196, 138, 44, 0.15);
    border-color: rgba(196, 138, 44, 0.3);
    transform: translateY(-1px) translateZ(0);
}

.lang-switcher-btn:active {
    transform: translateY(0) translateZ(0);
}

.lang-switcher-btn:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 1px;
}

.lang-switcher-btn.is-active {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
    box-shadow: 0 3px 8px rgba(196, 138, 44, 0.25);
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .header-content,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer-top,
html[dir="rtl"] .footer-content,
html[dir="rtl"] .social-links,
html[dir="rtl"] .icon-row,
html[dir="rtl"] .metric-row {
    direction: rtl;
}

html[dir="rtl"] .field span,
html[dir="rtl"] .form-copy,
html[dir="rtl"] .split-copy,
html[dir="rtl"] .visual-notes,
html[dir="rtl"] .quote-panel,
html[dir="rtl"] .page-hero-card,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .content-card,
html[dir="rtl"] .metric-card,
html[dir="rtl"] .icon-card {
    text-align: right;
}

html[dir="rtl"] .lang-switcher-floating {
    right: auto;
    left: 16px;
}