:root {
    --site-bg: #f7f2e8;
    --site-surface: #fffdf8;
    --site-surface-soft: #f6efe1;
    --site-surface-strong: #eadfcb;
    --site-ink: #11261d;
    --site-ink-soft: #355244;
    --site-muted: #66756d;
    --site-line: rgba(17, 38, 29, 0.1);
    --site-line-strong: rgba(17, 38, 29, 0.18);
    --site-navy: #10271e;
    --site-navy-soft: #183629;
    --site-navy-muted: rgba(233, 240, 234, 0.78);
    --site-accent: #d18737;
    --site-accent-strong: #ae6221;
    --site-accent-soft: rgba(209, 135, 55, 0.14);
    --site-success: #2f8b57;
    --site-danger: #b35745;
    --site-shadow-lg: 0 30px 90px rgba(10, 20, 35, 0.14);
    --site-shadow-md: 0 18px 45px rgba(13, 24, 40, 0.12);
    --site-shadow-sm: 0 12px 28px rgba(13, 24, 40, 0.08);
    --site-shadow-hover: 0 24px 60px rgba(166, 184, 208, 0.24), 0 10px 30px rgba(13, 24, 40, 0.1);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container-max: 1320px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--site-ink);
    background:
        radial-gradient(circle at top left, rgba(217, 133, 59, 0.12), transparent 26%),
        radial-gradient(circle at bottom right, rgba(20, 34, 54, 0.08), transparent 24%),
        linear-gradient(180deg, #eff3f7 0%, #f7f9fb 52%, #edf2f7 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(19, 32, 51, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 32, 51, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.6), transparent 88%);
    pointer-events: none;
    z-index: -1;
}

body.site-loading {
    overflow: hidden;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(7, 13, 22, 0.3);
    backdrop-filter: blur(6px);
    pointer-events: none;
    z-index: 1040;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.section-title .title {
    font-family: 'Archivo', sans-serif;
    color: var(--site-ink);
    letter-spacing: 0;
    /* line-height: 1.1; */
}

[data-split-reveal-ready="true"] {
    visibility: visible;
}

.split-reveal-char-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.split-reveal-char {
    display: inline-block;
    backface-visibility: hidden;
    transform: translateZ(0);
}

p {
    color: var(--site-ink-soft);
    line-height: 1.75;
}

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

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

iframe {
    width: 100%;
}

.container {
    max-width: var(--container-max);
}

.text-muted {
    color: var(--site-muted) !important;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.eyebrow::before {
    content: '';
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 249, 252, 0.96)),
        radial-gradient(circle at right top, rgba(217, 133, 59, 0.08), transparent 26%);
}

.section-ink {
    background:
        radial-gradient(circle at top left, rgba(217, 133, 59, 0.16), transparent 24%),
        linear-gradient(160deg, #09111d 0%, #102238 52%, #122a42 100%);
    color: #fff;
}

.section-overlap {
    padding-top: 0;
    margin-top: -84px;
    z-index: 4;
}

.section-heading {
    display: grid;
    gap: 22px;
}

.section-heading h2 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.45rem);
}

.section-subtitle {
    max-width: 700px;
    margin: 0;
    font-size: 1.02rem;
    color: var(--site-muted);
}

.split-heading {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: end;
}

.section-heading-light h2,
.section-heading-light p,
.section-heading-light .section-subtitle,
.section-heading-light h3 {
    color: #f7fbff;
}

.section-heading-light .section-subtitle {
    color: rgba(232, 238, 245, 0.78);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--site-ink);
    transition: color 0.25s ease, gap 0.25s ease;
}

.link-arrow i[class^='iconoir-'],
.link-arrow i[class*=' iconoir-'] {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.link-arrow:hover,
.link-arrow:focus {
    color: var(--site-accent-strong);
    gap: 16px;
}

.link-arrow:hover i[class^='iconoir-'],
.link-arrow:hover i[class*=' iconoir-'],
.link-arrow:focus i[class^='iconoir-'],
.link-arrow:focus i[class*=' iconoir-'] {
    transform: translateX(2px);
}

.icon-chip,
.number-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(140deg, rgba(217, 133, 59, 0.16), rgba(11, 20, 34, 0.08));
    color: var(--site-accent-strong);
    font-size: 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(217, 133, 59, 0.18);
}

.number-chip {
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip-list span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--site-line);
    background: rgba(255, 255, 255, 0.82);
    color: var(--site-ink-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.bullet-list,
.meta-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.bullet-list li,
.meta-list li {
    position: relative;
    padding-left: 24px;
    color: var(--site-ink-soft);
}

.bullet-list li::before,
.meta-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    box-shadow: 0 0 0 6px rgba(217, 133, 59, 0.14);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0.75rem 1.45rem;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 18px 34px rgba(184, 105, 35, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #e19452, #b7651d);
    color: #fff;
    border-color: transparent;
}

.btn-outline-dark {
    background: transparent;
    border-color: rgba(19, 32, 51, 0.18);
    color: var(--site-ink);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: rgba(19, 32, 51, 0.06);
    border-color: rgba(19, 32, 51, 0.28);
    color: var(--site-ink);
}

.hero-actions .btn-outline-dark,
.section-ink .btn-outline-dark,
.site-footer .btn-outline-dark,
.page-hero .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.26);
    color: #fff;
}

.hero-actions .btn-outline-dark:hover,
.hero-actions .btn-outline-dark:focus,
.section-ink .btn-outline-dark:hover,
.section-ink .btn-outline-dark:focus,
.site-footer .btn-outline-dark:hover,
.site-footer .btn-outline-dark:focus,
.page-hero .btn-outline-dark:hover,
.page-hero .btn-outline-dark:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top left, rgba(41, 128, 185, 0.16), transparent 35%),
        radial-gradient(circle at bottom right, rgba(20, 34, 54, 0.22), transparent 30%),
        linear-gradient(160deg, rgba(237, 241, 245, 0.98), rgba(247, 249, 251, 0.98));
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader::before {
    content: '';
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(19, 32, 51, 0.08);
    border-radius: 30px;
    background-image:
        linear-gradient(rgba(19, 32, 51, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(19, 32, 51, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), transparent 86%);
    pointer-events: none;
}

#preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#preloader #status {
    width: min(100%, 340px);
    padding: 34px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(241, 244, 248, 0.82));
    box-shadow: 0 40px 100px rgba(13, 24, 40, 0.14);
    backdrop-filter: blur(22px) saturate(160%);
}

.preloader-layout {
    display: grid;
    justify-items: center;
    gap: 20px;
}

.preloader-engine {
    position: relative;
    display: grid;
    place-items: center;
    width: 152px;
    height: 152px;
}

.preloader-engine::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 38px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(225, 238, 250, 0.88));
    border: 1px solid rgba(17, 38, 80, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 16px 32px rgba(13, 24, 40, 0.08);
}

.preloader-icon {
    position: relative;
    z-index: 1;
    width: 136px;
    height: 136px;
    overflow: visible;
}

.preloader-icon .preloader-glow,
.preloader-icon .preloader-wave,
.preloader-icon .preloader-hull,
.preloader-icon .preloader-deck,
.preloader-icon .preloader-container-a,
.preloader-icon .preloader-container-b,
.preloader-icon .preloader-container-c,
.preloader-icon .preloader-smokestack,
.preloader-icon .preloader-smoke {
    transform-box: fill-box;
    transform-origin: center;
}

.preloader-glow {
    fill: rgba(13, 127, 158, 0.22);
    filter: blur(4px);
    animation: preloader-glow 2s ease-in-out infinite;
}

.preloader-wave {
    animation: preloader-wave 2.4s ease-in-out infinite;
}

.preloader-hull,
.preloader-deck,
.preloader-container-a,
.preloader-container-b,
.preloader-container-c,
.preloader-smokestack {
    animation: preloader-bob 2s ease-in-out infinite;
}

.preloader-smoke {
    fill: none;
    stroke: rgba(60, 80, 100, 0.55);
    stroke-width: 4.5;
    stroke-linecap: round;
    opacity: 0;
    animation: preloader-smoke 2.4s ease-in-out infinite;
}

.smoke-2 {
    animation-delay: 0.22s;
}

.preloader-copy {
    display: grid;
    justify-items: center;
    gap: 6px;
    text-align: center;
}

.preloader-copy span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--site-accent);
}

.preloader-copy strong {
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    color: var(--site-ink);
}

@keyframes preloader-glow {

    0%,
    100% {
        opacity: 0.38;
        transform: scaleX(0.94);
    }

    50% {
        opacity: 0.64;
        transform: scaleX(1.04);
    }
}

@keyframes preloader-wave {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-6px);
    }
}

@keyframes preloader-bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes preloader-smoke {

    0% {
        opacity: 0;
        transform: translateY(8px) scaleY(0.9);
    }

    25%,
    55% {
        opacity: 0.65;
    }

    100% {
        opacity: 0;
        transform: translateY(-12px) scaleY(1.1);
    }
}

@media (prefers-reduced-motion: reduce) {

    .preloader-glow,
    .preloader-wave,
    .preloader-hull,
    .preloader-deck,
    .preloader-container-a,
    .preloader-container-b,
    .preloader-container-c,
    .preloader-smokestack,
    .preloader-smoke {
        animation: none !important;
    }
}

@media (max-width: 575.98px) {
    #preloader::before {
        inset: 16px;
        border-radius: 22px;
    }

    #preloader #status {
        width: min(100%, 300px);
        padding: 28px 22px;
        border-radius: 28px;
    }

    .preloader-engine {
        width: 136px;
        height: 136px;
    }

    .preloader-engine::before {
        inset: 10px;
        border-radius: 32px;
    }

    .preloader-icon {
        width: 120px;
        height: 120px;
    }
}

#topnav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1050;
    background: transparent;
}

#topnav.nav-sticky {
    background: transparent !important;
    box-shadow: none !important;
}

.utility-bar {
    padding: 14px 0 8px;
    max-height: 140px;
    overflow: hidden;
    transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.32s ease, transform 0.32s ease;
}

.utility-bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px 22px;
    padding: 14px 18px 14px 20px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, rgba(7, 16, 28, 0.88), rgba(17, 29, 44, 0.84));
    box-shadow: 0 14px 40px rgba(5, 12, 22, 0.18);
    backdrop-filter: blur(18px);
}

.utility-bar-copy {
    display: flex;
    align-items: center;
    gap: 16px;
}

.utility-bar-copy p {
    margin: 0;
    color: rgba(231, 238, 246, 0.74);
    font-size: 0.92rem;
    line-height: 1.5;
}

.utility-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217, 133, 59, 0.14);
    color: #ffd0a2;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.utility-bar-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.utility-bar-links a {
    color: rgba(231, 238, 246, 0.82);
    font-size: 0.92rem;
    font-weight: 600;
}

.utility-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.utility-contact-link i {
    font-size: 1rem;
    line-height: 1;
}

.utility-bar-links a:hover {
    color: #fff;
}

.nav-shell {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
    padding: 18px 24px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(252, 249, 244, 0.50), rgba(255, 255, 255, 0.50));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 26px 54px rgba(6, 14, 25, 0.18);
    backdrop-filter: blur(20px) saturate(155%);
    overflow: hidden;
    transition: margin-top 0.32s ease, transform 0.32s ease;
}

.nav-shell::before {
    content: '';
    position: absolute;
    left: 44%;
    bottom: -165px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 133, 59, 0.18), transparent 72%);
    pointer-events: none;
}

.nav-shell::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 360px;
    background: linear-gradient(90deg, rgba(10, 27, 38, 0.035), transparent);
    pointer-events: none;
}

.brand-panel,
#navigation,
.nav-actions {
    position: relative;
    z-index: 1;
}

body.home #topnav.nav-sticky {
    background: transparent !important;
    box-shadow: none !important;
}

#topnav.nav-sticky .utility-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* #topnav.nav-sticky .nav-shell {
    margin-top: 0;
} */

.menu-extras {
    display: none;
}

.brand-panel {
    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    max-width: 100%;
}

.brand-caption {
    display: grid;
    gap: 4px;
    max-width: 280px;
}

.brand-caption strong {
    font-family: 'Archivo', sans-serif;
    font-size: 0.94rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--site-navy);
}

.brand-caption small {
    color: var(--site-muted);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.brand-support {
    max-width: 320px;
    margin: 0;
    color: var(--site-muted);
    font-size: 0.84rem;
    line-height: 1.55;
    font-weight: 600;
}

.brand-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brand-keywords span {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(19, 32, 51, 0.06);
    color: var(--site-ink);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .nav-shell {
        overflow: visible;
    }

    #topnav .navigation-menu.nav-light>li>a {
        color: var(--site-ink) !important;
    }

    #topnav .navigation-menu.nav-light>li.active>a,
    #topnav .navigation-menu.nav-light>li:hover>a,
    #topnav .navigation-menu.nav-light>li:focus-within>a {
        color: var(--site-accent-strong) !important;
        background: rgba(217, 133, 59, 0.12);
    }

    #topnav .navigation-menu.nav-light>li>.menu-arrow {
        border-right-color: rgba(19, 32, 51, 0.42) !important;
        border-bottom-color: rgba(19, 32, 51, 0.42) !important;
    }

    #topnav .navigation-menu.nav-light>li:hover>.menu-arrow,
    #topnav .navigation-menu.nav-light>li:focus-within>.menu-arrow,
    #topnav .navigation-menu.nav-light>li.active>.menu-arrow {
        border-right-color: var(--site-accent-strong) !important;
        border-bottom-color: var(--site-accent-strong) !important;
    }
}

.nav-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px 12px;
    min-width: 0;
    justify-self: end;
}

.nav-cta-desktop {
    min-width: 190px;
}

.language-switcher {
    position: relative;
    width: 220px;
}

.nav-actions .language-switcher {
    width: auto;
    min-width: 124px;
    flex: 0 0 auto;
}

.nav-actions .language-switcher__summary {
    justify-content: flex-start;
    gap: 10px;
    min-height: 50px;
    padding: 10px 14px;
    border-radius: 16px;
}

.nav-actions .language-switcher__summary-flag {
    font-size: 1.05rem;
}

.nav-actions .language-switcher__summary-copy small {
    display: none;
}

.nav-actions .language-switcher__caret {
    margin-left: auto;
}

.nav-actions .language-switcher__menu {
    width: 240px;
    left: auto;
    right: 0;
}

.language-switcher__summary {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--site-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(13, 24, 40, 0.08);
    cursor: pointer;
    list-style: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.language-switcher__summary::-webkit-details-marker {
    display: none;
}

.language-switcher__summary:hover,
.language-switcher[open] .language-switcher__summary {
    border-color: rgba(209, 135, 55, 0.45);
    box-shadow: 0 16px 32px rgba(13, 24, 40, 0.1);
    transform: translateY(-1px);
}

.language-switcher__summary-flag,
.language-switcher__flag {
    font-size: 1.25rem;
    line-height: 1;
}

.language-switcher__summary-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.language-switcher__summary-copy strong {
    color: var(--site-ink);
    font-size: 0.95rem;
    line-height: 1;
}

.language-switcher__summary-copy small {
    color: var(--site-muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.language-switcher__caret {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    color: var(--site-muted);
    border-radius: 999px;
    background: rgba(17, 38, 29, 0.05);
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.language-switcher__caret::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
    transition: transform 0.22s ease;
}

.language-switcher__summary:hover .language-switcher__caret,
.language-switcher[open] .language-switcher__caret {
    color: var(--site-accent-strong);
    background: rgba(209, 135, 55, 0.12);
}

.language-switcher[open] .language-switcher__caret::before {
    transform: translateY(1px) rotate(-135deg);
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    width: 280px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(17, 38, 29, 0.1);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 54px rgba(6, 14, 25, 0.18);
    backdrop-filter: blur(16px);
}

.language-switcher__menu-label {
    margin-bottom: 10px;
    color: var(--site-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.language-switcher__list {
    display: grid;
    gap: 6px;
}

.language-switcher__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    color: var(--site-ink);
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.utility-bar .language-switcher__menu .language-switcher__link {
    color: #2c201d !important;
}

.language-switcher__link:hover,
.language-switcher__link:focus,
.language-switcher__link.is-active {
    background: rgba(209, 135, 55, 0.12);
    color: var(--site-accent-strong);
    transform: translateX(2px);
}

.language-switcher__meta {
    display: grid;
    gap: 2px;
}

.language-switcher__name {
    color: currentColor;
    font-weight: 700;
    line-height: 1.1;
}

.language-switcher__code {
    color: var(--site-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.utility-bar .language-switcher__menu-label {
    color: #7a6862 !important;
}

.utility-bar .language-switcher__menu .language-switcher__code {
    color: #7a6862 !important;
}

.navbar-toggle {
    display: none;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: #fff;
}

.navbar-toggle .lines {
    display: grid;
    gap: 6px;
    justify-items: center;
}

.navbar-toggle .lines span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggle.open .lines span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.open .lines span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.open .lines span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#navigation {
    flex: 1 1 auto;
    min-width: 0;
}

.nav-panel-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.nav-panel-top,
.mobile-nav-cta {
    display: none;
}

.navigation-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation-menu>li {
    position: relative;
}

#topnav .navigation-menu>li>a {
    display: inline-flex;
    align-items: center;
    padding: 13px 14px;
    border-radius: 16px;
    color: var(--site-ink);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link-title {
    display: inline;
}

.nav-link-desc {
    display: none;
}

#topnav .navigation-menu>li.active>a,
#topnav .navigation-menu>li:hover>a,
#topnav .navigation-menu>li:focus-within>a {
    color: var(--site-accent-strong);
    background: rgba(217, 133, 59, 0.12);
}

.has-submenu {
    padding-right: 4px;
}

.menu-arrow {
    position: absolute;
    right: 11px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid rgba(19, 32, 51, 0.42);
    border-bottom: 2px solid rgba(19, 32, 51, 0.42);
    transform: rotate(45deg);
    transition: transform 0.25s ease, border-right-color 0.25s ease, border-bottom-color 0.25s ease;
}

.has-submenu:hover>.menu-arrow,
.has-submenu:focus-within>.menu-arrow,
.has-submenu.open>.menu-arrow {
    border-right-color: var(--site-accent-strong);
    border-bottom-color: var(--site-accent-strong);
    transform: rotate(45deg) translate(-1px, -1px);
}

.submenu {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 280px;
    margin: 0;
    padding: 12px;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--site-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 35;
}

.submenu li+li {
    margin-top: 6px;
}

.submenu li a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--site-ink-soft);
    font-weight: 600;
}

.submenu li.active a,
.submenu li a:hover,
.submenu li a:focus {
    background: rgba(217, 133, 59, 0.1);
    color: var(--site-accent-strong);
}

@media (min-width: 992px) {

    .has-submenu:hover>.submenu,
    .has-submenu:focus-within>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.hero-slider-section {
    position: relative;
    min-height: 90svh;
    padding: 0;
}

.hero-slider-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 90%;
}

.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 90svh;
    width: 100%;
    /* border-radius: 0 0 40px 40px; */
    box-shadow: 0 36px 90px rgba(7, 15, 27, 0.2);
}

.hero-slider-wrapper .tns-outer,
.hero-slider-wrapper .tns-inner,
.hero-slider-wrapper .slick-list,
.hero-slider-wrapper .slick-track,
.hero-slider {
    overflow: hidden;
    min-height: inherit;
    height: 100%;
}

.hero-slider {
    position: relative;
    min-height: inherit;
}

.hero-slider:not(.slick-initialized) .hero-slide:not(:first-child) {
    display: none !important;
}

.hero-slider.slick-slider {
    margin-bottom: 0;
}

.hero-slider-wrapper .slick-track {
    display: flex;
}

.hero-slider-wrapper .slick-slide {
    height: auto;
}

.hero-slide {
    position: relative;
    display: flex !important;
    align-items: center;
    min-height: 100svh;
    padding: clamp(220px, 24vh, 280px) clamp(32px, 4vw, 52px) clamp(44px, 8vh, 78px);
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(8, 16, 28, 0.24), transparent 46%),
        linear-gradient(180deg, rgba(8, 16, 28, 0.12), rgba(8, 16, 28, 0.78));
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 220px;
    background: linear-gradient(180deg, transparent, rgba(8, 16, 28, 0.55));
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    width: min(1320px, 100%);
    margin: 0 auto;
}

.hero-content-wrap {
    display: block;
}

.hero-copy {
    max-width: 700px;
}

.hero-copy .eyebrow {
    color: #ffd0a2;
}

.hero-copy h1 {
    margin: 22px 0 22px;
    font-size: clamp(1.95rem, 3.4vw, 3.55rem);
    color: #ffffff;
    line-height: 1.08;
}

.hero-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(235, 241, 247, 0.86);
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-slider-wrapper .tns-controls,
.hero-slider-wrapper .slick-arrow {
    position: absolute;
    bottom: 28px;
    z-index: 5;
}

.hero-slider-wrapper .tns-controls {
    right: 26px;
    display: flex;
    gap: 10px;
}

.hero-slider-wrapper .slick-prev {
    right: 88px;
}

.hero-slider-wrapper .slick-next {
    right: 26px;
}

.hero-slider-wrapper .tns-controls button,
.hero-slider-wrapper .slick-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
    backdrop-filter: blur(16px);
}

.hero-slider-wrapper .slick-arrow::before,
.category-slider-arrow::before,
.brand-logo-slider-arrow::before {
    display: none;
}

.hero-slider-wrapper .tns-controls button:hover,
.hero-slider-wrapper .slick-arrow:hover,
.hero-slider-wrapper .slick-arrow:focus {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
}

.hero-slider-wrapper .slick-arrow.slick-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.hero-slider-wrapper .tns-nav,
.hero-slider-wrapper .slick-dots {
    position: absolute;
    left: 32px;
    bottom: 38px;
    z-index: 5;
    display: flex;
    gap: 8px;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-slider-wrapper .slick-dots li {
    margin: 0;
}

.hero-slider-wrapper .tns-nav button,
.hero-slider-wrapper .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    font-size: 0;
    line-height: 0;
}

.hero-slider-wrapper .slick-dots li button::before {
    display: none;
}

.hero-slider-wrapper .tns-nav button.tns-nav-active,
.hero-slider-wrapper .slick-dots li.slick-active button {
    width: 46px;
    background: linear-gradient(90deg, var(--site-accent), #ffd0a2);
}

.home-about-section {
    position: relative;
    overflow: hidden;
    /* padding: 88px 0 0; */
}

.home-about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left top, rgba(209, 135, 55, 0.14), transparent 24%),
        radial-gradient(circle at right center, rgba(17, 38, 29, 0.08), transparent 30%);
    pointer-events: none;
}

.home-about-shell {
    position: relative;
    padding: clamp(24px, 3vw, 38px);
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.96)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.1), transparent 30%);
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 28px 60px rgba(13, 24, 40, 0.1);
    overflow: hidden;
}

.home-about-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 28%),
        repeating-linear-gradient(105deg, rgba(209, 135, 55, 0.06) 0 2px, transparent 2px 28px);
    opacity: 0.38;
    pointer-events: none;
}

.home-about-shell>.row {
    position: relative;
    z-index: 1;
}

.home-about-visual {
    position: relative;
    min-height: 100%;
    background: #0d1724;
}

.home-about-visual img {
    display: block;
    min-height: 520px;
}

.home-about-visual-note {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: grid;
    gap: 10px;
    max-width: min(320px, calc(100% - 48px));
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(9, 17, 29, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(6, 13, 24, 0.26);
    backdrop-filter: blur(16px);
    color: #fff;
}

.home-about-visual-note span {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffd0a2;
}

.home-about-visual-note strong {
    font-size: 1.08rem;
    line-height: 1.45;
}

.home-about-content {
    display: grid;
    gap: 28px;
    align-content: center;
}

.home-about-copy {
    display: grid;
    gap: 18px;
}

.home-about-copy h2 {
    margin: 0;
    font-size: clamp(2.2rem, 3.4vw, 3.45rem);
    line-height: 1.08;
    color: var(--site-ink);
}

.home-about-copy p {
    max-width: 62ch;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.75;
}

.home-about-points {
    display: grid;
    gap: 0;
}

.home-about-point {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(17, 38, 29, 0.08);
}

.home-about-point:first-child {
    padding-top: 0;
    border-top: 0;
}

.home-about-point strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.04rem;
    color: var(--site-ink);
}

.home-about-point p {
    margin: 0;
    color: var(--site-ink-soft);
    line-height: 1.65;
}

.home-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.category-slider-shell {
    position: relative;
}

.category-slider {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.category-slider.slick-initialized {
    display: block;
}

.category-slider.slick-slider {
    margin-bottom: 0;
}

.category-slider .slick-list {
    margin: 0 -10px;
    padding: 8px 0 16px;
}

.category-slider .slick-track {
    display: flex;
}

.category-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

.category-slider-item,
.category-slider-item .category-card {
    height: 100%;
}

.category-slider-arrow {
    position: absolute;
    top: -106px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(17, 38, 29, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.92);
    color: var(--site-ink);
    box-shadow: var(--site-shadow-sm);
}

.category-slider-arrow.slick-prev {
    right: 68px;
}

.category-slider-arrow.slick-next {
    right: 0;
}

.category-slider-arrow:hover,
.category-slider-arrow:focus {
    background: rgba(255, 255, 255, 0.98);
    color: var(--site-accent-strong);
    border-color: rgba(209, 135, 55, 0.22);
}

.category-slider-arrow.slick-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.category-slider-shell .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: auto;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.category-slider-shell .slick-dots li {
    margin: 0;
}

.category-slider-shell .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 38, 29, 0.16);
    font-size: 0;
    line-height: 0;
}

.category-slider-shell .slick-dots li button::before {
    display: none;
}

.category-slider-shell .slick-dots li.slick-active button {
    width: 42px;
    background: linear-gradient(90deg, var(--site-accent), rgba(17, 38, 29, 0.78));
}

.brand-logo-section {
    position: relative;
    overflow: hidden;
}

.brand-logo-section::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 100%;
    background:
        radial-gradient(circle at left top, rgba(209, 135, 55, 0.14), transparent 40%),
        radial-gradient(circle at right top, rgba(17, 38, 29, 0.08), transparent 34%);
    pointer-events: none;

}

.brand-logo-section .container {
    position: relative;
    z-index: 1;
}

.brand-logo-slider-shell {
    position: relative;
}

.brand-logo-slider {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.brand-logo-slider.slick-initialized {
    display: block;
}

.brand-logo-slider.slick-slider {
    margin-bottom: 0;
}

.brand-logo-slider .slick-list {
    margin: 0 -10px;
    padding: 10px 0 18px;
}

.brand-logo-slider .slick-track {
    display: flex;
    padding: 28px 0;
}

.brand-logo-slider .slick-slide {
    height: auto;
    padding: 0 10px;
}

.brand-logo-slider-item,
.brand-logo-slider-item .brand-logo-card {
    height: 100%;
}

.brand-logo-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 15px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.98)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.08), transparent 32%);
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 16px 32px rgba(13, 24, 40, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.brand-logo-card:hover,
.brand-logo-card:focus {
    transform: translateY(-4px);
    border-color: rgba(209, 135, 55, 0.24);
    box-shadow: 0 22px 40px rgba(13, 24, 40, 0.12);
}

.brand-logo-card img {
    display: block;
    width: 100%;
    max-width: 240px;
    max-height: 100px;
    object-fit: contain;
}

.brand-logo-slider-arrow {
    position: absolute;
    top: -106px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 1px solid rgba(17, 38, 29, 0.12);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.92);
    color: var(--site-ink);
    box-shadow: var(--site-shadow-sm);
}

.brand-logo-slider-arrow.slick-prev {
    right: 68px;
}

.brand-logo-slider-arrow.slick-next {
    right: 0;
}

.brand-logo-slider-arrow:hover,
.brand-logo-slider-arrow:focus {
    background: rgba(255, 255, 255, 0.98);
    color: var(--site-accent-strong);
    border-color: rgba(209, 135, 55, 0.22);
}

.brand-logo-slider-arrow.slick-disabled {
    opacity: 0.42;
    pointer-events: none;
}

.brand-logo-slider-shell .slick-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: auto;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.brand-logo-slider-shell .slick-dots li {
    margin: 0;
}

.brand-logo-slider-shell .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 38, 29, 0.16);
    font-size: 0;
    line-height: 0;
}

.brand-logo-slider-shell .slick-dots li button::before {
    display: none;
}

.brand-logo-slider-shell .slick-dots li.slick-active button {
    width: 42px;
    background: linear-gradient(90deg, var(--site-accent), rgba(17, 38, 29, 0.78));
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 260px 0 60px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(7, 16, 29, 0.26), transparent 44%),
        linear-gradient(180deg, rgba(7, 16, 29, 0.24), rgba(7, 16, 29, 0.86));
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 160px;
    background: linear-gradient(180deg, transparent, rgba(7, 16, 29, 0.34));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.75fr);
    gap: 26px;
    align-items: end;
}

.page-hero-shell-wide {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.8fr);
}

.page-hero-copy h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.4rem, 2.5vw, 4.6rem);
    color: #fff;
}

.page-hero-copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(231, 238, 246, 0.86);
    font-size: 1.08rem;
}

.page-hero .breadcrumb-inline {
    margin-top: 26px;
}

.page-hero-aside {
    display: grid;
    gap: 16px;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(5, 12, 22, 0.18);
    backdrop-filter: blur(16px);
}

.hero-aside-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffd0a2;
}

.page-hero-aside strong {
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.35;
}

.page-hero-aside p {
    margin: 0;
    color: rgba(231, 238, 246, 0.76);
}

.hero-aside-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-aside-tags span {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
}

.breadcrumb-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(231, 238, 246, 0.78);
    font-size: 0.92rem;
}

.breadcrumb-inline a:hover {
    color: #fff;
}

.insight-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--site-shadow-lg);
    backdrop-filter: blur(18px);
}

.insight-item {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(246, 248, 251, 0.96), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(19, 32, 51, 0.06);
}

.insight-label,
.card-kicker {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--site-accent-strong);
}

.insight-item h3 {
    margin: 0;
    font-size: 1.35rem;
}

.insight-item p {
    margin: 0;
}

.story-panel,
.split-card,
.overview-card,
.detail-card,
.process-card,
.contact-info-card,
.form-card,
.quote-request-form-card {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 32px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--site-shadow-sm);
}

.section-ink .split-card,
.section-ink .overview-card,
.section-ink .detail-card,
.section-ink .process-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.section-ink .split-card h3,
.section-ink .overview-card h3,
.section-ink .detail-card h3,
.section-ink .process-card h3,
.section-ink .process-card h4,
.section-ink .metric-card strong,
.section-ink .metric-card span,
.section-ink .process-card p {
    color: #fff;
}

.section-ink .process-card p {
    color: rgba(231, 238, 246, 0.78);
}

.story-panel {
    gap: 22px;
}

.about-hover-card {
    transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.about-hover-card:hover,
.about-hover-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.96);
    box-shadow: var(--site-shadow-hover);
}

.story-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.story-list {
    display: grid;
    gap: 18px;
}

.story-point {
    padding-top: 18px;
    border-top: 1px solid var(--site-line);
}

.story-point strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--site-ink);
}

.story-point p {
    margin: 0;
}

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

.metric-card {
    display: grid;
    gap: 12px;
    padding: 30px 26px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(11, 20, 34, 0.96), rgba(20, 34, 54, 0.96));
    box-shadow: 0 22px 50px rgba(6, 13, 24, 0.18);
}

.metric-card strong {
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.metric-card span {
    color: rgba(229, 236, 245, 0.78);
    line-height: 1.7;
}

.overview-card h3,
.detail-card h3,
.split-card h3,
.process-card h4,
.contact-info-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.process-card {
    align-content: start;
}

.process-card p {
    margin: 0;
}

.section-process-showcase {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(246, 239, 225, 0.82), rgba(255, 253, 248, 0.98)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(17, 38, 29, 0.06), transparent 24%);
}

.section-process-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 28%),
        repeating-linear-gradient(100deg, rgba(209, 135, 55, 0.08) 0 2px, transparent 2px 24px);
    opacity: 0.34;
    pointer-events: none;
}

.process-showcase-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 48px;
}

.process-showcase-top {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.78fr) auto;
    gap: 34px;
    align-items: center;
}

.process-showcase-heading {
    max-width: 760px;
}

.process-showcase-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.92);
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 16px 28px rgba(13, 24, 40, 0.08);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--site-accent-strong);
}

.process-showcase-heading h2 {
    margin: 0;
    font-size: clamp(2.9rem, 5.8vw, 5.8rem);
    line-height: 1.1;
    letter-spacing: 0;
    color: var(--site-ink);
}

.process-showcase-heading h2 span {
    color: rgba(17, 38, 29, 0.4);
}

.process-showcase-summary {
    max-width: 560px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--site-ink-soft);
}

.process-showcase-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 16px 14px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 24px 44px rgba(184, 105, 35, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.process-showcase-cta:hover,
.process-showcase-cta:focus {
    color: #fff;
    background: linear-gradient(135deg, #e19452, #b7651d);
    box-shadow: 0 28px 50px rgba(184, 105, 35, 0.28);
}

.process-showcase-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(16, 39, 30, 0.94);
}

.process-showcase-cta-icon i[class^='iconoir-'],
.process-showcase-cta-icon i[class*=' iconoir-'] {
    font-size: 1rem;
    line-height: 1;
}

.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.process-flow-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: 22px;
    min-height: 420px;
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 22px 50px rgba(13, 24, 40, 0.09);
    overflow: visible;
}

.process-flow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(209, 135, 55, 0.06), transparent 42%);
    pointer-events: none;
}

.process-flow-card:not(:last-child)::after {
    content: '>';
    position: absolute;
    top: 50%;
    right: -46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: rgba(247, 242, 232, 0.96);
    border: 8px solid rgba(234, 223, 203, 0.98);
    box-shadow: 0 20px 36px rgba(13, 24, 40, 0.1);
    font-family: 'Archivo', sans-serif;
    font-size: 1.3rem;
    color: var(--site-accent-strong);
    transform: translateY(-50%);
    z-index: 2;
}

.process-flow-number {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: clamp(4.8rem, 8vw, 6.6rem);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.09em;
    color: rgba(209, 135, 55, 0.34);
    background: linear-gradient(180deg, rgba(209, 135, 55, 0.92), rgba(17, 38, 29, 0.06));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-flow-card h3 {
    margin: 0;
    max-width: 11.5ch;
    font-size: clamp(1.5rem, 2.5vw, 1.5rem);
    line-height: 1.1;
}

.process-flow-card p {
    margin: 0;
    max-width: 28ch;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--site-ink-soft);
}

@media (max-width: 1199.98px) {
    .home-about-visual img {
        min-height: 460px;
    }

    .home-about-copy h2 {
        font-size: clamp(2rem, 4vw, 2.9rem);
    }

    .process-showcase-top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    }

    .process-showcase-cta {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .process-flow-card {
        padding: 34px 30px;
    }

    .process-flow-card:not(:last-child)::after {
        right: -38px;
        width: 72px;
        height: 72px;
        border-width: 6px;
        font-size: 1.1rem;
    }
}

@media (max-width: 991.98px) {
    .home-about-shell {
        padding: 28px;
    }

    .home-about-visual img {
        min-height: 420px;
    }

    .home-about-content {
        gap: 24px;
    }

    .process-showcase-shell {
        gap: 36px;
    }

    .process-showcase-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-showcase-summary {
        max-width: 100%;
    }

    .process-showcase-cta {
        grid-column: auto;
    }

    .process-flow-grid {
        grid-template-columns: 1fr;
    }

    .process-flow-card {
        min-height: 0;
    }

    .process-flow-card:not(:last-child)::after {
        display: none;
    }
}

.image-panel {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 28px 70px rgba(10, 20, 35, 0.14);
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.category-card,
.reference-preview-card,
.case-card {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 100%;
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--site-shadow-sm);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card:hover,
.reference-preview-card:hover,
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--site-shadow-md);
}

.category-card img,
.reference-preview-card img,
.case-card img {
    width: 100%;
    border-radius: 22px;
    aspect-ratio: 1 / 0.78;
    object-fit: cover;
}

.category-card h3,
.reference-preview-card h3,
.case-card h3 {
    margin: 0;
    font-size: 1.55rem;
}

.category-card p,
.reference-preview-card p,
.case-card p {
    margin: 0;
}

.cta-band {
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(11, 20, 34, 0.96), rgba(20, 34, 54, 0.94)),
        radial-gradient(circle at right top, rgba(217, 133, 59, 0.2), transparent 28%);
    color: #fff;
    box-shadow: var(--site-shadow-lg);
}

.cta-band p {
    margin: 0;
}

.contact-info-card strong,
.overview-card strong,
.detail-card strong {
    color: var(--site-ink);
    font-size: 1rem;
}

.contact-info-card a:hover,
.overview-card a:hover,
.detail-card a:hover {
    color: var(--site-accent-strong);
}

.map-frame {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--site-shadow-md);
}

.map-frame iframe {
    min-height: 520px;
}

.site-footer {
    position: relative;
    padding-top: 40px;
    background:
        radial-gradient(circle at top right, rgba(217, 133, 59, 0.18), transparent 24%),
        linear-gradient(180deg, #09111d 0%, #0d1827 52%, #111f30 100%);
    color: #fff;
    /* overflow: hidden; */
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.55), transparent 86%);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-cta-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px 34px;
    padding: 30px 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 244, 248, 0.96));
    box-shadow: 0 32px 70px rgba(6, 13, 24, 0.2);
    transform: translateY(-58px);
    margin-bottom: -10px;
}

.footer-cta-copy {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.footer-cta-copy h3 {
    margin: 0;
    max-width: 680px;
    color: var(--site-ink);
    font-size: clamp(1.55rem, 2.2vw, 2.3rem);
    line-height: 1.14;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.footer-cta-actions .btn {
    min-width: 200px;
}

.footer-cta-strip .btn-outline-dark {
    border-color: rgba(17, 38, 29, 0.14);
    background: rgba(17, 38, 29, 0.04);
    color: var(--site-ink);
}

.footer-cta-strip .btn-outline-dark:hover,
.footer-cta-strip .btn-outline-dark:focus {
    background: rgba(17, 38, 29, 0.08);
    border-color: rgba(17, 38, 29, 0.24);
    color: var(--site-ink);
}

.footer-main {
    padding: 48px 0 54px;
}

.logo-footer {
    display: inline-flex;
}

.logo-footer img {
    width: 170px;
}

.footer-copy {
    max-width: 360px;
    margin: 18px 0 22px;
    color: rgba(231, 238, 246, 0.78);
}

.footer-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(124, 86, 61, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 233, 223, 0.92));
    color: #6c3f32;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.footer-head {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.05rem;
}

.footer-list,
.footer-contact-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a {
    color: rgba(231, 238, 246, 0.76);
    font-weight: 600;
}

.footer-list a:hover,
.footer-contact-list a:hover {
    color: #fff;
}

.footer-contact-list li {
    display: grid;
    gap: 4px;
}

.footer-contact-list span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 208, 162, 0.92);
}

.footer-contact-list strong,
.footer-contact-list a {
    color: rgba(231, 238, 246, 0.82);
    font-size: 0.96rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0 34px;
}

.footer-bottom-inner p {
    margin: 0;
    color: rgba(231, 238, 246, 0.64);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(231, 238, 246, 0.76);
    font-weight: 600;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--site-accent), var(--site-accent-strong));
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(184, 105, 35, 0.26);
    line-height: 50px;

}

.back-to-top:hover {
    box-shadow: 0 22px 50px rgba(184, 105, 35, 0.32);
}

.back-to-top .icons {
    width: 18px;
    height: 18px;
    stroke-width: 2.2;
}

.catalog-section {
    padding-top: 20px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.catalog-sidebar {
    display: grid;
    gap: 20px;
}

.catalog-filter-card {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--site-shadow-sm);
}

.catalog-filter-card-head h2 {
    margin: 0 0 18px;
    font-size: 1.24rem;
}

.catalog-filter-card-body {
    display: grid;
    gap: 16px;
}

.catalog-filter-card-accent {
    background: linear-gradient(135deg, rgba(11, 20, 34, 0.96), rgba(20, 34, 54, 0.94));
    border-color: rgba(255, 255, 255, 0.08);
}

.catalog-filter-card-accent h3,
.catalog-filter-card-accent p,
.catalog-filter-card-accent .eyebrow {
    color: #fff;
}

.catalog-filter-card-accent p {
    color: rgba(231, 238, 246, 0.78);
}

.catalog-search-field {
    position: relative;
}

.catalog-search-field input {
    width: 100%;
    height: 58px;
    padding: 0 58px 0 18px;
    border-radius: 18px;
    border: 1px solid var(--site-line);
    background: var(--site-surface-soft);
    color: var(--site-ink);
}

.catalog-search-field input:focus {
    outline: 0;
    border-color: rgba(217, 133, 59, 0.55);
    box-shadow: 0 0 0 4px rgba(217, 133, 59, 0.12);
}

.catalog-search-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 20px;
    height: 20px;
    color: var(--site-muted);
    transform: translateY(-50%);
}

.catalog-search-note {
    margin: 0;
    color: var(--site-muted);
    font-size: 0.92rem;
}

.catalog-sidebar-links {
    display: grid;
    gap: 10px;
}

.catalog-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: var(--site-surface-soft);
    border: 1px solid transparent;
    color: var(--site-ink);
    font-weight: 700;
}

.catalog-sidebar-link span {
    color: var(--site-ink-soft);
}

.catalog-sidebar-link strong {
    min-width: 38px;
    text-align: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11, 20, 34, 0.06);
    color: var(--site-ink);
    font-size: 0.84rem;
}

.catalog-sidebar-link:hover,
.catalog-sidebar-link.active {
    border-color: rgba(217, 133, 59, 0.26);
    background: rgba(217, 133, 59, 0.12);
}

.catalog-sidebar-link:hover span,
.catalog-sidebar-link.active span,
.catalog-sidebar-link.active strong {
    color: var(--site-accent-strong);
}

.catalog-main {
    min-width: 0;
}

.catalog-main-topbar,
.catalog-main-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--site-shadow-sm);
}

.catalog-main-topbar {
    align-items: end;
    margin-bottom: 18px;
}

.catalog-main-copy {
    display: grid;
    gap: 10px;
}

.catalog-main-copy h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.4vw, 2.8rem);
}

.catalog-main-copy p {
    margin: 0;
    max-width: 760px;
}

.catalog-main-actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.catalog-main-summary {
    display: grid;
    gap: 6px;
    text-align: right;
}

.catalog-main-summary strong {
    font-family: 'Archivo', sans-serif;
    font-size: 1.7rem;
    color: var(--site-ink);
}

.catalog-main-summary span {
    color: var(--site-muted);
    font-size: 0.96rem;
}

.catalog-inline-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: 999px;
    background: rgba(217, 133, 59, 0.12);
    color: var(--site-accent-strong);
    font-size: 0.88rem;
    font-weight: 700;
}

.catalog-tools-label {
    color: var(--site-muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.catalog-sort-panel-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.catalog-sort-select {
    min-width: 240px;
    height: 54px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid var(--site-line);
    background: var(--site-surface-soft);
    color: var(--site-ink);
    font-weight: 700;
}

.catalog-sort-select:focus {
    outline: 0;
    border-color: rgba(217, 133, 59, 0.55);
    box-shadow: 0 0 0 4px rgba(217, 133, 59, 0.12);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.catalog-empty-state {
    grid-column: 1 / -1;
    padding: 50px 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--site-shadow-sm);
    text-align: center;
}

.catalog-empty-state h3 {
    margin: 0 0 10px;
}

.catalog-empty-state p {
    margin: 0;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--site-shadow-sm);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--site-shadow-md);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.product-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 0.95;
    /* background: linear-gradient(180deg, #ecf1f6, #ffffff); */
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-media img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(11, 20, 34, 0.82);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card-quick-action {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--site-ink);
    box-shadow: 0 10px 18px rgba(13, 24, 40, 0.08);
}

.product-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    padding: 24px;
}

.product-card-category {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217, 133, 59, 0.12);
    color: var(--site-accent-strong);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card-title {
    position: relative;
    z-index: 2;
}

.product-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.product-card p {
    margin: 0;
    color: var(--site-muted);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--site-line);
}

.product-card-code-label {
    display: block;
    color: var(--site-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-card-code {
    color: var(--site-ink);
    font-size: 1rem;
}

.product-card-action {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--site-navy);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

.catalog-pagination-wrap {
    margin-top: 28px;
}

.catalog-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.catalog-pagination-button,
.catalog-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 24px rgba(13, 24, 40, 0.07);
    font-weight: 700;
    color: var(--site-ink);
}

.catalog-pagination-button.is-active {
    background: var(--site-navy);
    color: #fff;
}

.catalog-pagination-button.is-disabled {
    opacity: 0.48;
    pointer-events: none;
}

.product-gallery {
    display: grid;
    gap: 16px;
}

.product-gallery-main-panel {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--site-shadow-sm);
}

.product-gallery-lightbox-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-gallery-lightbox-trigger img {
    width: 100%;
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
    transition: opacity 0.25s ease, transform 0.4s ease;
}

.product-gallery-main-panel.is-image-switching img {
    opacity: 0.35;
    transform: scale(1.02);
}

.product-gallery-lightbox-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(11, 20, 34, 0.76);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.product-gallery-thumb {
    display: block;
    padding: 6px;
    border: 1px solid transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(13, 24, 40, 0.06);
}

.product-gallery-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

/* .product-gallery-thumb.active {
    border-color: rgba(217, 133, 59, 0.38);
    box-shadow: 0 18px 30px rgba(184, 105, 35, 0.12);
} */

.product-gallery-lightbox-links {
    display: none;
}

.product-detail-card h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.product-detail-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.product-detail-category {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217, 133, 59, 0.12);
    color: var(--site-accent-strong);
    font-size: 0.84rem;
    font-weight: 700;
}

.product-detail-code {
    color: var(--site-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.product-price-block {
    display: inline-grid;
    gap: 4px;
    width: fit-content;
    padding: 16px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(11, 20, 34, 0.98), rgba(20, 34, 54, 0.96));
}

.product-price-label {
    color: rgba(231, 238, 246, 0.66);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.product-price-value {
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.product-detail-lead {
    margin: 0;
    font-size: 1.03rem;
}

.product-detail-richtext {
    display: grid;
    gap: 14px;
}

.product-detail-richtext p,
.product-detail-richtext li,
.product-detail-richtext strong,
.product-detail-richtext a {
    color: var(--site-ink-soft);
}

.product-detail-bullet-list {
    margin-top: 6px;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.product-process-steps {
    display: grid;
    gap: 14px;
}

.product-process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding-top: 16px;
    border-top: 1px solid var(--site-line);
}

.product-process-step p {
    margin: 0;
}

.catalog-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.catalog-heading-copy {
    display: grid;
    gap: 10px;
}

.catalog-heading-copy h2 {
    margin: 0;
    font-size: clamp(1.9rem, 2.7vw, 3rem);
}

.catalog-heading-copy p {
    margin: 0;
    max-width: 720px;
}

.form-card,
.quote-request-form-card {
    gap: 20px;
}

.form-card h3,
.quote-request-form-card h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.form-label {
    margin-bottom: 10px;
    color: var(--site-ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 56px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--site-line);
    background: var(--site-surface-soft);
    color: var(--site-ink);
    font-size: 0.98rem;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(217, 133, 59, 0.56);
    box-shadow: 0 0 0 4px rgba(217, 133, 59, 0.12);
    background: #fff;
}

.quote-request-inline-note {
    margin: 0;
    color: var(--site-muted);
}

.quote-request-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quote-request-meta span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(11, 20, 34, 0.06);
    color: var(--site-ink);
    font-size: 0.86rem;
    font-weight: 700;
}

.quote-request-points {
    display: grid;
    gap: 14px;
}

.quote-request-point {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.quote-request-point p {
    margin: 0;
}

.quote-request-searchable-field {
    position: relative;
}

.quote-request-search-note {
    margin: 12px 0 0;
    color: var(--site-muted);
    font-size: 0.9rem;
}

.searchable-select-native {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.searchable-select-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    max-height: 320px;
    overflow: auto;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(19, 32, 51, 0.08);
    box-shadow: var(--site-shadow-md);
    z-index: 25;
}

[data-searchable-select-shell].is-open .searchable-select-dropdown {
    display: block;
}

.searchable-select-group-label {
    padding: 10px 12px 8px;
    color: var(--site-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.searchable-select-option {
    display: grid;
    gap: 6px;
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: var(--site-ink);
    text-align: left;
}

.searchable-select-option:hover,
.searchable-select-option:focus,
.searchable-select-option.is-selected {
    background: rgba(217, 133, 59, 0.12);
    outline: none;
}

.searchable-select-option-main {
    font-weight: 700;
}

.searchable-select-option-meta,
.searchable-select-empty {
    color: var(--site-muted);
    font-size: 0.88rem;
}

.searchable-select-empty {
    padding: 16px;
}

.quote-request-summary-box,
.product-quote-summary {
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11, 20, 34, 0.98), rgba(20, 34, 54, 0.96));
}

.product-quote-summary-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 208, 162, 0.92);
}

.quote-request-summary-box strong,
.product-quote-summary strong {
    color: #fff;
    font-size: 1.3rem;
}

.product-quote-summary-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-quote-summary-meta span {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(231, 238, 246, 0.82);
    font-size: 0.84rem;
    font-weight: 600;
}

.quote-request-detail-link,
.product-quote-summary .link-arrow {
    color: #fff;
}

.quote-request-detail-link.is-hidden {
    display: none;
}

.product-quote-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-quote-feedback {
    min-height: 0;
}

#error-msg,
#simple-msg {
    margin: 0;
}

.alert {
    padding: 14px 16px;
    border: 0;
    border-radius: 16px;
    font-weight: 600;
}

.alert-success {
    background: rgba(31, 138, 112, 0.12);
    color: #166b57;
}

.alert-warning {
    background: rgba(217, 133, 59, 0.12);
    color: #91561f;
}

.alert-danger {
    background: rgba(183, 75, 75, 0.12);
    color: #8f3030;
}

.quote-request-form-card .btn-outline-dark {
    border-color: rgba(19, 32, 51, 0.18);
    color: var(--site-ink);
}

.quote-request-form-card .btn-outline-dark:hover,
.quote-request-form-card .btn-outline-dark:focus {
    background: rgba(19, 32, 51, 0.06);
    color: var(--site-ink);
}

@media (max-width: 1199.98px) {
    .nav-shell {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 18px;
    }

    .brand-support {
        display: none;
    }

    .nav-actions {
        min-width: 0;
    }

    .split-heading,
    .page-hero-shell,
    .page-hero-shell-wide,
    .hero-content-wrap {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 991.98px) {
    #topnav {
        top: 0;
        overflow: visible;
    }

    .utility-bar {
        display: none;
    }

    .nav-shell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-top: 10px;
        padding: 12px 14px;
        border-radius: 26px;
        background: linear-gradient(145deg, rgba(252, 248, 242, 0.96), rgba(255, 255, 255, 0.9));
        border: 1px solid rgba(255, 255, 255, 0.76);
        box-shadow: 0 18px 40px rgba(6, 14, 25, 0.18);
        overflow: visible;
        isolation: isolate;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-shell::before,
    .nav-shell::after {
        display: none;
    }

    body.nav-open #topnav .nav-shell {
        background: linear-gradient(145deg, rgba(252, 248, 242, 0.98), rgba(255, 255, 255, 0.94));
        box-shadow: 0 20px 44px rgba(6, 14, 25, 0.22);
    }

    #topnav .container.position-relative {
        overflow: visible;
    }

    .logo img {
        width: 126px;
    }

    .brand-caption,
    .brand-support,
    .brand-keywords,
    .nav-actions {
        display: none;
    }

    .menu-extras {
        display: block;
    }

    .navbar-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(19, 32, 51, 0.09);
        background: linear-gradient(180deg, rgba(19, 32, 51, 0.06), rgba(19, 32, 51, 0.02));
        color: var(--site-ink);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }

    .navbar-toggle.open {
        background: linear-gradient(180deg, rgba(217, 133, 59, 0.16), rgba(217, 133, 59, 0.08));
        border-color: rgba(217, 133, 59, 0.22);
        color: var(--site-accent-strong);
    }

    #navigation {
        position: fixed;
        inset: 0;
        display: block !important;
        padding: calc(120px + env(safe-area-inset-top, 0px)) 14px calc(18px + env(safe-area-inset-bottom, 0px));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        z-index: 0;
    }

    #navigation.is-open,
    #navigation.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-panel-shell {
        position: relative;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 16px;
        align-content: stretch;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        height: calc(100svh - 112px - env(safe-area-inset-bottom, 0px));
        padding: 18px;
        border-radius: 30px;
        background:
            radial-gradient(circle at top right, rgba(217, 133, 59, 0.22), transparent 34%),
            linear-gradient(180deg, rgba(10, 19, 31, 0.98), rgba(16, 30, 48, 0.98));
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 30px 72px rgba(5, 12, 22, 0.42);
        overflow: hidden;
    }

    .nav-panel-shell::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.04);
        pointer-events: none;
    }

    .nav-panel-top,
    .mobile-nav-cta {
        display: grid;
        gap: 12px;
    }

    .nav-panel-top {
        align-items: start;
        padding: 0 0 4px;
    }

    .nav-panel-copy {
        display: grid;
        gap: 8px;
    }

    .nav-panel-label {
        color: rgba(255, 208, 162, 0.92);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .nav-panel-copy p {
        margin: 0;
        max-width: 32ch;
        color: rgba(220, 229, 240, 0.72);
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .nav-panel-phone {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        width: fit-content;
        padding: 12px 14px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        color: #fff;
        font-weight: 700;
        font-size: 0.92rem;
        line-height: 1;
        white-space: nowrap;
    }

    .nav-panel-phone i {
        color: #ffd7b4;
        font-size: 1.05rem;
    }

    .nav-panel-phone span {
        white-space: nowrap;
    }

    .navigation-menu {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        margin: 0;
        min-height: 0;
        gap: 10px;
        padding: 2px 2px 2px 0;
        overflow: auto;
        list-style: none;
        align-content: start;
        align-items: stretch;
        justify-content: stretch;
        justify-items: stretch;
        counter-reset: mobile-nav;
    }

    .navigation-menu>li {
        position: relative;
        width: 100%;
        border: 0;
        counter-increment: mobile-nav;
    }

    /* .navigation-menu>li::before {
        content: counter(mobile-nav, decimal-leading-zero);
        position: absolute;
        left: 18px;
        top: 18px;
        color: rgba(255, 208, 162, 0.72);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        line-height: 1;
        z-index: 1;
    } */

    #topnav .navigation-menu>li>a {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 7px;
        width: 100%;
        min-height: 48px;
        padding: 8px 44px 8px 18px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        color: rgba(245, 249, 253, 0.98);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: -0.01em;
        text-transform: none;
        text-align: left;
        transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
    }

    #topnav .navigation-menu>li>a::after {
        display: none;
    }

    .nav-link-title {
        display: block;
        font-family: 'Archivo', sans-serif;
        font-size: 13px;
        line-height: 1.05;
        letter-spacing: -0.01em;
        text-transform: none;
    }

    .nav-link-desc {
        display: block;
        color: rgba(215, 225, 237, 0.62);
        font-size: 0.76rem;
        font-weight: 600;
        line-height: 1.45;
        letter-spacing: 0.01em;
        text-transform: none;
    }

    #topnav .navigation-menu>li.active>a,
    #topnav .navigation-menu>li:hover>a,
    #topnav .navigation-menu>li:focus-within>a {
        color: #fff4ea;
        border-color: rgba(217, 133, 59, 0.18);
        background: linear-gradient(180deg, rgba(217, 133, 59, 0.16), rgba(255, 255, 255, 0.04));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 30px rgba(0, 0, 0, 0.12);
        /* transform: translateX(4px); */
    }

    #topnav .navigation-menu>li.active::before,
    #topnav .navigation-menu>li:hover::before,
    #topnav .navigation-menu>li:focus-within::before {
        color: #ffd7b4;
    }

    .has-submenu {
        width: 100%;
        padding-right: 0;
    }

    #topnav .navigation-menu>li:not(.has-submenu)>a {
        padding-right: 54px;
    }

    .menu-arrow {
        right: 16px;
        top: 50%;
        display: grid;
        place-items: center;
        width: 32px;
        height: 32px;
        margin-top: 0;
        border: 0 !important;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
        transform: translateY(-50%) !important;
        transition: background 0.22s ease, box-shadow 0.22s ease;
    }

    .menu-arrow::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid rgba(214, 224, 236, 0.64);
        border-bottom: 2px solid rgba(214, 224, 236, 0.64);
        transform: translate(-50%, -62%) rotate(45deg);
        transition: transform 0.22s ease, border-color 0.22s ease;
    }

    .has-submenu:hover>.menu-arrow,
    .has-submenu:focus-within>.menu-arrow,
    .has-submenu.open>.menu-arrow {
        background: rgba(217, 133, 59, 0.14);
        box-shadow: inset 0 0 0 1px rgba(217, 133, 59, 0.18);
        transform: translateY(-50%) !important;
    }

    .has-submenu:hover>.menu-arrow::before,
    .has-submenu:focus-within>.menu-arrow::before,
    .has-submenu.open>.menu-arrow::before {
        border-right-color: #ffd7b4;
        border-bottom-color: #ffd7b4;
    }

    .has-submenu.open>.menu-arrow::before {
        transform: translate(-50%, -34%) rotate(225deg);
    }

    .submenu {
        position: static;
        min-width: 0;
        margin: 8px 0 0;
        padding: 8px;
        border-radius: 20px;
        background: rgba(4, 11, 19, 0.38);
        border: 1px solid rgba(255, 255, 255, 0.06);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .submenu::before {
        display: none;
    }

    .submenu.open {
        display: grid;
        gap: 6px;
    }

    .submenu li+li {
        margin-top: 0;
    }

    .submenu li a {
        position: relative;
        padding: 13px 14px 13px 30px;
        border-radius: 16px;
        color: rgba(216, 225, 236, 0.78);
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid transparent;
        transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, transform 0.22s ease;
    }

    /* .submenu li a::before {
        content: '';
        position: absolute;
        left: 14px;
        top: 50%;
        width: 6px;
        height: 6px;
        border-radius: 999px;
        background: rgba(255, 208, 162, 0.44);
        transform: translateY(-50%);
    } */

    .submenu li.active a,
    .submenu li a:hover,
    .submenu li a:focus {
        background: rgba(217, 133, 59, 0.12);
        border-color: rgba(217, 133, 59, 0.14);
        color: #fff4ea;
        transform: translateX(2px);
    }

    .submenu li.active a::before,
    .submenu li a:hover::before,
    .submenu li a:focus::before {
        background: #ffd7b4;
    }

    .nav-panel-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 16px;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(217, 133, 59, 0.12), rgba(255, 255, 255, 0.04));
        border: 1px solid rgba(255, 208, 162, 0.14);
    }

    .nav-panel-meta .eyebrow {
        color: rgba(255, 208, 162, 0.88);
        white-space: nowrap;
    }

    .nav-panel-meta p {
        display: none;
    }

    .nav-panel-meta .link-arrow {
        color: rgba(236, 241, 247, 0.84);
    }

    .nav-panel-meta .link-arrow {
        margin-left: auto;
        white-space: nowrap;
    }

    .mobile-nav-cta {
        gap: 10px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        /* background: linear-gradient(180deg, rgba(10, 19, 31, 0), rgba(10, 19, 31, 0.65) 32%, rgba(10, 19, 31, 0.95) 100%); */
    }

    .mobile-nav-cta .nav-cta {
        width: 100%;
        justify-content: center;
        min-height: 56px;
        border-radius: 18px;
    }

    .language-switcher.language-switcher-mobile {
        width: 100%;
    }

    .language-switcher-mobile .language-switcher__summary {
        padding: 12px 14px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .language-switcher-mobile .language-switcher__summary-copy strong,
    .language-switcher-mobile .language-switcher__summary-copy small,
    .language-switcher-mobile .language-switcher__caret {
        color: #fff;
    }

    .language-switcher-mobile .language-switcher__caret {
        background: rgba(255, 255, 255, 0.12);
    }

    .language-switcher-mobile .language-switcher__summary:hover .language-switcher__caret,
    .language-switcher-mobile[open] .language-switcher__caret {
        background: rgba(255, 255, 255, 0.2);
    }

    .language-switcher-mobile .language-switcher__menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .hero-slider-section {
        min-height: 100svh;
        padding-top: 0;
    }

    .hero-slider-wrapper {
        min-height: 100svh;
    }

    .hero-slide {
        min-height: 100svh;
        padding-top: 188px;
    }

    .page-hero {
        padding-top: 164px;
    }

    .section {
        padding: 86px 0;
    }

    .insight-band,
    .stats-grid,
    .catalog-layout,
    .catalog-heading-row,
    .footer-cta-strip,
    .footer-bottom-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .insight-band {
        gap: 14px;
    }

    .catalog-main-summary,
    .catalog-main-actions {
        text-align: left;
        justify-items: start;
    }

    .catalog-main-topbar,
    .catalog-main-tools,
    .footer-cta-strip,
    .footer-bottom-inner {
        align-items: start;
    }

    .catalog-main-tools {
        flex-direction: column;
    }

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

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

    .footer-cta-strip {
        grid-template-columns: 1fr;
        transform: translateY(-34px);
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .home-about-shell {
        border-radius: 24px;
    }

    .home-about-visual-note {
        right: 18px;
        left: 18px;
        bottom: 18px;
        max-width: none;
        padding: 16px 18px;
        border-radius: 20px;
    }

    .home-about-copy h2 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .home-about-point {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .section {
        padding: 74px 0;
    }

    .cta-band,
    .footer-cta-strip,
    .story-panel,
    .split-card,
    .overview-card,
    .detail-card,
    .process-card,
    .contact-info-card,
    .form-card,
    .quote-request-form-card,
    .catalog-filter-card,
    .catalog-main-topbar,
    .catalog-main-tools,
    .category-card,
    .reference-preview-card,
    .case-card {
        border-radius: 24px;
    }

    .hero-slide {
        min-height: 100svh;
        padding: 138px 22px 84px;
    }

    .hero-copy h1 {
        font-size: clamp(1.45rem, 6vw, 2rem);
    }

    .hero-copy p {
        font-size: 0.88rem;
    }

    .hero-slider-wrapper {
        border-radius: 0 0 24px 24px;
    }

    .page-hero {
        padding: 156px 0 92px;
    }

    .page-hero-copy h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .section-heading h2,
    .catalog-main-copy h2,
    .catalog-heading-copy h2,
    .form-card h3,
    .quote-request-form-card h2,
    .story-panel h2 {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .insight-band,
    .stats-grid,
    .category-slider,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

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

    .catalog-sort-select,
    .catalog-search-field input {
        width: 100%;
    }

    .catalog-pagination {
        justify-content: center;
    }

    .footer-main {
        padding-top: 30px;
    }

    .footer-cta-strip {
        padding: 26px;
        transform: translateY(-26px);
    }

    .footer-cta-actions .btn {
        min-width: 0;
        width: 100%;
    }

    .footer-bottom-links {
        gap: 12px;
    }

    .process-showcase-heading h2 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }

    .process-showcase-cta {
        width: 100%;
        justify-content: space-between;
        padding-left: 22px;
    }

    .process-flow-card {
        padding: 30px 24px;
        border-radius: 24px;
    }

    .process-flow-card h3,
    .process-flow-card p {
        max-width: none;
    }

    .process-flow-card h3 {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }
}

@media (max-width: 575.98px) {

    .nav-shell,
    .footer-cta-strip,
    .cta-band,
    .story-panel,
    .split-card,
    .overview-card,
    .detail-card,
    .process-card,
    .contact-info-card,
    .form-card,
    .quote-request-form-card,
    .catalog-filter-card,
    .catalog-main-topbar,
    .catalog-main-tools {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-slider-wrapper .tns-controls,
    .hero-slider-wrapper .slick-prev,
    .hero-slider-wrapper .slick-next {
        bottom: 18px;
    }

    .hero-slider-wrapper .tns-controls {
        right: 18px;
    }

    .hero-slider-wrapper .slick-next {
        right: 18px;
    }

    .hero-slider-wrapper .slick-prev {
        right: 80px;
    }

    .hero-slider-wrapper .tns-nav,
    .hero-slider-wrapper .slick-dots {
        left: 18px;
        bottom: 24px;
    }

    .process-showcase-cta-icon {
        width: 48px;
        height: 48px;
    }

    .category-slider .slick-list {
        margin: 0 -8px;
    }

    .category-slider .slick-slide {
        padding: 0 8px;
    }

    .brand-logo-slider .slick-list {
        margin: 0 -8px;
    }

    .brand-logo-slider .slick-slide {
        padding: 0 8px;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

body.products,
body.products_category,
body.product_detail {
    background:
        radial-gradient(circle at top left, rgba(209, 135, 55, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(17, 38, 29, 0.08), transparent 22%),
        linear-gradient(180deg, #f4ecde 0%, #fbf7ef 45%, #f1eade 100%);
}

body.products::before,
body.products_category::before,
body.product_detail::before {
    background-image:
        linear-gradient(rgba(17, 38, 29, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 38, 29, 0.02) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.5), transparent 84%);
}

.page-hero-catalog,
.page-hero-detail {
    padding: 280px 0 104px;
}

.page-hero-catalog::before,
.page-hero-detail::before {
    background:
        linear-gradient(112deg, rgba(10, 23, 18, 0.5), rgba(10, 23, 18, 0.08) 46%),
        linear-gradient(180deg, rgba(10, 23, 18, 0.28), rgba(10, 23, 18, 0.84));
}

.page-hero-catalog::after,
.page-hero-detail::after {
    height: 132px;
    background: linear-gradient(180deg, transparent, rgba(10, 23, 18, 0.4));
}

.page-hero-shell-catalog,
.page-hero-shell-detail {
    gap: 34px;
}

.catalog-hero-chips,
.product-hero-chips,
.catalog-hero-summary,
.catalog-main-badges,
.catalog-support-tags,
.product-gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-hero-chips {
    margin-top: 20px;
}

.product-hero-chips {
    margin-top: 18px;
}

.catalog-hero-chips span,
.product-hero-chips span,
.catalog-hero-summary span,
.catalog-main-badges span,
.catalog-support-tags span,
.product-gallery-meta span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: capitalize;
}

.catalog-hero-aside,
.product-hero-aside {
    gap: 18px;
    padding: 24px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(13, 31, 23, 0.92), rgba(16, 39, 30, 0.9)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.18), transparent 34%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 50px rgba(5, 12, 22, 0.2);
}

.catalog-hero-summary span {
    background: rgba(255, 255, 255, 0.12);
}

.catalog-hero-summary span:first-child {
    letter-spacing: normal;
    text-transform: none;
}

.catalog-hero-actions,
.product-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-hero-price {
    margin: 0;
    color: #fff !important;
    font-family: 'Archivo', sans-serif;
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
    line-height: 1.1;
}

.product-hero-tags span {
    background: rgba(255, 255, 255, 0.12);
}

.catalog-filter-card,
.catalog-main-topbar,
.catalog-main-tools,
.catalog-empty-state,
.product-card,
.product-gallery-main-panel,
.product-gallery-thumb,
.product-detail-card,
body.product_detail .overview-card,
body.product_detail .split-card,
body.products .cta-band,
body.products_category .cta-band,
body.product_detail .cta-band {
    border-radius: 20px;
}

.catalog-filter-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(247, 241, 231, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 14px 30px rgba(13, 24, 40, 0.08);
}

.catalog-filter-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--site-accent), rgba(17, 38, 29, 0.78));
}

.catalog-filter-card-accent {
    background:
        linear-gradient(180deg, rgba(13, 31, 23, 0.96), rgba(18, 40, 31, 0.94)),
        radial-gradient(circle at top right, rgba(209, 135, 55, 0.16), transparent 30%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(8, 16, 13, 0.16);
}

.catalog-filter-card-accent::before {
    background: linear-gradient(90deg, #f4c58f, #d18737);
}

.catalog-search-field input,
.catalog-sort-select {
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(17, 38, 29, 0.1);
}

.catalog-sidebar-links {
    gap: 8px;
}

.catalog-sidebar-link {
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(17, 38, 29, 0.06);
}

.catalog-sidebar-link strong {
    min-width: 34px;
    padding: 5px 8px;
    border-radius: 10px;
    background: rgba(17, 38, 29, 0.08);
}

.catalog-main-topbar,
.catalog-main-tools {
    position: relative;
    overflow: hidden;
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 16px 32px rgba(13, 24, 40, 0.08);
}

.catalog-main-tools {
    overflow: visible;
}

.catalog-main-topbar::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--site-accent), rgba(17, 38, 29, 0.78));
}

.catalog-main-copy {
    gap: 12px;
}

.catalog-main-summary strong {
    font-size: 1.48rem;
}

.catalog-main-summary span {
    max-width: 300px;
}

.catalog-main-badges span,
.product-gallery-meta span {
    color: var(--site-ink-soft);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(17, 38, 29, 0.08);
}

.catalog-inline-cta {
    padding: 12px 15px;
    border-radius: 12px;
    background: linear-gradient(180deg, #143526, #10271e);
    color: #fff;
}

.catalog-grid {
    gap: 20px;
    margin-top: 20px;
}

.catalog-empty-state {
    padding: 44px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 14px 28px rgba(13, 24, 40, 0.07);
}

.product-card {
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(246, 240, 229, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 18px 34px rgba(13, 24, 40, 0.08);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(13, 24, 40, 0.12);
}

.product-card-media {
    aspect-ratio: 1 / 0.82;
    /* background: linear-gradient(180deg, #ebe5d9, #fbf8f1); */
}

.product-card-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 72px;
    background: linear-gradient(180deg, transparent, rgba(17, 38, 29, 0.12));
    pointer-events: none;
}

.product-card-badge {
    left: 16px;
    top: 16px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(17, 38, 29, 0.88);
    letter-spacing: 0.06em;
}

.product-card-quick-action {
    right: 16px;
    top: 16px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(17, 38, 29, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}

.product-card-quick-action svg {
    width: 18px;
    height: 18px;
}

.product-card-body {
    gap: 12px;
    padding: 20px;
}

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

.product-card-category {
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.08em;
}

.product-card-status {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(17, 38, 29, 0.07);
    color: var(--site-ink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 1.26rem;
    line-height: 1.3;
}

.product-card p {
    color: #506258;
    font-size: 0.95rem;
    line-height: 1.65;
}

.product-card-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-card-pills span {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(17, 38, 29, 0.08);
    background: rgba(255, 255, 255, 0.86);
    color: var(--site-ink-soft);
    font-size: 0.8rem;
    font-weight: 700;
}

.product-card-footer {
    gap: 14px;
    padding-top: 14px;
}

.product-card-code-label {
    font-size: 0.72rem;
}

.product-card-action {
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, #143526, #10271e);
}

.product-gallery-main-panel {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 231, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 18px 34px rgba(13, 24, 40, 0.08);
}

.product-gallery-lightbox-badge {
    right: 18px;
    bottom: 18px;
    border-radius: 12px;
}

.product-gallery-thumbs {
    gap: 10px;
}

.product-gallery-thumb {
    padding: 5px;
    border-radius: 14px;
    border-color: rgba(17, 38, 29, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
}

.product-gallery-thumb img {
    border-radius: 10px;
}

.product-gallery-meta span {
    text-transform: none;
}

.product-detail-card {
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.98));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 18px 34px rgba(13, 24, 40, 0.08);
}

.product-detail-meta-line {
    gap: 10px 12px;
}

.product-detail-category {
    padding: 7px 10px;
    border-radius: 10px;
}

.product-detail-code {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(17, 38, 29, 0.06);
    color: var(--site-ink-soft);
}

.product-price-block {
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, #143526, #10271e);
}

.product-detail-bullet-list {
    gap: 10px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(17, 38, 29, 0.08);
    background: rgba(255, 255, 255, 0.7);
}

.product-detail-actions {
    padding-top: 4px;
}

body.product_detail .overview-card,
body.product_detail .split-card {
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 231, 0.96));
    border: 1px solid rgba(17, 38, 29, 0.08);
    box-shadow: 0 16px 30px rgba(13, 24, 40, 0.08);
}

.product-process-step {
    padding-top: 14px;
}

body.products .chip-list span,
body.products_category .chip-list span,
body.product_detail .chip-list span {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.86);
}

body.products .cta-band,
body.products_category .cta-band,
body.product_detail .cta-band {
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(14, 34, 25, 0.98), rgba(20, 46, 35, 0.96)),
        radial-gradient(circle at right top, rgba(217, 133, 59, 0.18), transparent 30%);
    box-shadow: 0 22px 48px rgba(10, 20, 35, 0.16);
}

@media (max-width: 1199.98px) {
    .catalog-main-actions {
        justify-items: start;
    }

    .catalog-main-summary {
        text-align: left;
    }
}

@media (max-width: 767.98px) {

    .brand-logo-card {
        min-height: 124px;
        padding: 22px 20px;
    }

    .brand-logo-card img {
        max-width: 180px;
        max-height: 58px;
    }

    .page-hero-catalog,
    .page-hero-detail {
        padding: 152px 0 88px;
    }

    .catalog-filter-card,
    .catalog-main-topbar,
    .catalog-main-tools,
    .catalog-empty-state,
    .product-card,
    .product-gallery-main-panel,
    .product-gallery-thumb,
    .product-detail-card,
    body.product_detail .overview-card,
    body.product_detail .split-card,
    body.products .cta-band,
    body.products_category .cta-band,
    body.product_detail .cta-band {
        border-radius: 18px;
    }

    .catalog-hero-actions,
    .product-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-hero-chips span,
    .product-hero-chips span,
    .catalog-hero-summary span,
    .catalog-main-badges span,
    .catalog-support-tags span,
    .product-gallery-meta span {
        padding: 8px 10px;
    }

    .product-card-body,
    .product-detail-card,
    body.product_detail .overview-card,
    body.product_detail .split-card {
        padding: 20px;
    }

    .product-detail-bullet-list {
        padding: 16px;
    }
}

@media (max-width: 575.98px) {

    .catalog-filter-card,
    .catalog-main-topbar,
    .catalog-main-tools,
    .product-detail-card,
    body.product_detail .overview-card,
    body.product_detail .split-card {
        padding-left: 18px;
        padding-right: 18px;
    }
}

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

body.products .catalog-page-hero,
body.products_category .catalog-page-hero {
    position: relative;
    padding: 192px 0 64px;
    background:
        linear-gradient(112deg, rgba(13, 11, 12, 0.86), rgba(13, 11, 12, 0.44) 48%, rgba(13, 11, 12, 0.74)),
        var(--catalog-hero-image) center/cover no-repeat;
    overflow: hidden;
}

body.products .catalog-page-hero::before,
body.products_category .catalog-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at right center, rgba(255, 96, 88, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56));
}

.catalog-page-hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 30px;
    align-items: end;
}

.catalog-page-hero-copy {
    display: grid;
    gap: 18px;
    max-width: 560px;
}

.catalog-page-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.7rem, 5vw, 4rem);
}

.catalog-page-hero-copy p {
    margin: 0;
    color: rgba(255, 246, 245, 0.86);
    font-size: 1.02rem;
    line-height: 1.72;
}

.catalog-hero-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.catalog-hero-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    min-width: 220px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.catalog-hero-feature strong,
.catalog-hero-feature small {
    display: block;
}

.catalog-hero-feature strong {
    color: #fff;
    font-size: 0.92rem;
}

.catalog-hero-feature small {
    color: rgba(255, 246, 245, 0.76);
    font-size: 0.8rem;
}

.catalog-hero-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.catalog-hero-feature-icon svg {
    width: 18px;
    height: 18px;
}

.catalog-page-hero-actions {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(20, 15, 15, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.catalog-page-search {
    position: relative;
    display: block;
}

.catalog-page-search input {
    width: 100%;
    height: 72px;
    padding: 0 64px 0 24px;
    border: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--site-ink);
    font-size: 1rem;
    box-shadow: 0 14px 34px rgba(14, 11, 12, 0.14);
}

.catalog-page-search input:focus {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(239, 47, 46, 0.16), 0 14px 34px rgba(14, 11, 12, 0.16);
}

.catalog-page-search-icon {
    position: absolute;
    top: 50%;
    right: 22px;
    display: inline-flex;
    color: var(--site-accent-strong);
    transform: translateY(-50%);
}

.catalog-page-search-icon svg {
    width: 22px;
    height: 22px;
}

.catalog-page-chip-row,
.catalog-page-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-chip-button,
.catalog-active-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 700;
}

.catalog-chip-button.is-active,
.catalog-active-chip {
    background: rgba(239, 47, 46, 0.18);
    border-color: rgba(255, 255, 255, 0.22);
}

.catalog-active-chip.is-clear {
    background: rgba(255, 255, 255, 0.12);
}

.catalog-page-section {
    padding-top: 26px;
}

.catalog-page-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    margin-bottom: 24px;
    border-radius: 24px;
    border: 1px solid rgba(239, 47, 46, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 46px rgba(35, 18, 15, 0.08);
}

.catalog-toolbar-filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    flex: 1;
}

.catalog-toolbar-select {
    width: 100%;
    height: 58px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(239, 47, 46, 0.1);
    background: #fff;
    color: var(--site-ink);
    font-weight: 600;
}

.catalog-toolbar-select:focus {
    outline: 0;
    border-color: rgba(239, 47, 46, 0.38);
    box-shadow: 0 0 0 4px rgba(239, 47, 46, 0.1);
}

.catalog-toolbar-view {
    display: inline-flex;
    gap: 10px;
}

.catalog-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(239, 47, 46, 0.12);
    background: #fff;
    color: var(--site-ink);
}

.catalog-view-button svg {
    width: 20px;
    height: 20px;
}

.catalog-view-button.is-active {
    background: linear-gradient(135deg, #ef2f2e, #b11717);
    color: #fff;
    border-color: transparent;
}

.catalog-page-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.catalog-page-sidebar {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 120px;
}

.catalog-filter-group {
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(239, 47, 46, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(35, 18, 15, 0.06);
}

.catalog-filter-group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--site-ink);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}

.catalog-filter-group-icon {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.catalog-filter-group-toggle[aria-expanded="false"] .catalog-filter-group-icon {
    transform: rotate(-45deg);
}

.catalog-filter-group-body {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.catalog-filter-group-body[hidden] {
    display: none;
}

.catalog-check-option {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
}

.catalog-check-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog-check-mark {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid rgba(239, 47, 46, 0.2);
    background: #fff;
}

.catalog-check-option input:checked + .catalog-check-mark {
    background: linear-gradient(135deg, #ef2f2e, #b11717);
    border-color: transparent;
    box-shadow: inset 0 0 0 4px #fff;
}

.catalog-check-label {
    color: var(--site-ink-soft);
    font-weight: 600;
}

.catalog-check-option strong {
    color: rgba(100, 74, 68, 0.72);
    font-size: 0.84rem;
}

.catalog-sidebar-clear {
    width: 100%;
    min-height: 54px;
    border-radius: 18px;
    border: 1px solid rgba(239, 47, 46, 0.14);
    background: rgba(255, 255, 255, 0.94);
    color: var(--site-accent-strong);
    font-weight: 700;
}

.catalog-sidebar-clear:disabled {
    opacity: 0.48;
}

.catalog-page-results {
    min-width: 0;
}

.catalog-results-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    margin-bottom: 20px;
    border-radius: 28px;
    border: 1px solid rgba(239, 47, 46, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 46px rgba(35, 18, 15, 0.07);
}

.catalog-results-head h2 {
    margin: 6px 0 8px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.catalog-results-head p {
    margin: 0;
    color: var(--site-ink-soft);
}

.catalog-results-summary {
    display: grid;
    gap: 6px;
    text-align: right;
}

.catalog-results-summary strong {
    font-family: "Sora", sans-serif;
    font-size: 1.45rem;
    color: var(--site-accent-strong);
}

.catalog-results-summary span {
    color: rgba(100, 74, 68, 0.78);
    font-size: 0.9rem;
}

.catalog-results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    transition: opacity 0.18s ease;
}

.catalog-product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(239, 47, 46, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 242, 0.94));
    box-shadow: 0 20px 46px rgba(35, 18, 15, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.catalog-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px rgba(35, 18, 15, 0.12);
}

.catalog-product-card.is-requested {
    border-color: rgba(239, 47, 46, 0.22);
}

.catalog-product-card .product-card-media {
    position: relative;
    aspect-ratio: 1;
    /* background: linear-gradient(180deg, #fff6f4, #fff); */
}

.catalog-product-card .product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* padding: 32px 30px 18px; */
}

.catalog-product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}

.catalog-product-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-product-badge.badge-export-ready {
    background: linear-gradient(135deg, #ef2f2e, #b11717);
}

.catalog-product-badge.badge-private-label,
.catalog-product-badge.badge-wholesale {
    background: rgba(28, 24, 26, 0.88);
}

.catalog-product-quick-action {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--site-accent-strong);
    box-shadow: 0 10px 22px rgba(35, 18, 15, 0.08);
    z-index: 1;
}

.catalog-product-quick-action svg {
    width: 18px;
    height: 18px;
}

.catalog-product-quick-action.is-selected,
.catalog-product-primary.is-selected {
    background: linear-gradient(135deg, #ef2f2e, #b11717);
    color: #fff;
}

.catalog-product-card .product-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    flex: 1;
}

.catalog-product-card .product-card-topline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.catalog-product-card .product-card-category,
.catalog-product-group {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-product-card .product-card-category {
    background: rgba(239, 47, 46, 0.08);
    color: var(--site-accent-strong);
}

.catalog-product-group {
    background: rgba(46, 31, 28, 0.08);
    color: var(--site-ink);
}

.catalog-product-card h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.35;
}

.catalog-product-code {
    color: rgba(100, 74, 68, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
}

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

.catalog-product-meta li {
    position: relative;
    padding-left: 16px;
    color: var(--site-ink-soft);
    font-size: 0.92rem;
}

.catalog-product-meta li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--site-accent-strong);
}

.catalog-product-moq {
    margin-top: auto;
    color: rgba(100, 74, 68, 0.8);
    font-size: 0.9rem;
    font-weight: 700;
}

.catalog-product-actions {
    display: flex;
    gap: 10px;
    margin-top: 2px;
}

.catalog-product-primary,
.catalog-product-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 800;
}

.catalog-product-primary {
    flex: 1;
    background: linear-gradient(135deg, #ef2f2e, #b11717);
    color: #fff;
}

.catalog-product-secondary {
    min-width: 96px;
    border: 1px solid rgba(239, 47, 46, 0.12);
    background: #fff;
    color: var(--site-ink);
}

.catalog-results-grid.is-list-view {
    grid-template-columns: 1fr;
}

.catalog-results-grid.is-list-view .catalog-product-card {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    align-items: center;
}

/* .catalog-results-grid.is-list-view .product-card-media {
    height: 100%;
} */

.catalog-empty-state {
    margin-top: 10px;
    padding: 42px 32px;
    border-radius: 28px;
}

.catalog-results-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.catalog-pagination-button,
.catalog-pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(239, 47, 46, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: var(--site-ink);
    font-weight: 700;
}

.catalog-pagination-button.is-active {
    background: linear-gradient(135deg, #ef2f2e, #b11717);
    color: #fff;
    border-color: transparent;
}

.catalog-pagination-button[disabled] {
    opacity: 0.46;
    pointer-events: none;
}

.catalog-request-rail {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 120px;
}

.catalog-request-card,
.catalog-support-card,
.catalog-service-band {
    border: 1px solid rgba(239, 47, 46, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 46px rgba(35, 18, 15, 0.08);
}

.catalog-request-card,
.catalog-support-card {
    padding: 20px;
    border-radius: 24px;
}

.catalog-request-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.catalog-request-head h3,
.catalog-support-card h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
}

.catalog-request-head p,
.catalog-support-card p,
.catalog-request-empty {
    margin: 6px 0 0;
    color: var(--site-ink-soft);
    font-size: 0.92rem;
    line-height: 1.65;
}

.catalog-request-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef2f2e, #b11717);
    color: #fff;
    font-weight: 800;
}

.catalog-request-items {
    display: grid;
    gap: 14px;
}

.catalog-request-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid rgba(239, 47, 46, 0.08);
}

.catalog-request-item:first-child {
    border-top: 0;
}

.catalog-request-item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
    background: linear-gradient(180deg, #fff6f4, #fff);
}

.catalog-request-item-copy {
    display: grid;
    gap: 4px;
}

.catalog-request-item-copy strong {
    color: var(--site-ink);
    font-size: 0.92rem;
    line-height: 1.45;
}

.catalog-request-item-copy span,
.catalog-request-item-copy small {
    color: rgba(100, 74, 68, 0.78);
}

.catalog-request-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    grid-column: 2 / span 1;
}

.catalog-request-stepper {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(239, 47, 46, 0.12);
    background: #fff;
}

.catalog-request-stepper button,
.catalog-request-stepper span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
}

.catalog-request-stepper button {
    color: var(--site-ink);
}

.catalog-request-remove {
    color: var(--site-accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
}

.catalog-request-footer {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(239, 47, 46, 0.08);
}

.catalog-request-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(100, 74, 68, 0.82);
    font-weight: 700;
}

.catalog-request-total strong {
    color: var(--site-ink);
    font-family: "Sora", sans-serif;
}

.catalog-request-card .btn.is-disabled {
    pointer-events: none;
    opacity: 0.54;
}

.catalog-request-clear {
    color: rgba(100, 74, 68, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
}

.catalog-support-card {
    text-align: center;
}

.catalog-support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(239, 47, 46, 0.08);
    color: var(--site-accent-strong);
}

.catalog-support-icon svg {
    width: 24px;
    height: 24px;
}

.catalog-service-band {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
    padding: 28px 30px;
    margin-top: 32px;
    border-radius: 30px;
}

.catalog-service-copy h2 {
    margin: 8px 0 18px;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    line-height: 1.18;
}

.catalog-service-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-self: center;
}

.catalog-service-point {
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 244, 0.92));
    border: 1px solid rgba(239, 47, 46, 0.08);
}

.catalog-service-point strong,
.catalog-service-point span {
    display: block;
}

.catalog-service-point strong {
    color: var(--site-ink);
    font-size: 0.92rem;
}

.catalog-service-point span {
    margin-top: 6px;
    color: var(--site-ink-soft);
    font-size: 0.82rem;
}

@media (max-width: 1399.98px) {
    .catalog-page-layout {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .catalog-toolbar-filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 1199.98px) {
    .catalog-page-layout {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .catalog-request-rail {
        position: static;
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-page-sidebar {
        position: static;
    }

    .catalog-service-band,
    .catalog-service-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    body.products .catalog-page-hero,
    body.products_category .catalog-page-hero {
        padding: 168px 0 54px;
    }

    .catalog-page-hero-shell,
    .catalog-page-layout {
        grid-template-columns: 1fr;
    }

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

    .catalog-results-head {
        align-items: start;
        flex-direction: column;
    }

    .catalog-results-summary {
        text-align: left;
    }

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

    .catalog-request-rail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body.products .catalog-page-hero,
    body.products_category .catalog-page-hero {
        padding: 148px 0 48px;
    }

    .catalog-page-hero-copy h1 {
        font-size: 2.6rem;
    }

    .catalog-page-hero-actions,
    .catalog-page-toolbar,
    .catalog-filter-group,
    .catalog-request-card,
    .catalog-support-card,
    .catalog-results-head,
    .catalog-service-band {
        border-radius: 22px;
    }

    .catalog-page-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-toolbar-filters,
    .catalog-results-grid {
        grid-template-columns: 1fr;
    }

    .catalog-results-grid.is-list-view .catalog-product-card,
    .catalog-results-grid .catalog-product-card {
        grid-template-columns: 1fr;
    }

    .catalog-results-grid.is-list-view .catalog-product-card {
        display: flex;
    }

    .catalog-request-item {
        grid-template-columns: 56px minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .catalog-page-hero-shell,
    .catalog-page-toolbar,
    .catalog-service-band {
        gap: 16px;
    }

    .catalog-page-hero-actions,
    .catalog-filter-group,
    .catalog-request-card,
    .catalog-support-card,
    .catalog-results-head,
    .catalog-service-band {
        padding-left: 18px;
        padding-right: 18px;
    }

    .catalog-product-card .product-card-body {
        padding: 18px;
    }
}

html[dir="rtl"] .utility-bar-inner,
html[dir="rtl"] .nav-shell,
html[dir="rtl"] .page-hero-shell,
html[dir="rtl"] .page-hero-shell-wide,
html[dir="rtl"] .split-heading,
html[dir="rtl"] .home-about-content,
html[dir="rtl"] .catalog-main-topbar,
html[dir="rtl"] .process-showcase-top,
html[dir="rtl"] .process-flow-grid {
    direction: rtl;
}

html[dir="rtl"] .utility-bar-links,
html[dir="rtl"] .nav-actions {
    align-items: center;
}

html[dir="rtl"] .breadcrumb-inline,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .chip-list {
    justify-content: flex-start;
}

html[dir="rtl"] .language-switcher__menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .hero-slider-wrapper .slick-prev,
html[dir="rtl"] .category-slider-arrow.slick-prev,
html[dir="rtl"] .brand-logo-slider-arrow.slick-prev {
    right: auto;
}

html[dir="rtl"] .hero-slider-wrapper .slick-next,
html[dir="rtl"] .category-slider-arrow.slick-next,
html[dir="rtl"] .brand-logo-slider-arrow.slick-next {
    right: auto;
}

html[dir="rtl"] .hero-slider-wrapper .slick-prev {
    left: 26px;
}

html[dir="rtl"] .hero-slider-wrapper .slick-next {
    left: 88px;
}

html[dir="rtl"] .category-slider-arrow.slick-prev {
    left: 68px;
}

html[dir="rtl"] .category-slider-arrow.slick-next {
    left: 0;
}

html[dir="rtl"] .brand-logo-slider-arrow.slick-prev {
    left: 68px;
}

html[dir="rtl"] .brand-logo-slider-arrow.slick-next {
    left: 0;
}

html[dir="rtl"] body.home .home-hero-highlight {
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

html[dir="rtl"] body.home .home-hero-highlight:last-child {
    border-left: 0;
}

html[dir="rtl"] .hero-slider-wrapper .slick-dots {
    left: auto;
    right: 32px;
}

html[dir="rtl"] .process-showcase-cta {
    justify-self: start;
}

html[dir="rtl"] .process-flow-card:not(:last-child)::after {
    content: '<-';
    right: auto;
    left: -46px;
}

html[dir="rtl"] .home-about-visual-note {
    left: auto;
    right: 24px;
}

/* =============================================================
   REAL ESTATE PAGE
   ============================================================= */

/* Hero */
.re-hero {
    min-height: 340px;
}

/* What I Do section */
.re-what-section {
    background: var(--site-surface);
}

.re-what-media {
    position: relative;
    display: inline-block;
    width: 100%;
}

.re-what-img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    max-height: 440px;
}

.re-what-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--site-shadow-md);
}

.re-what-badge i {
    font-size: 2rem;
    color: var(--site-accent);
}

.re-what-badge strong {
    display: block;
    font-family: 'Archivo', sans-serif;
    color: var(--site-ink);
    font-size: 0.95rem;
}

.re-what-badge span {
    font-size: 0.78rem;
    color: var(--site-muted);
}

/* Service cards */
.re-service-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid var(--site-line);
    height: 100%;
    transition: box-shadow 0.25s;
}

.re-service-card:hover {
    box-shadow: var(--site-shadow-sm);
}

.re-service-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--site-accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-accent);
    font-size: 1.35rem;
}

.re-service-card h4 {
    font-size: 1rem;
    margin: 0 0 4px;
    color: var(--site-ink);
}

.re-service-card p {
    font-size: 0.85rem;
    color: var(--site-muted);
    margin: 0;
}

/* Properties banner */
.re-properties-banner {
    --re-banner-parallax-shift: 0px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: flex-end;
    padding-top: 40px;
    padding-bottom: 40px;
}

.re-properties-banner-media {
    position: absolute;
    inset: -56px 0;
    background-size: cover;
    background-position: center;
    transform: translate3d(0, var(--re-banner-parallax-shift), 0) scale(1.08);
    will-change: transform;
    pointer-events: none;
}

.re-properties-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(209,135,55,0.55) 0%, rgba(209,135,55,0.75) 100%);
    z-index: 1;
}

.re-properties-banner .container {
    z-index: 2;
}

.re-properties-banner h2 {
    position: relative;
    color: #fff;
    font-size: 2.2rem;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {

    .re-properties-banner-media {
        transform: none;
    }
}

/* Properties section */
.re-properties-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.re-properties-section + .re-properties-section {
    border-top: 1px solid var(--site-line);
}

/* Property card */
.re-prop-card {
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--site-line);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.re-prop-card:hover {
    box-shadow: var(--site-shadow-md);
    transform: translateY(-4px);
}

.re-prop-media {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.re-prop-media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.re-prop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

.re-prop-card:hover .re-prop-media img {
    transform: scale(1.04);
}

.re-prop-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--site-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    z-index: 2;
}

.re-prop-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.re-prop-price {
    font-family: 'Archivo', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--site-accent);
}

.re-prop-price span {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--site-muted);
    margin-left: 2px;
}

.re-prop-location {
    font-size: 0.8rem;
    color: var(--site-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.re-prop-location i {
    font-size: 0.95rem;
}

.re-prop-body h5 {
    font-size: 1rem;
    margin: 4px 0 2px;
    color: var(--site-ink);
}

.re-prop-body h5 a {
    color: inherit;
    text-decoration: none;
}

.re-prop-body p {
    font-size: 0.83rem;
    color: var(--site-muted);
    margin: 0 0 8px;
    flex: 1;
}

.re-prop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--site-ink-soft);
    padding-top: 10px;
    border-top: 1px solid var(--site-line);
    margin-top: auto;
}

.re-prop-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.re-prop-meta i {
    font-size: 1rem;
    color: var(--site-accent);
}

.re-prop-btn {
    margin-top: 14px;
    align-self: flex-start;
}

.re-detail-hero .page-hero-aside {
    min-width: min(100%, 360px);
}

.re-detail-hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
}

.re-detail-image-panel {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--site-shadow-md);
}

.re-detail-image-panel img {
    width: 100%;
    height: clamp(320px, 42vw, 520px);
    object-fit: cover;
}

.re-detail-overview-card,
.re-detail-highlight-card {
    border: 1px solid var(--site-line);
}

.re-detail-richtext p:last-child {
    margin-bottom: 0;
}

.re-detail-card h3 {
    font-size: 1.3rem;
}

.re-detail-fact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.re-detail-fact {
    border: 1px solid var(--site-line);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 16px;
}

.re-detail-fact span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--site-muted);
    margin-bottom: 6px;
}

.re-detail-fact strong {
    color: var(--site-ink);
    font-family: 'Archivo', sans-serif;
    font-size: 0.98rem;
}

.re-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.re-detail-highlight-list li + li {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .re-what-badge {
        position: static;
        margin-top: 16px;
        box-shadow: none;
        border: 1px solid var(--site-line);
    }

    .re-what-img {
        max-height: 260px;
    }

    .re-detail-fact-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── WhatsApp Float Button ─── */
.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1030;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    color: #fff !important;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: wa-pulse 2.4s ease-out infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.7); opacity: 0;   }
    100% { transform: scale(1.7); opacity: 0;   }
}

/* Brand refresh */
:root {
    --site-bg: #fff7f4;
    --site-surface: #ffffff;
    --site-surface-soft: #fff1ef;
    --site-surface-strong: #ffd7d2;
    --site-ink: #171313;
    --site-ink-soft: #4e403c;
    --site-muted: #7b6965;
    --site-line: rgba(23, 19, 19, 0.08);
    --site-line-strong: rgba(23, 19, 19, 0.15);
    --site-navy: #1c1514;
    --site-navy-soft: #2c1a18;
    --site-navy-muted: rgba(255, 243, 240, 0.84);
    --site-accent: #ef2f2e;
    --site-accent-strong: #c91b1a;
    --site-accent-soft: rgba(239, 47, 46, 0.12);
    --site-success: #24724a;
    --site-danger: #9b1c1b;
    --site-shadow-lg: 0 34px 100px rgba(40, 18, 16, 0.16);
    --site-shadow-md: 0 24px 60px rgba(40, 18, 16, 0.1);
    --site-shadow-sm: 0 16px 36px rgba(40, 18, 16, 0.08);
    --site-shadow-hover: 0 28px 70px rgba(239, 47, 46, 0.12), 0 14px 38px rgba(40, 18, 16, 0.1);
    --radius-xl: 40px;
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
}

body,
body.products,
body.products_category,
body.product_detail {
    font-family: 'Manrope', sans-serif;
    color: var(--site-ink);
    background:
        radial-gradient(circle at top left, rgba(239, 47, 46, 0.16), transparent 24%),
        radial-gradient(circle at 85% 10%, rgba(255, 173, 164, 0.26), transparent 22%),
        linear-gradient(180deg, #fffaf8 0%, #fff3ef 56%, #fffaf7 100%);
}

body::before,
body.products::before,
body.products_category::before,
body.product_detail::before {
    background-image:
        linear-gradient(rgba(239, 47, 46, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 47, 46, 0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.62), transparent 88%);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.section-title .title,
.preloader-copy strong,
.number-chip,
.process-flow-number,
.metric-card strong,
.catalog-main-summary strong,
.product-price-value,
.re-detail-fact strong,
.nav-link-title {
    font-family: 'Sora', sans-serif !important;
    letter-spacing: -0.04em;
}

p,
.text-muted {
    color: var(--site-ink-soft);
}

.eyebrow {
    gap: 12px;
    color: var(--site-accent-strong);
    letter-spacing: 0.22em;
}

.eyebrow::before {
    width: 56px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--site-accent), rgba(239, 47, 46, 0.14));
    opacity: 1;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255, 247, 244, 0.92), rgba(255, 252, 250, 0.98)),
        radial-gradient(circle at right top, rgba(239, 47, 46, 0.08), transparent 24%);
}

.btn {
    min-height: 54px;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6551 0%, #ef2f2e 45%, #b11717 100%);
    box-shadow: 0 20px 44px rgba(239, 47, 46, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #ff7768 0%, #f33837 45%, #c01717 100%);
}

.btn-outline-dark {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(239, 47, 46, 0.2);
    color: var(--site-ink);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: rgba(239, 47, 46, 0.08);
    border-color: rgba(239, 47, 46, 0.3);
    color: var(--site-accent-strong);
}

.icon-chip,
.number-chip {
    background: linear-gradient(135deg, rgba(239, 47, 46, 0.13), rgba(239, 47, 46, 0.04));
    color: var(--site-accent-strong);
    box-shadow: inset 0 0 0 1px rgba(239, 47, 46, 0.14);
}

#preloader {
    background:
        radial-gradient(circle at top left, rgba(239, 47, 46, 0.14), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 177, 167, 0.22), transparent 26%),
        linear-gradient(160deg, rgba(255, 249, 247, 0.98), rgba(255, 243, 239, 0.98));
}

#preloader::before {
    border-color: rgba(239, 47, 46, 0.08);
    background-image:
        linear-gradient(rgba(239, 47, 46, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 47, 46, 0.03) 1px, transparent 1px);
}

#preloader #status {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 241, 238, 0.9));
    box-shadow: 0 34px 90px rgba(40, 18, 16, 0.14);
}

.preloader-engine::before {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 235, 231, 0.9));
    border-color: rgba(239, 47, 46, 0.08);
}

#topnav {
    padding-top: 16px;
}

.utility-bar {
    padding: 8px 0 0;
}

.utility-bar-inner {
    position: relative;
    padding: 16px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(90deg, rgba(43, 14, 12, 0.98), rgba(123, 24, 22, 0.94));
    box-shadow: 0 16px 38px rgba(31, 13, 12, 0.22);
}

.utility-bar-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
    opacity: 0.45;
    pointer-events: none;
}

.utility-bar-copy p,
.utility-bar-links a {
    color: rgba(255, 241, 238, 0.82);
}

.utility-pill {
    background: rgba(255, 255, 255, 0.12);
    color: #fff2f0;
}

.nav-shell {
    gap: 20px;
    margin-top: 14px;
    padding: 18px 22px;
    border-radius: 28px;
    background: rgba(255, 251, 249, 0.88);
    border: 1px solid rgba(239, 47, 46, 0.12);
    box-shadow: 0 26px 58px rgba(38, 18, 14, 0.12);
}

.nav-shell::before {
    left: auto;
    right: -42px;
    top: -36px;
    bottom: auto;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(239, 47, 46, 0.16), transparent 68%);
}

.nav-shell::after {
    width: 180px;
    background: linear-gradient(90deg, rgba(239, 47, 46, 0.06), transparent);
}

#topnav .navigation-menu.nav-light > li > a,
#topnav .navigation-menu > li > a {
    border-radius: 999px;
    font-weight: 700;
}

#topnav .navigation-menu.nav-light > li.active > a,
#topnav .navigation-menu.nav-light > li:hover > a,
#topnav .navigation-menu.nav-light > li:focus-within > a,
#topnav .navigation-menu > li.active > a,
#topnav .navigation-menu > li:hover > a,
#topnav .navigation-menu > li:focus-within > a {
    color: var(--site-accent-strong);
    background: rgba(239, 47, 46, 0.1);
}

#topnav .navigation-menu.nav-light > li > .menu-arrow,
.menu-arrow {
    border-right-color: rgba(23, 19, 19, 0.42) !important;
    border-bottom-color: rgba(23, 19, 19, 0.42) !important;
}

#topnav .navigation-menu.nav-light > li:hover > .menu-arrow,
#topnav .navigation-menu.nav-light > li:focus-within > .menu-arrow,
#topnav .navigation-menu.nav-light > li.active > .menu-arrow,
.has-submenu:hover > .menu-arrow,
.has-submenu:focus-within > .menu-arrow,
.has-submenu.open > .menu-arrow {
    border-right-color: var(--site-accent-strong) !important;
    border-bottom-color: var(--site-accent-strong) !important;
}

.language-switcher__summary {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(239, 47, 46, 0.12);
    box-shadow: 0 14px 30px rgba(40, 18, 16, 0.08);
}

.language-switcher__summary:hover,
.language-switcher[open] .language-switcher__summary {
    border-color: rgba(239, 47, 46, 0.26);
    box-shadow: 0 18px 36px rgba(40, 18, 16, 0.1);
}

.hero-slider-wrapper {
    border-radius: 0 0 44px 44px;
    box-shadow: 0 44px 110px rgba(48, 15, 15, 0.18);
}

.hero-slide {
    padding: clamp(210px, 25vh, 290px) clamp(24px, 5vw, 56px) clamp(60px, 9vh, 90px);
}

.hero-slide::before {
    background:
        linear-gradient(110deg, rgba(18, 12, 12, 0.84) 0%, rgba(36, 16, 16, 0.7) 36%, rgba(25, 14, 14, 0.36) 62%, rgba(15, 12, 12, 0.86) 100%),
        linear-gradient(180deg, rgba(14, 12, 12, 0.16), rgba(14, 12, 12, 0.78));
}

.hero-slide::after {
    height: 180px;
    background: linear-gradient(180deg, transparent, rgba(255, 247, 244, 0.18));
}

.hero-slide-inner {
    width: min(1380px, 100%);
}

.hero-content-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
    gap: 28px;
    align-items: end;
}

.hero-copy {
    max-width: 780px;
    padding: 34px 36px 36px;
    border-radius: 38px;
}

.hero-copy .eyebrow {
    color: #ffb6ad;
}

.hero-copy h1 {
    max-width: 12ch;
    margin: 20px 0;
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 0.98;
    color: #fff;
}

.hero-copy p {
    max-width: 58ch;
    color: rgba(255, 239, 236, 0.84);
    font-size: 1.04rem;
}

.hero-kpis {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-kpis span {
    display: inline-flex;
    align-items: center;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-note-card {
    display: grid;
    gap: 18px;
    padding: 26px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 250, 248, 0.98), rgba(255, 236, 232, 0.94));
    border: 1px solid rgba(239, 47, 46, 0.16);
    box-shadow: 0 28px 64px rgba(28, 14, 14, 0.18);
}

.hero-note-card__kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--site-accent-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-note-card__index {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(239, 47, 46, 0.08);
}

.hero-note-card__meta {
    display: grid;
    gap: 12px;
}

.hero-note-card__meta strong,
.hero-note-card__foot strong {
    color: var(--site-ink);
    font-size: 1.38rem;
    line-height: 1.15;
}

.hero-note-card__meta p {
    margin: 0;
    color: var(--site-ink-soft);
}

.hero-note-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-note-card__chips span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(239, 47, 46, 0.12);
    color: var(--site-ink);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-note-card__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(23, 19, 19, 0.08);
}

.hero-note-card__foot strong {
    font-size: 0.96rem;
}

.hero-note-card__foot small {
    color: var(--site-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-slider-wrapper .tns-controls,
.hero-slider-wrapper .slick-arrow {
    bottom: 34px;
}

.hero-slider-wrapper .slick-prev {
    right: 102px;
}

.hero-slider-wrapper .slick-next {
    right: 36px;
}

.hero-slider-wrapper .tns-controls button,
.hero-slider-wrapper .slick-arrow {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
}

.hero-slider-wrapper .tns-nav,
.hero-slider-wrapper .slick-dots {
    left: 40px;
    bottom: 44px;
    gap: 10px;
}

.hero-slider-wrapper .tns-nav button,
.hero-slider-wrapper .slick-dots li button {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.24);
}

.hero-slider-wrapper .tns-nav button.tns-nav-active,
.hero-slider-wrapper .slick-dots li.slick-active button {
    width: 52px;
    background: linear-gradient(90deg, #fff1ef, #ef2f2e);
}

.home-signal-bar {
    position: relative;
    z-index: 6;
    margin-top: -64px;
}

.home-signal-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    padding: 28px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(239, 47, 46, 0.14);
    box-shadow: 0 32px 72px rgba(43, 16, 16, 0.12);
}

.home-signal-intro h2 {
    margin: 16px 0 0;
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    line-height: 1.02;
}

.home-signal-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-signal-point {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 20px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 242, 240, 0.92), rgba(255, 255, 255, 0.94));
    border: 1px solid rgba(239, 47, 46, 0.1);
}

.home-signal-point strong {
    color: var(--site-ink);
    font-family: 'Sora', sans-serif;
    font-size: 1.06rem;
}

.home-signal-point p {
    margin: 0;
}

.home-about-shell {
    border-radius: 40px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 241, 0.96)),
        radial-gradient(circle at top right, rgba(239, 47, 46, 0.08), transparent 32%);
    border: 1px solid rgba(239, 47, 46, 0.12);
    box-shadow: 0 32px 80px rgba(26, 16, 14, 0.08);
}

.home-about-shell::before {
    background:
        radial-gradient(circle at top right, rgba(239, 47, 46, 0.11), transparent 30%),
        repeating-linear-gradient(115deg, rgba(239, 47, 46, 0.05) 0 2px, transparent 2px 30px);
    opacity: 0.42;
}

.home-about-visual {
    border-radius: 32px;
    background: linear-gradient(180deg, #2a1614, #4e1d1b);
}

.story-panel,
.overview-card,
.detail-card,
.process-card,
.contact-info-card,
.form-card,
.quote-request-form-card,
.catalog-filter-card,
.catalog-main-topbar,
.catalog-main-tools,
.catalog-empty-state,
.product-card,
.product-detail-card,
body.product_detail .overview-card,
.reference-preview-card,
.category-card,
.case-card {
    border-color: rgba(239, 47, 46, 0.12);
    box-shadow: 0 20px 50px rgba(35, 18, 15, 0.08);
}

.story-panel,
.overview-card,
.detail-card,
.process-card,
.contact-info-card,
.form-card,
.quote-request-form-card,
.catalog-filter-card,
.catalog-main-topbar,
.catalog-main-tools,
.catalog-empty-state,
.product-card,
.product-detail-card,
body.product_detail .overview-card,
.reference-preview-card,
.category-card,
.case-card {
    background: rgba(255, 255, 255, 0.92);
}

.about-hover-card:hover,
.about-hover-card:focus-within,
.category-card:hover,
.reference-preview-card:hover,
.case-card:hover,
.product-card:hover {
    border-color: rgba(239, 47, 46, 0.2);
}

.section-process-showcase {
    background:
        linear-gradient(180deg, rgba(255, 244, 241, 0.86), rgba(255, 252, 250, 0.98)),
        radial-gradient(circle at top right, rgba(239, 47, 46, 0.1), transparent 28%),
        radial-gradient(circle at bottom left, rgba(239, 47, 46, 0.05), transparent 24%);
}

.section-process-showcase::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 28%),
        repeating-linear-gradient(100deg, rgba(239, 47, 46, 0.07) 0 2px, transparent 2px 24px);
}

.process-showcase-badge {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(239, 47, 46, 0.12);
    color: var(--site-accent-strong);
}

.process-showcase-heading h2 span {
    color: rgba(239, 47, 46, 0.38);
}

.process-flow-card {
    min-height: 390px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 242, 239, 0.92));
    border-color: rgba(239, 47, 46, 0.12);
    box-shadow: 0 24px 60px rgba(35, 18, 15, 0.08);
}

.process-flow-card::before {
    background: linear-gradient(180deg, rgba(239, 47, 46, 0.08), transparent 50%);
}

.process-flow-card:not(:last-child)::after {
    background: rgba(255, 250, 249, 0.96);
    border-color: rgba(239, 47, 46, 0.12);
    color: var(--site-accent-strong);
}

.process-flow-number {
    background: linear-gradient(180deg, rgba(239, 47, 46, 0.96), rgba(239, 47, 46, 0.12));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero,
.page-hero-catalog,
.page-hero-detail {
    padding: 220px 0 72px;
}

.page-hero::before,
.page-hero-catalog::before,
.page-hero-detail::before {
    background:
        linear-gradient(116deg, rgba(18, 12, 12, 0.82), rgba(18, 12, 12, 0.38) 46%, rgba(18, 12, 12, 0.86)),
        linear-gradient(180deg, rgba(18, 12, 12, 0.14), rgba(18, 12, 12, 0.76));
}

.page-hero::after,
.page-hero-catalog::after,
.page-hero-detail::after {
    height: 144px;
    background: linear-gradient(180deg, transparent, rgba(239, 47, 46, 0.14));
}

.page-hero-copy {
    padding: 34px 36px 38px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(18, 12, 12, 0.48), rgba(18, 12, 12, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
}

.page-hero-copy h1 {
    max-width: 13ch;
    margin: 16px 0 18px;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
}

.page-hero-copy p {
    max-width: 58ch;
    color: rgba(255, 240, 237, 0.84);
}

.breadcrumb-inline {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero-aside,
.catalog-hero-aside {
    background: linear-gradient(180deg, rgba(255, 252, 250, 0.97), rgba(255, 239, 235, 0.94));
    border-color: rgba(239, 47, 46, 0.14);
    box-shadow: 0 24px 60px rgba(30, 14, 14, 0.12);
    backdrop-filter: none;
}

.page-hero-aside strong,
.catalog-hero-aside strong {
    color: var(--site-ink);
}

.page-hero-aside p,
.catalog-hero-aside p {
    color: var(--site-ink-soft);
}

.hero-aside-kicker {
    color: var(--site-accent-strong);
}

.catalog-hero-chips span,
.catalog-hero-summary span,
.catalog-main-badges span,
.catalog-support-tags span,
.product-card-category,
.product-detail-category,
.catalog-inline-cta {
    background: rgba(239, 47, 46, 0.08);
    color: var(--site-accent-strong);
    border-color: rgba(239, 47, 46, 0.12);
}

.catalog-sidebar-link,
.catalog-search-field input,
.catalog-sort-select {
    background: rgba(255, 246, 244, 0.92);
    border-color: rgba(239, 47, 46, 0.08);
}

.catalog-sidebar-link strong {
    background: rgba(239, 47, 46, 0.08);
}

.catalog-sidebar-link:hover,
.catalog-sidebar-link.active {
    background: rgba(239, 47, 46, 0.08);
    border-color: rgba(239, 47, 46, 0.18);
}

.catalog-search-field input:focus,
.catalog-sort-select:focus {
    border-color: rgba(239, 47, 46, 0.46);
    box-shadow: 0 0 0 4px rgba(239, 47, 46, 0.1);
}

.product-card-badge,
.product-gallery-lightbox-badge,
.product-price-block,
.product-card-action,
.catalog-pagination-button.is-active {
    background: linear-gradient(135deg, #ef2f2e, #b11717);
    color: #fff;
}

.product-card-quick-action {
    color: var(--site-accent-strong);
}

.site-footer {
    padding-top: 0;
    background:
        radial-gradient(circle at top right, rgba(239, 47, 46, 0.22), transparent 24%),
        linear-gradient(180deg, #170f10 0%, #241110 48%, #0f0a0a 100%);
}

.site-footer::before {
    background-image:
        linear-gradient(rgba(239, 47, 46, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 47, 46, 0.07) 1px, transparent 1px);
}

.footer-cta-strip {
    padding: 28px 32px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 250, 248, 0.98), rgba(255, 239, 235, 0.96));
    border: 1px solid rgba(239, 47, 46, 0.14);
    box-shadow: 0 32px 70px rgba(17, 10, 10, 0.2);
    transform: translateY(-44px);
    margin-bottom: 0;
}

.footer-cta-copy h3 {
    max-width: 18ch;
}

.footer-badge span {
    border-color: rgba(197, 97, 78, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 236, 231, 0.96));
    color: #8c3c2d;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 10px 22px rgba(173, 95, 74, 0.1);
}

.footer-contact-list span {
    color: #ffaea5;
}

.footer-bottom {
    border-top: 1px solid rgba(239, 47, 46, 0.14);
}

.back-to-top,
.whatsapp-float {
    border-radius: 20px;
}

.back-to-top {
    background: linear-gradient(135deg, #ff6551 0%, #ef2f2e 45%, #b11717 100%);
    box-shadow: 0 18px 34px rgba(239, 47, 46, 0.26);
}

.whatsapp-float::before {
    border-radius: 20px;
    background: rgba(37, 211, 102, 0.34);
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #1ebe5d 50%, #128C7E 100%);
    box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
}

.whatsapp-float::before {
    border-radius: 20px;
}

.whatsapp-float:hover {
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.38);
}

@media (max-width: 1199.98px) {
    .hero-content-wrap,
    .home-signal-shell {
        grid-template-columns: 1fr;
    }

    .home-signal-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .nav-shell {
        padding: 16px 18px;
    }

    .navbar-toggle {
        border-color: rgba(239, 47, 46, 0.12);
        background: linear-gradient(180deg, rgba(239, 47, 46, 0.08), rgba(239, 47, 46, 0.03));
        color: var(--site-accent-strong);
        box-shadow: none;
    }

    .navbar-toggle.open {
        background: linear-gradient(180deg, rgba(239, 47, 46, 0.16), rgba(239, 47, 46, 0.09));
        border-color: rgba(239, 47, 46, 0.26);
    }

    .nav-panel-shell {
        background:
            radial-gradient(circle at top right, rgba(239, 47, 46, 0.24), transparent 34%),
            linear-gradient(180deg, rgba(28, 15, 15, 0.98), rgba(50, 18, 18, 0.98));
        border-color: rgba(255, 255, 255, 0.08);
    }

    .nav-panel-label,
    .nav-panel-phone i,
    #topnav .navigation-menu > li.active::before,
    #topnav .navigation-menu > li:hover::before,
    #topnav .navigation-menu > li:focus-within::before {
        color: #ffb7ae;
    }

    #topnav .navigation-menu > li > a {
        border-radius: 18px;
        border-color: rgba(255, 255, 255, 0.08);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
        color: rgba(255, 244, 241, 0.96);
    }

    #topnav .navigation-menu > li.active > a,
    #topnav .navigation-menu > li:hover > a,
    #topnav .navigation-menu > li:focus-within > a {
        color: #fff5f2;
        border-color: rgba(239, 47, 46, 0.2);
        background: linear-gradient(180deg, rgba(239, 47, 46, 0.18), rgba(255, 255, 255, 0.05));
    }

    .page-hero-shell,
    .page-hero-shell-wide {
        grid-template-columns: 1fr;
    }

    .page-hero-copy {
        padding: 28px;
    }

    .hero-copy {
        padding: 28px;
    }
}

@media (max-width: 767.98px) {
    #topnav {
        padding-top: 10px;
    }

    .utility-bar-inner {
        padding: 14px 16px;
    }

    .hero-slide {
        padding: 170px 18px 84px;
    }

    .hero-copy h1,
    .page-hero-copy h1,
    .home-signal-intro h2 {
        max-width: none;
    }

    .hero-note-card,
    .home-signal-shell,
    .home-about-shell,
    .footer-cta-strip {
        border-radius: 26px;
    }

    .home-signal-points {
        grid-template-columns: 1fr;
    }

    .hero-slider-wrapper .tns-controls,
    .hero-slider-wrapper .slick-prev,
    .hero-slider-wrapper .slick-next {
        bottom: 18px;
    }

    .hero-slider-wrapper .slick-next {
        right: 18px;
    }

    .hero-slider-wrapper .slick-prev {
        right: 82px;
    }

    .hero-slider-wrapper .tns-nav,
    .hero-slider-wrapper .slick-dots {
        left: 18px;
        bottom: 24px;
    }
}

/* Reference-inspired homepage refresh */
body.home {
    --home-accent: #b43b30;
    --home-accent-strong: #8f2a21;
    --home-paper: #fffdf9;
    --home-soft: #f7efe7;
    --home-border: rgba(130, 86, 63, 0.18);
    --home-ink: #1f1714;
    --home-copy: #5e4d43;
    --home-shadow: 0 28px 60px rgba(47, 24, 17, 0.12);
    background: linear-gradient(180deg, #f7efe7 0%, #fffdfa 16%, #f7efe7 100%);
}

body.home #topnav {
    padding-top: 0;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(41, 21, 16, 0.08);
}

body.home #topnav.nav-sticky {
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(41, 21, 16, 0.1) !important;
}

body.home .utility-bar {
    display: block;
    padding: 0;
    max-height: none;
    background: linear-gradient(90deg, #b12c24, #c84436);
}

body.home .utility-bar-inner {
    padding: 9px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body.home .utility-bar-inner::before,
body.home .nav-shell::before,
body.home .nav-shell::after {
    display: none;
}

body.home .utility-pill {
    display: none;
}

body.home .utility-bar-copy {
    gap: 0;
}

body.home .utility-bar-copy p {
    color: rgba(255, 245, 242, 0.95);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

body.home .utility-bar-links {
    gap: 0;
}

body.home .utility-bar-links .language-switcher__summary {
    padding: 4px 0 4px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #fff7f5;
}

body.home .utility-bar-links .language-switcher__summary:hover,
body.home .utility-bar-links .language-switcher[open] .language-switcher__summary {
    background: transparent;
}

body.home .utility-bar-links .language-switcher__summary-copy strong,
body.home .utility-bar-links .language-switcher__summary-copy small,
body.home .utility-bar-links .language-switcher__caret,
body.home .utility-bar-links .language-switcher__summary-flag {
    color: #fff7f5;
}

body.home .nav-shell {
    margin-top: 0;
    padding: 18px 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

body.home .nav-actions {
    display: flex;
}

body.home .nav-cta-desktop {
    display: none;
}

body.home #topnav .navigation-menu {
    justify-content: center;
}

body.home #topnav .navigation-menu > li {
    position: relative;
}

body.home #topnav .navigation-menu.nav-light > li > a,
body.home #topnav .navigation-menu > li > a {
    padding: 10px 16px 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2f241d;
    font-size: 0.96rem;
    font-weight: 700;
    box-shadow: none;
}

body.home #topnav .navigation-menu.nav-light > li.active > a,
body.home #topnav .navigation-menu.nav-light > li:hover > a,
body.home #topnav .navigation-menu.nav-light > li:focus-within > a,
body.home #topnav .navigation-menu > li.active > a,
body.home #topnav .navigation-menu > li:hover > a,
body.home #topnav .navigation-menu > li:focus-within > a {
    color: var(--home-accent);
    background: transparent;
}

body.home #topnav .navigation-menu > li::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: var(--home-accent);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

body.home #topnav .navigation-menu > li.active::before,
body.home #topnav .navigation-menu > li:hover::before,
body.home #topnav .navigation-menu > li:focus-within::before {
    opacity: 1;
    transform: scaleX(1);
}

body.home #topnav .navigation-menu.nav-light > li > .menu-arrow,
body.home #topnav .navigation-menu > li > .menu-arrow {
    border-color: rgba(47, 36, 29, 0.58);
}

body.home .hero-slider-section {
    padding: 0;
}

body.home .hero-slider-wrapper {
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

body.home .hero-slide {
    position: relative;
    min-height: 640px;
    padding: 290px 24px 120px;
}

body.home .hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 11, 9, 0.22) 0%, rgba(15, 11, 9, 0.48) 100%),
        linear-gradient(90deg, rgba(20, 13, 10, 0.48) 0%, rgba(20, 13, 10, 0.12) 50%, rgba(20, 13, 10, 0.48) 100%);
}

body.home .hero-slide-inner,
body.home .hero-content-wrap {
    position: relative;
    z-index: 1;
    min-height: 100%;
}

/* body.home .hero-content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
} */

body.home .hero-copy {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 24px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.home .hero-copy .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 248, 246, 0.94);
    letter-spacing: 0.12em;
}

body.home .hero-copy h1 {
    max-width: 920px;
    margin: 0 auto 16px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

body.home .hero-copy p {
    max-width: 760px;
    color: rgba(255, 248, 246, 0.88);
    font-size: 1.16rem;
    line-height: 1.7;
}

body.home .hero-actions {
    gap: 14px;
    margin-top: 28px;
}

body.home .hero-actions .btn {
    min-width: 190px;
}

body.home .hero-actions .btn-outline-dark {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
}

body.home .hero-actions .btn-outline-dark:hover,
body.home .hero-actions .btn-outline-dark:focus {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
}

body.home .hero-kpis {
    gap: 10px;
    margin-top: 28px;
}

body.home .hero-kpis span {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 248, 246, 0.94);
    font-weight: 700;
}

body.home .hero-note-card,
body.home .hero-slider-arrow,
body.home .hero-slider-wrapper .slick-prev,
body.home .hero-slider-wrapper .slick-next,
body.home .hero-slider-wrapper .slick-dots,
body.home .hero-slider-wrapper .tns-controls,
body.home .hero-slider-wrapper .tns-nav {
    display: none !important;
}

body.home .home-hero-highlights-section {
    position: relative;
    z-index: 4;
    margin-top: -58px;
}

body.home .home-hero-highlights-panel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(212, 99, 79, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(140, 64, 47, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(33, 26, 24, 0.96), rgba(24, 18, 16, 0.98));
    box-shadow: 0 30px 70px rgba(21, 14, 12, 0.24);
    overflow: hidden;
}

body.home .home-hero-highlight {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-height: 118px;
    padding: 26px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

body.home .home-hero-highlight:last-child {
    border-right: 0;
}

body.home .home-hero-highlight__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 153, 137, 0.32), rgba(171, 62, 49, 0.28) 55%, rgba(77, 30, 25, 0.82) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 14px 28px rgba(12, 8, 7, 0.24);
    color: #f18f80;
}

body.home .home-hero-highlight__icon i {
    font-size: 1.55rem;
}

body.home .home-hero-highlight__content strong {
    display: block;
    margin-bottom: 6px;
    color: #fff6f2;
    font-family: "Sora", sans-serif;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.home .home-hero-highlight__content p {
    margin: 0;
    color: rgba(255, 245, 241, 0.72);
    font-size: 1rem;
    line-height: 1.55;
}

body.home .home-editorial-section,
body.home .home-network-section,
body.home .home-certifications-section {
    padding: 88px 0;
}

body.home .home-editorial-section {
    padding-top: 54px;
}

body.home .home-editorial-section,
body.home .home-certifications-section {
    background: #ffffff;
}

body.home .home-network-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 182, 160, 0.16), transparent 46%),
        linear-gradient(180deg, #f8f1ea 0%, #fffdfa 100%);
}

body.home .home-section-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--home-accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.home .home-editorial-copy h2,
body.home .home-section-heading h2,
body.home .home-certification-copy h2 {
    margin: 0 0 18px;
    color: var(--home-ink);
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

body.home .home-section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
}

body.home .home-editorial-copy p,
body.home .home-section-heading p,
body.home .home-network-note p,
body.home .home-certification-copy p {
    color: var(--home-copy);
    font-size: 1rem;
    line-height: 1.8;
}

body.home .home-editorial-media {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--home-shadow);
}

body.home .home-editorial-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

body.home .home-editorial-points {
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

body.home .home-editorial-point {
    padding: 18px 20px;
    border: 1px solid var(--home-border);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(250, 244, 238, 0.72), rgba(255, 255, 255, 0.96));
}

body.home .home-editorial-point strong {
    display: block;
    margin-bottom: 6px;
    color: var(--home-ink);
    font-size: 1.02rem;
}

body.home .home-editorial-point p,
body.home .home-process-card p {
    margin: 0;
}

body.home .home-editorial-actions,
body.home .home-process-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

body.home .home-network-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.9fr);
    gap: 32px;
    align-items: center;
    padding: 30px;
    border: 1px solid var(--home-border);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--home-shadow);
}

body.home .home-network-visual {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(248, 239, 230, 0.84), rgba(255, 255, 255, 0.96));
}

body.home .home-network-map {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    isolation: isolate;
}

body.home .home-network-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 56% 26%, rgba(200, 68, 54, 0.14), transparent 10%),
        radial-gradient(circle at 53% 40%, rgba(154, 123, 71, 0.16), transparent 12%),
        radial-gradient(circle at 69% 42%, rgba(174, 98, 33, 0.14), transparent 11%),
        radial-gradient(circle at 21% 30%, rgba(46, 127, 134, 0.14), transparent 12%),
        radial-gradient(circle at 31% 73%, rgba(46, 127, 134, 0.12), transparent 10%);
    pointer-events: none;
    z-index: 1;
}

body.home .home-network-visual img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
    filter: saturate(0.88) contrast(1.04);
}

body.home .home-network-node {
    position: absolute;
    top: var(--y);
    left: var(--x);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translate(-50%, -50%);
    --network-node: #c84436;
    --network-node-soft: rgba(200, 68, 54, 0.2);
}

body.home .home-network-node-dot {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--network-node);
    box-shadow:
        0 0 0 7px var(--network-node-soft),
        0 10px 18px rgba(55, 30, 17, 0.14);
}

body.home .home-network-node-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--network-node);
    border-radius: inherit;
    opacity: 0.55;
    animation: homeNetworkPulse 2.8s ease-out infinite;
}

body.home .home-network-node-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(130, 86, 63, 0.12);
    box-shadow: 0 12px 22px rgba(57, 30, 18, 0.1);
    color: #4f3a2e;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
}

body.home .home-network-node-hub {
    flex-direction: column-reverse;
    gap: 12px;
    --network-node: #8f2a21;
    --network-node-soft: rgba(143, 42, 33, 0.24);
}

body.home .home-network-node-hub .home-network-node-dot {
    width: 14px;
    height: 14px;
}

body.home .home-network-node-hub .home-network-node-label {
    background: linear-gradient(180deg, rgba(255, 245, 242, 0.98), rgba(255, 255, 255, 0.96));
    color: #8f2a21;
}

body.home .home-network-node-label-left {
    flex-direction: row-reverse;
}

body.home .home-network-node.is-europe,
body.home .home-network-badges .is-europe {
    --network-node: #c84436;
    --network-node-soft: rgba(200, 68, 54, 0.2);
}

body.home .home-network-node.is-middle-east,
body.home .home-network-badges .is-middle-east {
    --network-node: #ae6221;
    --network-node-soft: rgba(174, 98, 33, 0.2);
}

body.home .home-network-node.is-north-africa,
body.home .home-network-badges .is-north-africa {
    --network-node: #9a7b47;
    --network-node-soft: rgba(154, 123, 71, 0.2);
}

body.home .home-network-node.is-americas,
body.home .home-network-badges .is-americas {
    --network-node: #2e7f86;
    --network-node-soft: rgba(46, 127, 134, 0.2);
}

body.home .home-network-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

body.home .home-network-badges span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--home-soft);
    color: #6b5648;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.home .home-network-badges .is-europe,
body.home .home-network-badges .is-middle-east,
body.home .home-network-badges .is-north-africa,
body.home .home-network-badges .is-americas {
    border: 1px solid transparent;
}

body.home .home-network-badges .is-europe {
    background: rgba(200, 68, 54, 0.12);
    border-color: rgba(200, 68, 54, 0.16);
    color: #a4362c;
}

body.home .home-network-badges .is-middle-east {
    background: rgba(174, 98, 33, 0.12);
    border-color: rgba(174, 98, 33, 0.16);
    color: #8a511d;
}

body.home .home-network-badges .is-north-africa {
    background: rgba(154, 123, 71, 0.12);
    border-color: rgba(154, 123, 71, 0.16);
    color: #7d633a;
}

body.home .home-network-badges .is-americas {
    background: rgba(46, 127, 134, 0.12);
    border-color: rgba(46, 127, 134, 0.16);
    color: #29656b;
}

body.home .home-network-map-caption {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #7b6559;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.home .home-network-map-caption-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8f2a21, #d18737);
    box-shadow: 0 0 0 5px rgba(209, 135, 55, 0.16);
}

@keyframes homeNetworkPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.65;
    }

    70% {
        transform: scale(1.85);
        opacity: 0;
    }

    100% {
        transform: scale(1.85);
        opacity: 0;
    }
}

body.home .home-network-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

body.home .home-network-stat {
    padding: 18px 20px;
    border: 1px solid rgba(130, 86, 63, 0.12);
    border-radius: 20px;
    background: #fcf8f4;
}

body.home .home-network-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--home-accent-strong);
    font-family: "Sora", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

body.home .home-network-stat span {
    color: #6f5a4c;
    font-weight: 700;
}

body.home .home-network-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(130, 86, 63, 0.14);
}

body.home .link-arrow {
    color: var(--home-accent-strong);
    font-weight: 700;
}

body.home .link-arrow i {
    margin-left: 4px;
}

body.home .home-certification-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.home .home-certification-card {
    min-height: 100%;
    padding: 26px 22px;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #faf3ec 100%);
    box-shadow: 0 22px 44px rgba(47, 24, 17, 0.08);
}

body.home .home-certification-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    margin-bottom: 20px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #f4e5d8;
    color: var(--home-accent-strong);
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.home .home-certification-card strong,
body.home .home-process-card h3 {
    display: block;
    margin-bottom: 10px;
    color: var(--home-ink);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
}

body.home .home-certification-card p {
    margin: 0;
    color: var(--home-copy);
    line-height: 1.8;
}

body.home .home-process-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 104px;
    background:
        radial-gradient(circle at 0% 100%, rgba(181, 50, 39, 0.34), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(125, 42, 35, 0.24), transparent 24%),
        linear-gradient(180deg, #171313 0%, #13100f 100%);
}

body.home .home-process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03), transparent 26%),
        linear-gradient(180deg, rgba(22, 16, 14, 0.06), rgba(22, 16, 14, 0.18));
}

body.home .home-process-section::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 50%;
    width: min(720px, 88vw);
    height: 156px;
    border-radius: 999px;
    background: radial-gradient(circle at center, rgba(86, 48, 39, 0.38), rgba(18, 14, 13, 0) 72%);
    transform: translateX(-50%);
    pointer-events: none;
}

body.home .home-process-section .container {
    position: relative;
    z-index: 1;
}

body.home .home-process-heading {
    position: relative;
    max-width: 860px;
    margin-bottom: 42px;
}

body.home .home-process-heading .home-section-kicker {
    margin-bottom: 10px;
    color: #ef4d3d;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

body.home .home-process-heading h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

body.home .home-process-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 248, 246, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

body.home .home-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.home .home-process-card {
    min-height: 100%;
    padding: 22px 18px 20px;
    border: 1px solid rgba(33, 24, 21, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f3f2 100%);
    box-shadow:
        0 18px 40px rgba(6, 4, 4, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body.home .home-process-card__header {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

body.home .home-process-card__body {
    position: relative;
}



body.home .home-process-index {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff5e4c 0%, #e3362d 100%);
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(227, 54, 45, 0.28);
}

body.home .home-process-card h3 {
    margin: 0 0 8px;
    color: #29211f;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

body.home .home-process-card p {
    margin: 0;
    color: #68584e;
    font-size: 0.96rem;
    line-height: 1.7;
}

body.home .home-process-actions {
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

body.home .home-process-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 232px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
}

body.home .home-process-actions .btn i {
    font-size: 1rem;
}

body.home .home-process-actions .btn-outline-light {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.home .home-process-actions .btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, #ff5e4c 0%, #ef3b2f 70%, #cf2c23 100%);
    color: #ffffff;
    box-shadow: 0 18px 30px rgba(239, 59, 47, 0.24);
}

body.home .home-process-actions .btn-outline-light:hover,
body.home .home-process-actions .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

body.home .home-process-actions .btn-primary:hover,
body.home .home-process-actions .btn-primary:focus {
    background: linear-gradient(135deg, #ff6a58 0%, #f34839 72%, #d43127 100%);
    color: #ffffff;
}

body.home .site-footer {
    background: #ffffff;
}

body.home .site-footer::before {
    display: none;
}

body.home .footer-cta-strip {
    display: none;
}

body.home .footer-main {
    padding-top: 56px;
    border-top: 1px solid rgba(130, 86, 63, 0.16);
}

body.home .footer-copy,
body.home .footer-list a,
body.home .footer-contact-list strong,
body.home .footer-contact-list a,
body.home .footer-contact-list span,
body.home .footer-bottom-links a,
body.home .footer-bottom-inner p {
    color: #5d4b41;
}

body.home .footer-head {
    color: var(--home-ink);
}

body.home .footer-bottom {
    border-top: 1px solid rgba(130, 86, 63, 0.14);
    background: #faf3ec;
}

@media (max-width: 1199.98px) {
    body.home .home-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    body.home .utility-bar {
        display: none;
    }

    body.home .nav-shell {
        padding: 16px 0;
    }

    body.home .hero-slide {
        min-height: 560px;
        padding: 180px 24px 92px;
    }

    body.home .home-hero-highlights-section {
        margin-top: -44px;
    }

    body.home .home-hero-highlights-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home .home-hero-highlight {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.home .home-hero-highlight:nth-child(2n) {
        border-right: 0;
    }

    body.home .home-hero-highlight:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    html[dir="rtl"] body.home .home-hero-highlight {
        border-right: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    html[dir="rtl"] body.home .home-hero-highlight:nth-child(2n) {
        border-left: 0;
    }

    body.home .home-editorial-section,
    body.home .home-network-section,
    body.home .home-certifications-section,
    body.home .home-process-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    body.home .home-editorial-section {
        padding-top: 46px;
    }

    body.home .home-network-panel,
    body.home .home-certification-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    body.home #topnav {
        padding-top: 0;
    }

    body.home .hero-slide {
        min-height: 500px;
        padding: 156px 18px 76px;
    }

    body.home .home-hero-highlights-section {
        margin-top: -28px;
    }

    body.home .home-hero-highlights-panel {
        grid-template-columns: 1fr;
    }

    body.home .home-hero-highlight {
        grid-template-columns: 56px minmax(0, 1fr);
        min-height: 0;
        padding: 20px 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.home .home-hero-highlight:last-child {
        border-bottom: 0;
    }

    html[dir="rtl"] body.home .home-hero-highlight {
        border-left: 0;
    }

    body.home .home-hero-highlight__icon {
        width: 56px;
        height: 56px;
    }

    body.home .home-hero-highlight__content strong {
        font-size: 0.92rem;
    }

    body.home .home-hero-highlight__content p {
        font-size: 0.94rem;
    }

    body.home .hero-copy {
        padding: 0;
    }

    body.home .hero-copy h1 {
        font-size: 2.2rem;
    }

    body.home .hero-copy p {
        font-size: 1rem;
    }

    body.home .hero-actions,
    body.home .hero-kpis,
    body.home .home-editorial-actions,
    body.home .home-process-actions {
        justify-content: stretch;
    }

    body.home .hero-actions .btn,
    body.home .home-editorial-actions .btn,
    body.home .home-process-actions .btn {
        width: 100%;
    }

    body.home .home-editorial-section {
        padding-top: 38px;
    }

    body.home .home-network-panel,
    body.home .home-editorial-point,
    body.home .home-certification-card,
    body.home .home-process-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    body.home .home-network-stats,
    body.home .home-process-grid {
        grid-template-columns: 1fr;
    }

    body.home .home-network-node {
        gap: 0;
    }

    body.home .home-network-node-label {
        display: none;
    }

    body.home .home-network-node-hub .home-network-node-label {
        position: absolute;
        top: calc(100% + 10px);
        left: 50%;
        display: inline-flex;
        transform: translateX(-50%);
    }

    body.home .home-network-node-dot {
        width: 10px;
        height: 10px;
        box-shadow:
            0 0 0 6px var(--network-node-soft),
            0 8px 14px rgba(55, 30, 17, 0.12);
    }

    body.home .home-editorial-media img {
        min-height: 300px;
    }
}

/* Inner pages aligned with homepage language */
body:not(.home) {
    --sub-accent: #b43b30;
    --sub-accent-strong: #8f2a21;
    --sub-paper: #fffdfa;
    --sub-soft: #f7efe7;
    --sub-border: rgba(130, 86, 63, 0.18);
    --sub-ink: #211814;
    --sub-copy: #5f4c42;
    --sub-shadow: 0 28px 60px rgba(47, 24, 17, 0.1);
    background: linear-gradient(180deg, #f7efe7 0%, #fffdfa 22%, #fff3f2 100%);
}

body:not(.home) #topnav {
    padding-top: 0;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(41, 21, 16, 0.08);
}

body:not(.home) #topnav.nav-sticky {
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(41, 21, 16, 0.1) !important;
}

body:not(.home) .utility-bar {
    display: block;
    padding: 0;
    max-height: none;
    background: linear-gradient(90deg, #b12c24, #c84436);
}

body:not(.home) .utility-bar-inner {
    padding: 9px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body:not(.home) .utility-bar-inner::before,
body:not(.home) .nav-shell::before,
body:not(.home) .nav-shell::after {
    display: none;
}

body:not(.home) .utility-pill {
    background: rgba(255, 255, 255, 0.16);
    color: #fff7f5;
}

body:not(.home) .utility-bar-copy p {
    color: rgba(255, 245, 242, 0.95);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

body:not(.home) .utility-bar-links .language-switcher__summary {
    padding: 4px 0 4px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #fff7f5;
}

body:not(.home) .utility-bar-links .language-switcher__summary:hover,
body:not(.home) .utility-bar-links .language-switcher[open] .language-switcher__summary {
    background: transparent;
}

body:not(.home) .utility-bar-links .language-switcher__summary-copy strong,
body:not(.home) .utility-bar-links .language-switcher__summary-copy small,
body:not(.home) .utility-bar-links .language-switcher__caret,
body:not(.home) .utility-bar-links .language-switcher__summary-flag {
    color: #fff7f5;
}

body:not(.home) .nav-shell {
    margin-top: 0;
    padding: 18px 0;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

body:not(.home) .nav-actions .language-switcher {
    display: block;
}

body:not(.home) #topnav .navigation-menu > li {
    position: relative;
}

body:not(.home) #topnav .navigation-menu.nav-light > li > a,
body:not(.home) #topnav .navigation-menu > li > a {
    padding: 10px 16px 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2f241d;
    font-size: 0.96rem;
    font-weight: 700;
    box-shadow: none;
}

body:not(.home) #topnav .navigation-menu.nav-light > li.active > a,
body:not(.home) #topnav .navigation-menu.nav-light > li:hover > a,
body:not(.home) #topnav .navigation-menu.nav-light > li:focus-within > a,
body:not(.home) #topnav .navigation-menu > li.active > a,
body:not(.home) #topnav .navigation-menu > li:hover > a,
body:not(.home) #topnav .navigation-menu > li:focus-within > a {
    color: var(--sub-accent);
    background: transparent;
}

body:not(.home) #topnav .navigation-menu > li::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: var(--sub-accent);
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

body:not(.home) #topnav .navigation-menu > li.active::before,
body:not(.home) #topnav .navigation-menu > li:hover::before,
body:not(.home) #topnav .navigation-menu > li:focus-within::before {
    opacity: 1;
    transform: scaleX(1);
}

body:not(.home) #topnav .navigation-menu.nav-light > li > .menu-arrow,
body:not(.home) #topnav .navigation-menu > li > .menu-arrow {
    border-color: rgba(47, 36, 29, 0.58);
}

body:not(.home) .page-hero,
body:not(.home) .page-hero-catalog,
body:not(.home) .page-hero-detail {
    padding: 196px 0 88px;
}

body:not(.home) .page-hero::before,
body:not(.home) .page-hero-catalog::before,
body:not(.home) .page-hero-detail::before {
    background:
        linear-gradient(180deg, rgba(19, 12, 9, 0.26) 0%, rgba(19, 12, 9, 0.62) 100%),
        linear-gradient(90deg, rgba(20, 13, 10, 0.5) 0%, rgba(20, 13, 10, 0.18) 50%, rgba(20, 13, 10, 0.5) 100%);
}

body:not(.home) .page-hero::after,
body:not(.home) .page-hero-catalog::after,
body:not(.home) .page-hero-detail::after {
    height: 160px;
    background: linear-gradient(180deg, transparent, rgba(247, 239, 231, 0.94));
}

body:not(.home) .page-hero-shell,
body:not(.home) .page-hero-shell-wide,
body:not(.home) .page-hero-shell-detail,
body:not(.home) .page-hero-shell-catalog {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 28px;
}

body:not(.home) .page-hero-copy {
    flex: 1 1 620px;
    max-width: 860px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

body:not(.home) .page-hero-copy .eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 248, 246, 0.94);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body:not(.home) .page-hero-copy h1 {
    max-width: 18ch;
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.4rem, 4.7vw, 2.7rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

body:not(.home) .page-hero-copy p {
    max-width: 62ch;
    color: rgba(255, 248, 246, 0.88);
    font-size: 1.05rem;
    line-height: 1.78;
}

body:not(.home) .breadcrumb-inline {
    margin-top: 24px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body:not(.home) .breadcrumb-inline,
body:not(.home) .breadcrumb-inline a,
body:not(.home) .breadcrumb-inline span {
    color: rgba(255, 248, 246, 0.92);
}

body:not(.home) .page-hero-aside,
body:not(.home) .catalog-hero-aside {
    flex: 0 1 340px;
    min-width: min(100%, 320px);
    padding: 28px 24px;
    border-radius: 28px;
    border: 1px solid rgba(130, 86, 63, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 241, 233, 0.96));
    box-shadow: var(--sub-shadow);
}

body:not(.home) .page-hero-aside strong,
body:not(.home) .catalog-hero-aside strong {
    color: var(--sub-ink);
}

body:not(.home) .page-hero-aside p,
body:not(.home) .catalog-hero-aside p {
    color: var(--sub-copy);
}

body:not(.home) .hero-aside-kicker {
    color: var(--sub-accent-strong);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body:not(.home) .hero-aside-tags span,
body:not(.home) .catalog-hero-chips span,
body:not(.home) .catalog-hero-summary span,
body:not(.home) .catalog-main-badges span,
body:not(.home) .catalog-support-tags span,
body:not(.home) .product-hero-chips span,
body:not(.home) .chip-list span,
body:not(.home) .quote-request-meta span,
body:not(.home) .product-quote-summary-meta span,
body:not(.home) .catalog-inline-cta,
body:not(.home) .product-card-category,
body:not(.home) .product-detail-category {
    border: 1px solid rgba(130, 86, 63, 0.14);
    background: #f4e5d8;
    color: var(--sub-accent-strong);
}

body:not(.home) .hero-actions .btn-outline-dark,
body:not(.home) .page-hero .btn-outline-dark {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.44);
    color: #ffffff;
}

body:not(.home) .hero-actions .btn-outline-dark:hover,
body:not(.home) .hero-actions .btn-outline-dark:focus,
body:not(.home) .page-hero .btn-outline-dark:hover,
body:not(.home) .page-hero .btn-outline-dark:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

body:not(.home) .section-soft {
    background:
        radial-gradient(circle at top right, rgba(212, 182, 160, 0.16), transparent 34%),
        linear-gradient(180deg, #f8f1ea 0%, #fffdfa 100%);
}

body:not(.home) .image-panel,
body:not(.home) .map-frame,
body:not(.home) .re-what-media {
    overflow: hidden;
    border: 1px solid var(--sub-border);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--sub-shadow);
}

body:not(.home) .story-panel,
body:not(.home) .overview-card,
body:not(.home) .detail-card,
body:not(.home) .process-card,
body:not(.home) .contact-info-card,
body:not(.home) .form-card,
body:not(.home) .quote-request-form-card,
body:not(.home) .catalog-filter-card,
body:not(.home) .catalog-main-topbar,
body:not(.home) .catalog-main-tools,
body:not(.home) .catalog-empty-state,
body:not(.home) .product-card,
body:not(.home) .product-detail-card,
body:not(.home) .reference-preview-card,
body:not(.home) .case-card,
body:not(.home) .re-service-card,
body:not(.home) .re-prop-card,
body:not(.home) .re-detail-overview-card,
body:not(.home) .re-detail-highlight-card,
body:not(.home) .re-detail-fact {
    border: 1px solid var(--sub-border);
    background: linear-gradient(180deg, #ffffff 0%, #fff3f2 100%);
    box-shadow: var(--sub-shadow);
}

body:not(.home) .overview-card,
body:not(.home) .detail-card,
body:not(.home) .process-card,
body:not(.home) .contact-info-card,
body:not(.home) .form-card,
body:not(.home) .quote-request-form-card,
body:not(.home) .catalog-filter-card,
body:not(.home) .catalog-main-topbar,
body:not(.home) .catalog-main-tools,
body:not(.home) .catalog-empty-state,
body:not(.home) .product-card,
body:not(.home) .product-detail-card,
body:not(.home) .reference-preview-card,
body:not(.home) .case-card {
    border-radius: 28px;
}

body:not(.home) .story-panel h2,
body:not(.home) .overview-card h3,
body:not(.home) .detail-card h3,
body:not(.home) .process-card h4,
body:not(.home) .contact-info-card h3,
body:not(.home) .catalog-main-copy h2,
body:not(.home) .catalog-heading-copy h2,
body:not(.home) .form-card h3,
body:not(.home) .quote-request-form-card h2,
body:not(.home) .product-detail-card h2,
body:not(.home) .page-hero-aside strong,
body:not(.home) .catalog-hero-aside strong,
body:not(.home) .re-properties-banner h2 {
    color: var(--sub-ink);
    font-family: "Sora", sans-serif;
    letter-spacing: -0.03em;
}

body:not(.home) .section-heading h2,
body:not(.home) .section-heading p,
body:not(.home) .catalog-heading-copy p,
body:not(.home) .catalog-main-copy p,
body:not(.home) .overview-card p,
body:not(.home) .detail-card p,
body:not(.home) .process-card p,
body:not(.home) .contact-info-card p,
body:not(.home) .case-card p,
body:not(.home) .reference-preview-card p,
body:not(.home) .form-card p,
body:not(.home) .quote-request-form-card p,
body:not(.home) .product-detail-lead,
body:not(.home) .product-detail-richtext p,
body:not(.home) .product-detail-richtext li,
body:not(.home) .re-prop-body p,
body:not(.home) .re-service-card p {
    color: var(--sub-copy);
}

body:not(.home) .icon-chip,
body:not(.home) .number-chip {
    background: #f4e5d8;
    color: var(--sub-accent-strong);
    box-shadow: none;
}

/* body:not(.home) .link-arrow,
body:not(.home) .link-primary {
    color: var(--sub-accent-strong);
} */

body:not(.home) .bullet-list li::before,
body:not(.home) .meta-list li::before {
    color: var(--sub-accent-strong);
}

body:not(.home) .catalog-sidebar-link,
body:not(.home) .catalog-search-field input,
body:not(.home) .catalog-sort-select,
body:not(.home) .form-control,
body:not(.home) .form-select {
    border-color: var(--sub-border);
    background: #fffcf9;
    color: var(--sub-ink);
}

body:not(.home) .catalog-search-field input:focus,
body:not(.home) .catalog-sort-select:focus,
body:not(.home) .form-control:focus,
body:not(.home) .form-select:focus {
    border-color: rgba(180, 59, 48, 0.42);
    box-shadow: 0 0 0 4px rgba(180, 59, 48, 0.1);
    background: #ffffff;
}

body:not(.home) .searchable-select-dropdown {
    border: 1px solid var(--sub-border);
    background: rgba(255, 255, 255, 0.98);
}

body:not(.home) .searchable-select-option:hover,
body:not(.home) .searchable-select-option:focus,
body:not(.home) .searchable-select-option.is-selected {
    background: rgba(180, 59, 48, 0.08);
}

/* body:not(.home) .product-card-media,
body:not(.home) .product-gallery-main-panel,
body:not(.home) .re-prop-media {
    background: linear-gradient(180deg, #f8efe7, #ffffff);
} */

body:not(.home) .product-card-badge,
body:not(.home) .product-gallery-lightbox-badge,
body:not(.home) .product-price-block,
body:not(.home) .product-card-action,
body:not(.home) .catalog-pagination-button.is-active,
body:not(.home) .re-prop-badge {
    background: linear-gradient(135deg, #c24d3d 0%, #982d23 100%);
    color: #ffffff;
}

body:not(.home) .catalog-pagination-button,
body:not(.home) .product-gallery-thumb,
body:not(.home) .quote-request-summary-box,
body:not(.home) .product-quote-summary {
    border-color: var(--sub-border);
}

body:not(.home) .quote-request-summary-box,
body:not(.home) .product-quote-summary {
    background: linear-gradient(135deg, #2d1b18 0%, #5f2a22 100%);
}

body:not(.home) .map-frame iframe {
    min-height: 420px;
}

body:not(.home) .cta-band {
    border: 1px solid var(--sub-border);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #faf2ea 100%);
    box-shadow: var(--sub-shadow);
}

body:not(.home) .re-what-badge {
    border: 1px solid var(--sub-border);
    box-shadow: var(--sub-shadow);
}

body:not(.home) .re-properties-banner-overlay {
    background: linear-gradient(180deg, rgba(180, 59, 48, 0.56) 0%, rgba(77, 37, 26, 0.82) 100%);
}

body:not(.home) .site-footer {
    padding-top: 0;
    background: #ffffff;
}

body:not(.home) .site-footer::before {
    display: none;
}

body:not(.home) .footer-cta-strip {
    border: 1px solid var(--sub-border);
    background: linear-gradient(180deg, #ffffff 0%, #faf2ea 100%);
    box-shadow: var(--sub-shadow);
}

body:not(.home) .footer-main {
    border-top: 1px solid rgba(130, 86, 63, 0.16);
}

body:not(.home) .footer-copy,
body:not(.home) .footer-list a,
body:not(.home) .footer-contact-list strong,
body:not(.home) .footer-contact-list a,
body:not(.home) .footer-contact-list span,
body:not(.home) .footer-bottom-links a,
body:not(.home) .footer-bottom-inner p {
    color: #5d4b41;
}

body:not(.home) .footer-head {
    color: var(--sub-ink);
}

body:not(.home) .footer-bottom {
    border-top: 1px solid rgba(130, 86, 63, 0.14);
    background: #faf3ec;
}

@media (max-width: 1199.98px) {
    .utility-contact-link span {
        font-size: 0.84rem;
    }

    .nav-actions .language-switcher {
        min-width: 108px;
    }
}

@media (max-width: 991.98px) {
    body:not(.home) .utility-bar {
        display: none;
    }

    body:not(.home) .nav-shell {
        padding: 16px 0;
    }

    body:not(.home) .nav-actions {
        display: none;
    }

    body:not(.home) .page-hero,
    body:not(.home) .page-hero-catalog,
    body:not(.home) .page-hero-detail {
        padding: 166px 0 72px;
    }

    body:not(.home) .page-hero-copy,
    body:not(.home) .page-hero-aside {
        flex-basis: 100%;
        max-width: none;
    }

    body:not(.home) .page-hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    body:not(.home) .page-hero,
    body:not(.home) .page-hero-catalog,
    body:not(.home) .page-hero-detail {
        padding: 146px 0 58px;
    }

    body:not(.home) .page-hero-copy h1 {
        font-size: 2.2rem;
    }

    body:not(.home) .page-hero-copy p {
        font-size: 1rem;
    }

    body:not(.home) .page-hero-aside,
    body:not(.home) .overview-card,
    body:not(.home) .detail-card,
    body:not(.home) .process-card,
    body:not(.home) .contact-info-card,
    body:not(.home) .form-card,
    body:not(.home) .quote-request-form-card,
    body:not(.home) .catalog-filter-card,
    body:not(.home) .catalog-main-topbar,
    body:not(.home) .catalog-main-tools,
    body:not(.home) .catalog-empty-state,
    body:not(.home) .product-detail-card,
    body:not(.home) .reference-preview-card,
    body:not(.home) .case-card,
    body:not(.home) .cta-band {
        border-radius: 24px;
    }
}

/* Unified header across all pages */
#topnav {
    padding-top: 0 !important;
    background: #ffffff !important;
    box-shadow: 0 10px 28px rgba(41, 21, 16, 0.08) !important;
}

#topnav.nav-sticky {
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(41, 21, 16, 0.1) !important;
}

.utility-bar {
    display: block;
    position: relative;
    z-index: 20;
    padding: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: linear-gradient(90deg, #b12c24, #c84436);
}

#topnav.nav-sticky .utility-bar {
    max-height: none !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

.utility-bar-inner {
    padding: 9px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.utility-bar-inner::before,
.nav-shell::before,
.nav-shell::after {
    display: none !important;
}

.utility-pill {
    display: none !important;
}

.utility-bar-copy {
    gap: 0 !important;
}

.utility-bar-copy p {
    margin: 0;
    color: #fff7f5 !important;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.utility-bar-links {
    gap: 12px 22px !important;
    justify-content: flex-end !important;
}

.utility-bar-links,
.utility-bar-links > a,
.utility-bar .language-switcher__summary,
.utility-bar .language-switcher__summary * {
    color: #fff7f5 !important;
}

.utility-bar .language-switcher__summary {
    padding: 4px 0 4px 14px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.utility-bar .language-switcher__caret {
    background: rgba(255, 247, 245, 0.14) !important;
}

.utility-bar .language-switcher__summary:hover .language-switcher__caret,
.utility-bar .language-switcher[open] .language-switcher__caret {
    background: rgba(255, 247, 245, 0.22) !important;
}

.utility-bar .language-switcher__summary:hover,
.utility-bar .language-switcher[open] .language-switcher__summary {
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.nav-shell {
    margin-top: 0 !important;
    padding: 18px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

@media (min-width: 992px) {
    .nav-actions {
        display: flex !important;
    }
}

#topnav .navigation-menu {
    justify-content: center;
}

#topnav .navigation-menu > li {
    position: relative;
}

#topnav .navigation-menu.nav-light > li > a,
#topnav .navigation-menu > li > a {
    padding: 10px 16px 10px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #2f241d !important;
    font-size: 0.87rem !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

#topnav .navigation-menu.nav-light > li.active > a,
#topnav .navigation-menu.nav-light > li:hover > a,
#topnav .navigation-menu.nav-light > li:focus-within > a,
#topnav .navigation-menu > li.active > a,
#topnav .navigation-menu > li:hover > a,
#topnav .navigation-menu > li:focus-within > a {
    color: #b43b30 !important;
    background: transparent !important;
}

#topnav .navigation-menu > li::before {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: #b43b30;
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

#topnav .navigation-menu > li.active::before,
#topnav .navigation-menu > li:hover::before,
#topnav .navigation-menu > li:focus-within::before {
    opacity: 1;
    transform: scaleX(1);
}

@media (min-width: 992px) {
    #topnav .navigation-menu > li.has-submenu {
        padding-right: 16px;
    }

    #topnav .navigation-menu.nav-light > li > .menu-arrow,
    #topnav .navigation-menu > li > .menu-arrow {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute;
        right: 0;
        top: 50%;
        width: 8px;
        height: 8px;
        border: 0 !important;
        border-right: 2px solid rgba(47, 36, 29, 0.58) !important;
        border-bottom: 2px solid rgba(47, 36, 29, 0.58) !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        transform: rotate(45deg) !important;
    }

    #topnav .navigation-menu > li > .menu-arrow::before {
        display: none !important;
    }

    #topnav .has-submenu:hover > .menu-arrow,
    #topnav .has-submenu:focus-within > .menu-arrow,
    #topnav .has-submenu.open > .menu-arrow,
    #topnav .navigation-menu.nav-light > li:hover > .menu-arrow,
    #topnav .navigation-menu.nav-light > li:focus-within > .menu-arrow,
    #topnav .navigation-menu.nav-light > li.active > .menu-arrow {
        border-right-color: #b43b30 !important;
        border-bottom-color: #b43b30 !important;
        transform: rotate(45deg) translate(-1px, -1px) !important;
    }
}

@media (max-width: 991.98px) {
    .utility-bar {
        display: none !important;
    }
}

/* Product detail redesign */
body.product_detail {
    background:
        radial-gradient(circle at top left, rgba(239, 47, 46, 0.06), transparent 30%),
        linear-gradient(180deg, #fffaf6 0%, #ffffff 28%, #fff8f4 100%);
}

.product-detail-page {
    position: relative;
    padding: 68px 0 46px;
}

.product-detail-breadcrumb {
    margin-bottom: 24px;
}

.breadcrumb-inline.product-detail-breadcrumb {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    gap: 10px;
    margin-top: 0;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(92, 79, 73, 0.74), rgba(73, 61, 56, 0.68));
    box-shadow: 0 20px 36px rgba(56, 28, 20, 0.12);
    backdrop-filter: blur(12px);
}

.product-detail-breadcrumb,
.product-detail-breadcrumb a,
.product-detail-breadcrumb span {
    color: rgba(255, 250, 247, 0.94);
    font-size: 0.92rem;
    font-weight: 600;
}

.product-detail-breadcrumb a:hover,
.product-detail-breadcrumb a:focus {
    color: #ffffff;
}

.product-detail-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 30px;
    align-items: start;
}

.product-detail-gallery-shell,
.product-detail-summary-card,
.product-info-card,
.product-tab-card,
.product-fact-card {
    border: 1px solid rgba(180, 59, 48, 0.12);
    border-radius: 30px;
    /* background: linear-gradient(180deg, #ffffff 0%, #fff5f0 100%); 
    box-shadow: 0 22px 46px rgba(56, 28, 20, 0.08);*/
}

.product-detail-gallery-shell {
    padding: 20px;
}

.product-detail-gallery-layout {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.product-detail-gallery-rail {
    display: grid;
    gap: 14px;
}

.product-detail-gallery-rail .product-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 568px;
    overflow: auto;
    padding-right: 4px;
}

.product-detail-gallery-rail .product-gallery-thumb {
    padding: 6px;
    border-radius: 18px;
    /* border: 1px solid rgba(180, 59, 48, 0.12);
    background: rgba(255, 255, 255, 0.96); */
}

/* .product-detail-gallery-rail .product-gallery-thumb.active {
    border-color: rgba(180, 59, 48, 0.34);
    box-shadow: 0 18px 32px rgba(180, 59, 48, 0.12);
} */

.product-gallery-rail-control,
.product-gallery-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 30px rgba(46, 24, 18, 0.12);
    color: #38251d;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.product-gallery-rail-control:hover,
.product-gallery-rail-control:focus,
.product-gallery-nav:hover,
.product-gallery-nav:focus {
    transform: translateY(-2px);
    background: #ffffff;
    color: #b43b30;
}

.product-gallery-rail-control {
    width: 32px;
    height: 32px;
    justify-self: center;
}

.product-gallery-rail-control span,
.product-gallery-nav span {
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.product-gallery-rail-control span {
    transform: rotate(45deg);
}

.product-detail-gallery-stage {
    display: grid;
    gap: 18px;
}

.product-detail-image-panel.product-gallery-main-panel {
    position: relative;
    /* min-height: 586px; */
    /* padding: 24px; */
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(180, 59, 48, 0.08);
    background:
        radial-gradient(circle at top center, rgba(255, 240, 228, 0.98), rgba(248, 227, 214, 0.82) 42%, rgba(255, 255, 255, 0.96) 100%),
        linear-gradient(180deg, #fff7f1, #ffffff);
}

.product-gallery-lightbox-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 538px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-lightbox-trigger img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-gallery-slide-index {
    position: absolute;
    right: 22px;
    top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #473026;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
    z-index: 2;
}

.product-gallery-nav:hover,
.product-gallery-nav:focus {
    transform: translateY(-50%) translateY(-2px);
}

.product-gallery-nav-prev {
    left: 18px;
}

.product-gallery-nav-next {
    right: 18px;
}

.product-gallery-nav-prev span {
    transform: rotate(135deg);
    margin-left: 4px;
}

.product-gallery-nav-next span {
    transform: rotate(-45deg);
    margin-right: 4px;
}

.product-gallery-meta {
    margin-top: 0;
    justify-content: flex-start;
}

.product-detail-summary-card {
    padding: 24px;
}

.product-detail-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-badge-wholesale,
.product-badge-private-label {
    background: #29211d;
    color: #ffffff;
}

.product-badge-export-ready {
    background: linear-gradient(135deg, #ef2f2e 0%, #b5261c 100%);
    color: #ffffff;
}

.product-detail-summary-card h1 {
    margin: 0 0 18px;
    color: #2c1e18;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.2rem, 3.3vw, 2.55rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.product-detail-subline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 20px;
}

.product-detail-subline span {
    color: #6f584d;
    font-size: 0.96rem;
    font-weight: 600;
}

.product-detail-subline strong {
    color: #2f2019;
}

.product-detail-subline a {
    color: #b43b30;
}

.product-detail-feature-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 28px;
}

.product-feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 14px 16px;
    border: 1px solid rgba(180, 59, 48, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

/* .product-feature-pill::before {
    content: '';
    flex: none;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background:
        radial-gradient(circle at center, rgba(239, 47, 46, 0.16), rgba(239, 47, 46, 0.08)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
} */

.product-feature-pill span {
    color: #5a463c;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-offer-card {
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(180, 59, 48, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 237, 0.92));
}

.product-offer-copy h2 {
    margin: 0 0 8px;
    color: #2f2019;
    font-size: 1.25rem;
    line-height: 1.35;
}

.product-offer-copy p,
.product-offer-copy {
    color: #6c584e;
}

.product-offer-copy p {
    margin: 0;
}

.product-offer-moq {
    margin-top: 16px;
    color: #6e594e;
    font-size: 0.98rem;
    font-weight: 600;
}

.product-offer-moq strong {
    color: #2e1f18;
}

.product-offer-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.product-quantity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(180, 59, 48, 0.14);
    border-radius: 18px;
    background: #ffffff;
}

.product-quantity button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #f7e9e4;
    color: #3d281f;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
}

.product-quantity button:hover,
.product-quantity button:focus {
    background: #efd8d1;
}

.product-quantity input {
    width: 72px;
    border: none;
    background: transparent;
    color: #2f2019;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
}

.product-quantity-unit {
    padding-right: 8px;
    color: #7a655a;
    font-size: 0.92rem;
    font-weight: 700;
}

.product-offer-primary,
.product-offer-secondary {
    justify-content: center;
    min-height: 58px;
    border-radius: 18px;
    font-size: 0.9rem;
}

.product-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}

.product-inline-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: none;
    background: transparent;
    color: #6f594d;
    font-size: 0.96rem;
    font-weight: 700;
}

.product-inline-action svg {
    width: 18px;
    height: 18px;
}

.product-inline-action.is-active,
.product-inline-action:hover,
.product-inline-action:focus {
    color: #b43b30;
}

.product-detail-sections {
    padding-top: 8px;
}

.product-detail-tabs {
    position: sticky;
    top: 118px;
    z-index: 6;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding: 10px;
    border: 1px solid rgba(180, 59, 48, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 36px rgba(56, 28, 20, 0.08);
}

.product-detail-tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 16px;
    border: 0;
    border-radius: 16px;
    background: transparent;
    color: #6e5a4f;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.product-detail-tabs button.is-active,
.product-detail-tabs button:hover,
.product-detail-tabs button:focus {
    background: #fff0ea;
    color: #b43b30;
}

.product-detail-tab-panels {
    display: grid;
}

.product-detail-tab-panel[hidden] {
    display: none !important;
}

.product-detail-content-grid,
.product-tab-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.product-info-card,
.product-tab-card {
    padding: 30px;
}

.product-tab-card-wide {
    width: 100%;
}

.product-info-card h2,
.product-tab-card h3 {
    margin: 0 0 18px;
    color: #2d1e18;
    font-family: "Sora", sans-serif;
    font-size: 1.55rem;
    letter-spacing: -0.03em;
}

.product-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.product-check-list li {
    position: relative;
    padding-left: 28px;
    color: #5d483d;
    font-weight: 600;
}

.product-check-list li::before,
.product-check-list li::after {
    content: '';
    position: absolute;
}

.product-check-list li::before {
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(180, 59, 48, 0.12);
}

.product-check-list li::after {
    left: 5px;
    top: 10px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #b43b30;
    border-bottom: 2px solid #b43b30;
    transform: rotate(-45deg);
}

.product-benefit-list {
    display: grid;
    gap: 10px;
}

.product-benefit-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding-top: 14px;
    border-top: 1px solid rgba(180, 59, 48, 0.12);
}

.product-benefit-item:first-child {
    padding-top: 0;
    border-top: none;
}

.product-benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b43b30;
    background:
        radial-gradient(circle at center, rgba(239, 47, 46, 0.14), rgba(239, 47, 46, 0.06)),
        #fff4ef;
}

.product-benefit-item p {
    margin: 0;
    color: #5d483d;
    font-weight: 600;
}

.product-fact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 20px 0 22px;
}

.product-fact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
}

.product-fact-icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b43b30;
    background:
        radial-gradient(circle at center, rgba(239, 47, 46, 0.16), rgba(239, 47, 46, 0.06)),
        #fff3ee;
}

.product-fact-copy strong {
    display: block;
    color: #2d1e18;
    font-size: 1rem;
    margin-bottom: 3px;
}

.product-fact-copy span {
    color: #6a554b;
    font-weight: 600;
}

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

.product-spec-item {
    padding: 16px 18px;
    border: 1px solid rgba(180, 59, 48, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.product-spec-item span {
    display: block;
    margin-bottom: 6px;
    color: #8d766a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-spec-item strong {
    color: #33221a;
    font-size: 0.98rem;
    line-height: 1.45;
}

.product-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-chip-cloud span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(180, 59, 48, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: #5f4a40;
    font-weight: 700;
}

.product-tab-note {
    margin: 16px 0 0;
    color: #6b564b;
}

.product-document-list {
    display: grid;
    gap: 12px;
}

.product-document-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(180, 59, 48, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.product-document-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #2f2019;
}

.product-document-copy p {
    margin: 0;
    color: #6b564b;
}

.product-document-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff0ea;
    color: #b43b30;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
}

.product-related-grid {
    margin-top: 0;
}

.product-detail-cta {
    position: relative;
    overflow: hidden;
}

.product-detail-cta::after {
    content: '';
    position: absolute;
    left: -40px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(239, 47, 46, 0.12), transparent 70%);
    pointer-events: none;
}

@media (max-width: 1199.98px) {
    .product-detail-hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

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

@media (max-width: 991.98px) {
    .product-detail-page {
        padding-top: 146px;
    }

    .product-detail-gallery-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-detail-gallery-rail {
        order: 2;
    }

    .product-detail-gallery-rail .product-gallery-thumbs {
        flex-direction: row;
        max-height: none;
        padding-right: 0;
        padding-bottom: 4px;
    }

    .product-detail-gallery-rail .product-gallery-thumb {
        width: 88px;
        flex: none;
    }

    .product-gallery-rail-control {
        display: none;
    }

    .product-detail-tabs {
        position: static;
        top: auto;
    }

    .product-detail-content-grid,
    .product-tab-panel-grid,
    .product-spec-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-offer-actions {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-offer-primary,
    .product-offer-secondary {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .product-detail-page {
        padding-top: 132px;
        padding-bottom: 36px;
    }

    .product-detail-gallery-shell,
    .product-detail-summary-card,
    .product-info-card,
    .product-tab-card,
    .product-fact-card {
        border-radius: 24px;
    }

    .product-detail-gallery-shell,
    .product-detail-summary-card,
    .product-info-card,
    .product-tab-card {
        padding: 20px;
    }

    .product-detail-image-panel.product-gallery-main-panel {
        min-height: 420px;
        padding: 18px;
        border-radius: 22px;
    }

    .product-gallery-lightbox-trigger {
        min-height: 384px;
    }

    .product-gallery-nav {
        width: 48px;
        height: 48px;
    }

    .product-detail-feature-pills,
    .product-check-list,
    .product-fact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-detail-summary-card h1 {
        font-size: 2.35rem;
    }

    .product-document-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
