:root {
    --gold: #b8882d;
    --gold-soft: #dec080;
    --brown: #2f2112;
    --brown-soft: #5f4529;
    --cream: #f5efe3;
    --white: #ffffff;
    --line: #dfcfb7;
    --text: #2a1d10;
    --muted: #5f4b37;
    --eset-cyan: #00a3e0;
    --eset-blue: #0077b6;
    --eset-ink: #153544;
    --eset-sky: #e8f6fc;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 92% -18%, rgba(184, 136, 45, 0.2), transparent 38%),
        linear-gradient(180deg, rgba(184, 136, 45, 0.08), rgba(255, 255, 255, 0) 220px),
        var(--cream);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.58rem;
    line-height: 1.15;
    font-family: 'Marcellus', serif;
    color: var(--brown);
}

p {
    margin: 0 0 0.84rem;
    color: var(--muted);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

html.js img[data-media] {
    opacity: 0;
    transform: scale(1.008);
    filter: saturate(0.95) contrast(0.98);
    transition: opacity 0.32s ease-out, transform 0.32s ease-out, filter 0.32s ease-out;
}

html.js img[data-media].is-ready {
    opacity: 1;
    transform: scale(1);
    filter: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: 0.65rem;
    top: -48px;
    z-index: 120;
    border: 1px solid #d8c6a9;
    border-radius: 10px;
    background: #fffdf8;
    color: #3b2912;
    font-weight: 700;
    padding: 0.45rem 0.62rem;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0.65rem;
}

:where(a, button, input, select, textarea, summary):focus-visible {
    outline: 2px solid #a87824;
    outline-offset: 2px;
}

main > .section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 640px;
}

main {
    overflow: hidden;
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.top-band {
    height: 5px;
    background: linear-gradient(90deg, var(--brown), var(--gold), var(--brown));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    backdrop-filter: blur(6px);
}

.header-shell {
    width: min(1220px, 94vw);
    margin: 0 auto;
}

.header-utility {
    background: var(--brown);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.utility-wrap {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #f2dfbf;
    text-align: center;
}

.header-main {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e9dcc8;
    box-shadow: 0 8px 16px rgba(38, 26, 13, 0.08);
}

.nav-wrap {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.brand-logo {
    width: clamp(124px, 10.8vw, 168px);
    height: auto;
    display: block;
    object-fit: contain;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.18rem;
}

.site-nav a {
    text-decoration: none;
    padding: 0.23rem 0.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--brown);
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.site-nav a:hover,
.site-nav a.active {
    border-color: #d6c39f;
    background: #faf3e6;
    transform: translateY(-1px);
}

.lang-switch {
    margin-left: 0.25rem;
    flex: 0 0 auto;
}

.lang-switch select {
    border: 1px solid #d6c3a7;
    border-radius: 8px;
    background: #fffdf8;
    color: var(--brown);
    padding: 0.18rem 0.44rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.menu-toggle {
    margin-left: auto;
    display: none;
    border: 1px solid #d0bea1;
    border-radius: 8px;
    background: #faf3e6;
    color: var(--brown);
    font-size: 0.77rem;
    font-weight: 800;
    padding: 0.2rem 0.48rem;
}

.hero {
    position: relative;
    min-height: 54vh;
    background: #170f07;
}

.hero-carousel {
    overflow: hidden;
}

.hero-panel {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-panel.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(116deg, rgba(16, 9, 4, 0.84), rgba(16, 9, 4, 0.26));
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 4.2s ease;
}

.hero-panel.is-active .hero-bg img {
    transform: scale(1.09);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
    padding: 3.1rem 0;
}

.hero-content h1 {
    color: var(--white);
}

.hero-content p,
.hero-content .eyebrow {
    color: #f2e6d3;
}

.hero-indicators {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    z-index: 5;
    display: inline-flex;
    gap: 0.42rem;
}

.hero-dot {
    width: 28px;
    height: 4px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: background-color 0.22s ease, transform 0.22s ease;
}

.hero-dot.is-active {
    background: var(--gold-soft);
    transform: scaleX(1.16);
}

h1 {
    font-size: clamp(1.72rem, 4.3vw, 3.15rem);
}

.eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}

.eyebrow.dark {
    color: var(--gold);
}

.hero-actions {
    display: flex;
    gap: 0.52rem;
    flex-wrap: wrap;
    margin-top: 0.72rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    padding: 0.52rem 0.9rem;
    transition: transform 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-solid {
    background: linear-gradient(140deg, var(--gold), #9d7224);
    color: #fff8ef;
}

.btn-outline {
    border-color: #e3d2b6;
    background: rgba(255, 255, 255, 0.08);
    color: #f4ead9;
}

.section {
    padding: 2rem 0;
}

.section.alt {
    background: linear-gradient(165deg, #f2e8d8, #f8f3e9 42%, #efe3d0);
}

.stats-wrap {
    margin-top: -1.1rem;
    position: relative;
    z-index: 4;
}

.compact-home .icon-grid {
    margin-top: 0.72rem;
}

.counter-grid,
.icon-grid,
.split-grid,
.value-grid,
.team-grid,
.sector-grid,
.service-detail-grid,
.gallery-grid,
.contact-layout,
.footer-grid,
.data-grid,
.product-range-grid,
.policy-grid,
.map-grid,
.product-card-grid {
    display: grid;
    gap: 0.84rem;
}

.counter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid,
.data-grid,
.policy-grid,
.team-grid,
.contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sector-grid,
.gallery-grid,
.product-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-grid,
.product-range-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-grid,
.map-grid {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: start;
}

.footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
}

.counter-card,
.icon-card,
.panel,
.value-card,
.team-card,
.sector-card,
.service-card,
.product-range-card,
.policy-card,
.product-item-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.86rem;
}

.counter-card {
    box-shadow: 0 10px 20px rgba(44, 30, 14, 0.11);
}

.counter-card h3 {
    color: var(--brown);
    font-size: clamp(1.3rem, 2.5vw, 1.86rem);
}

.icon-card {
    text-align: center;
}

.icon-card img {
    width: 46px;
    height: 46px;
    margin: 0 auto 0.45rem;
}

.icon-card h3,
.counter-card h3,
.sector-card h3,
.product-range-card h2,
.service-card h2,
.product-item-card h3,
.team-card h3 {
    color: var(--brown);
}

.product-category-head {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 0.95rem;
}

.category-hero {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    border: 1px solid #d7c5a6;
    box-shadow: 0 7px 16px rgba(42, 29, 13, 0.1);
}

.product-item-card img,
.service-card img,
.sector-card img,
.panel-image,
.image-stack img,
.gallery-grid img,
.story-card img,
.team-card img {
    width: 100%;
    display: block;
    border-radius: 11px;
    border: 1px solid #d7c5a6;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 7px 16px rgba(42, 29, 13, 0.1);
}

.product-item-card img,
.service-card img,
.sector-card img,
.image-stack img,
.gallery-grid img,
.story-card img {
    aspect-ratio: 16 / 10;
}

.team-card img {
    aspect-ratio: 1 / 1;
}

.panel-image {
    margin-top: 0.56rem;
    aspect-ratio: 16 / 9;
}

.team-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0.72rem;
    align-items: start;
}

.team-card .title,
.value-card .title {
    color: var(--gold);
    font-weight: 700;
}

.service-card ul,
.policy-card ul,
.panel ul,
.value-card ul,
.product-item-card ul {
    margin-bottom: 0;
}

.policy-inline-list {
    margin-top: 0.65rem;
}

.partner-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.4rem;
    border: 1px solid #abd7e4;
    border-radius: 999px;
    background: linear-gradient(110deg, #ffffff 0%, #f0fbff 62%, #fff6e8 100%);
    color: var(--eset-ink);
    text-decoration: none;
    padding: 0.24rem 0.66rem 0.24rem 0.3rem;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.1;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-pill img {
    width: 94px;
    height: auto;
    max-height: 36px;
    object-fit: contain;
    background: transparent;
}

.partner-pill-text {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.partner-pill-text strong {
    color: #3a2812;
}

.partner-pill:hover {
    transform: translateY(-1px);
    border-color: #74bfdc;
    box-shadow: 0 8px 16px rgba(0, 119, 182, 0.16);
}

.eset-partner-highlight {
    background: linear-gradient(118deg, #ecf8ff, #f8fcff 42%, #eef4f8);
}

.eset-partner-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 0.9rem;
    align-items: stretch;
}

.eset-partner-copy h2,
.price-catalog-head h2 {
    color: var(--eset-ink);
}

.segment-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
    margin-top: 0.58rem;
}

.segment-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #a9d7eb;
    background: #f6fcff;
    color: #0f445f;
    padding: 0.22rem 0.56rem;
    font-size: 0.73rem;
    font-weight: 700;
}

.eset-partner-mark {
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
    background: linear-gradient(150deg, #ffffff, #f1f9fd);
}

.eset-partner-mark img {
    width: min(340px, 100%);
    margin-bottom: 0.4rem;
}

.eset-partner-mark .partner-badge-art {
    width: min(320px, 100%);
    margin-top: 0.2rem;
    margin-bottom: 0;
    border-radius: 12px;
    border: 1px solid #cee1ea;
    box-shadow: 0 7px 14px rgba(15, 68, 95, 0.12);
}

.eset-visual-grid {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.74rem;
}

.eset-visual-card {
    border: 1px solid #b7d9e8;
    border-radius: 14px;
    background: #ffffff;
    padding: 0.56rem;
    display: grid;
    gap: 0.34rem;
    box-shadow: 0 8px 18px rgba(12, 66, 93, 0.09);
}

.eset-visual-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    border: 1px solid #cde0ea;
    background: #f5fbff;
}

.eset-visual-card.is-box img {
    object-fit: contain;
    padding: 0.4rem;
}

.eset-visual-card h3 {
    margin-bottom: 0.15rem;
    font-size: 0.98rem;
    color: var(--eset-ink);
}

.eset-visual-card p {
    margin: 0;
    font-size: 0.82rem;
}

.eset-catalog {
    background: linear-gradient(170deg, #eff9ff, #f7fbff);
}

.price-catalog-head {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.7rem;
}

.eset-mini-logo {
    width: 220px;
    justify-self: end;
}

.price-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
}

.price-card {
    border: 1px solid #c5ddea;
    border-radius: 14px;
    background: #ffffff;
    padding: 0.78rem;
}

.price-segment {
    margin-bottom: 0.2rem;
    color: #0e5f86;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.price-range {
    margin-bottom: 0.28rem;
    color: var(--eset-blue);
    font-size: 1.1rem;
    font-weight: 800;
}

.eset-services .panel {
    border-color: #b8d7e6;
    background: linear-gradient(160deg, #ffffff, #f4fafe);
}

@media (max-width: 1180px) {
    .eset-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .eset-partner-grid {
        grid-template-columns: 1fr;
    }

    .eset-visual-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-catalog-head {
        grid-template-columns: 1fr;
    }

    .eset-mini-logo {
        justify-self: start;
    }

    .price-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .eset-visual-grid,
    .price-catalog-grid {
        grid-template-columns: 1fr;
    }

    .segment-chip {
        font-size: 0.69rem;
    }

    .eset-partner-mark img {
        width: min(280px, 100%);
    }
}

.list-clean {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.42rem;
    color: var(--muted);
}

.image-stack {
    display: grid;
    gap: 0.8rem;
}

.story-slider {
    display: grid;
    gap: 0.62rem;
}

.story-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.45rem;
}

.story-card {
    border: 1px solid #d8c5a5;
    background: #fff;
    border-radius: 12px;
    padding: 0.35rem;
    display: grid;
    gap: 0.32rem;
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.story-card span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brown);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-card.is-active {
    border-color: var(--gold);
    box-shadow: 0 8px 18px rgba(94, 67, 27, 0.16);
    transform: translateY(-2px);
}

.story-help {
    margin-bottom: 0;
    font-size: 0.78rem;
}

.story-modal {
    position: fixed;
    inset: 0;
    background: rgba(18, 12, 6, 0.7);
    z-index: 95;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
}

.story-modal.open {
    display: flex;
}

.story-modal-dialog {
    position: relative;
    width: min(560px, 95vw);
    background: #fffdf8;
    border: 1px solid #dac8a9;
    border-radius: 14px;
    padding: 0.8rem;
}

.story-modal-dialog img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 11px;
    border: 1px solid #d8c5a5;
    margin-bottom: 0.64rem;
}

.story-modal-dialog h3 {
    margin-bottom: 0.24rem;
}

.story-modal-dialog p {
    margin-bottom: 0;
}

.story-modal-close {
    position: absolute;
    top: 0.42rem;
    right: 0.45rem;
    border: 1px solid #ccb693;
    background: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
}

.page-hero {
    position: relative;
    padding: 2.1rem 0 1.6rem;
}

.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 14px;
    background: linear-gradient(90deg, transparent 0, var(--gold) 22%, var(--brown) 52%, var(--gold) 80%, transparent 100%);
    opacity: 0.65;
    z-index: -1;
}

.page-hero::before {
    top: 0;
}

.page-hero::after {
    bottom: 0;
}

.home-visuals {
    background: linear-gradient(180deg, #fbf8f1, #f6efdf);
}

.inline-link {
    display: inline-block;
    margin-top: 0.45rem;
    color: #8f6721;
    font-weight: 700;
}

.timeline {
    display: grid;
    gap: 0.52rem;
}

.timeline-step {
    border: 1px solid #dcccb4;
    border-radius: 11px;
    background: #fffefb;
    padding: 0.64rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.timeline-step.active {
    border-color: var(--gold);
    box-shadow: 0 8px 16px rgba(184, 136, 45, 0.2);
}

.timeline-trigger {
    border: none;
    background: none;
    width: 100%;
    padding: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.44rem;
    color: var(--brown);
    font-size: 0.88rem;
    font-weight: 800;
    cursor: pointer;
}

.timeline-trigger span {
    width: 1.33rem;
    height: 1.33rem;
    border-radius: 50%;
    border: 1px solid #d6c197;
    background: #faf4e7;
    display: inline-grid;
    place-items: center;
    color: #886221;
    font-size: 0.72rem;
}

.timeline-step p {
    margin: 0.46rem 0 0;
    font-size: 0.86rem;
}

.map-panel iframe {
    border: 0;
    width: 100%;
    min-height: 250px;
    border-radius: 11px;
}

.contact-form {
    display: grid;
    gap: 0.45rem;
}

.contact-form label {
    font-size: 0.8rem;
    color: var(--brown-soft);
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d8c6aa;
    border-radius: 9px;
    background: #fffdf9;
    color: var(--text);
    padding: 0.56rem 0.62rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 136, 45, 0.18);
}

.small-note {
    font-size: 0.81rem;
    color: #785f43;
}

.alert,
.consent-status {
    border-radius: 10px;
    padding: 0.48rem 0.6rem;
    font-size: 0.84rem;
}

.alert.ok,
.consent-status.ok {
    background: #f8f0e1;
    border: 1px solid #dfbf8c;
    color: #7b5820;
}

.alert.warn,
.consent-status.warn {
    background: #fff1e5;
    border: 1px solid #e4b583;
    color: #8b5520;
}

.success-green {
    background: #e8f7ef !important;
    border: 1px solid #8fcca5 !important;
    color: #166534 !important;
}

.consent-modal {
    position: fixed;
    inset: 0;
    background: rgba(22, 15, 8, 0.58);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 90;
}

.consent-modal.open {
    display: flex;
}

.consent-dialog {
    position: relative;
    width: min(540px, 94vw);
    background: #fffdf9;
    border: 1px solid #dbc8a9;
    border-radius: 12px;
    padding: 0.95rem;
}

.modal-close {
    position: absolute;
    top: 0.4rem;
    right: 0.45rem;
    border: 1px solid #d3c1a3;
    background: #faf4e6;
    border-radius: 7px;
    padding: 0.16rem 0.36rem;
}

.consent-actions,
.cookie-actions {
    display: flex;
    gap: 0.42rem;
    flex-wrap: wrap;
    margin-top: 0.64rem;
}

.consent-actions button,
.cookie-actions button {
    border: 1px solid #cfbc9d;
    border-radius: 999px;
    background: #fff;
    color: var(--brown);
    font-weight: 700;
    padding: 0.33rem 0.68rem;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 5rem;
    width: min(420px, calc(100vw - 2rem));
    border: 1px solid #d7c4a6;
    background: #fffdf8;
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: 0 14px 26px rgba(33, 23, 11, 0.24);
    z-index: 80;
}

.cookie-banner h4 {
    margin-bottom: 0.35rem;
}

.quick-fab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 85;
    width: 58px;
    height: 58px;
}

.fab-items {
    position: absolute;
    right: 0;
    bottom: 0;
}

.fab-toggle,
.fab-item {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #cdaa71;
    background: #fffdf7;
    box-shadow: 0 10px 20px rgba(33, 22, 10, 0.2);
    display: inline-grid;
    place-items: center;
    text-decoration: none;
}

.fab-toggle {
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

.fab-item {
    --offset: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0) scale(0.8);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.quick-fab.open .fab-item {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(calc(var(--offset) * -1px)) scale(1);
}

.fab-phone {
    --offset: 70;
}

.fab-mail {
    --offset: 136;
}

.fab-email {
    --offset: 202;
}

.fab-message {
    --offset: 268;
}

.fab-toggle img,
.fab-item img {
    width: 30px;
    height: 30px;
}

.site-footer {
    margin-top: 1.8rem;
    background: linear-gradient(102deg, #8e6a40, #6f4f2f);
    color: #ead6b6;
    padding: 1.5rem 0;
}

.site-footer h3 {
    color: #f2dfbf;
}

.site-footer p,
.site-footer a {
    color: #dfc8a4;
    margin: 0 0 0.38rem;
}

.developer-credit {
    margin-top: 0.85rem;
    font-size: 0.68rem;
    line-height: 1.35;
    color: rgba(234, 214, 182, 0.72);
    text-align: center;
}

.reveal-item {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready .reveal-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.motion-ready .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1440px) {
    .container {
        width: min(1280px, 93vw);
    }

    .header-shell {
        width: min(1300px, 94vw);
    }

    .brand-logo {
        width: 160px;
    }

    .site-nav a {
        font-size: 0.75rem;
        padding: 0.23rem 0.46rem;
    }
}

@media (max-width: 1024px) {
    .counter-grid,
    .icon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split-grid,
    .map-grid,
    .value-grid,
    .data-grid,
    .team-grid,
    .sector-grid,
    .service-detail-grid,
    .gallery-grid,
    .contact-layout,
    .footer-grid,
    .product-range-grid,
    .policy-grid,
    .product-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-category-head {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 48vh;
    }

    .hero-content {
        max-width: 640px;
    }

    .brand-logo {
        width: 148px;
    }

    .story-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 768px) {
    .header-shell,
    .container {
        width: min(1160px, 94vw);
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        margin: 0;
        background: #fffdf9;
        border: 1px solid #e1cfb1;
        border-top: none;
        border-radius: 0 0 10px 10px;
        padding: 0.55rem;
        box-shadow: 0 10px 20px rgba(34, 23, 11, 0.16);
        z-index: 80;
    }

    .site-nav.open {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .site-nav a {
        text-align: left;
        font-size: 0.8rem;
        padding: 0.32rem 0.58rem;
    }

    .lang-switch {
        margin-left: 0;
    }

    .utility-wrap {
        font-size: 0.66rem;
        min-height: 22px;
    }

    .nav-wrap {
        min-height: 50px;
    }

    .brand-logo {
        width: 128px;
    }

    .counter-grid,
    .icon-grid,
    .split-grid,
    .map-grid,
    .value-grid,
    .data-grid,
    .team-grid,
    .sector-grid,
    .service-detail-grid,
    .gallery-grid,
    .contact-layout,
    .footer-grid,
    .product-range-grid,
    .policy-grid,
    .product-card-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 44vh;
    }

    .hero-content {
        padding: 2.2rem 0;
    }

    .stats-wrap {
        margin-top: -0.42rem;
    }

    .section {
        padding: 1.6rem 0;
    }

    .hero-indicators {
        bottom: 0.75rem;
    }

    .story-rail {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(118px, 1fr);
        overflow-x: auto;
        padding-bottom: 0.2rem;
        scroll-snap-type: x mandatory;
    }

    .story-card {
        scroll-snap-align: start;
    }

    .story-help {
        font-size: 0.74rem;
    }

    .quick-fab {
        right: 0.68rem;
        bottom: 0.68rem;
        width: 52px;
        height: 52px;
    }

    .fab-toggle,
    .fab-item {
        width: 52px;
        height: 52px;
    }

    .fab-toggle img,
    .fab-item img {
        width: 27px;
        height: 27px;
    }

    .fab-phone {
        --offset: 62;
    }

    .fab-mail {
        --offset: 121;
    }

    .fab-email {
        --offset: 180;
    }

    .fab-message {
        --offset: 239;
    }

    .cookie-banner {
        right: 0.68rem;
        left: 0.68rem;
        width: auto;
    }
}

@media (max-width: 390px) {
    .header-shell,
    .container {
        width: 95vw;
    }

    .brand-logo {
        width: 116px;
    }

    .menu-toggle {
        font-size: 0.72rem;
        padding: 0.2rem 0.42rem;
    }

    .utility-wrap {
        font-size: 0.62rem;
    }

    h1 {
        font-size: clamp(1.5rem, 8vw, 1.9rem);
    }

    .hero-content {
        padding: 1.95rem 0;
    }

    .story-rail {
        grid-auto-columns: minmax(106px, 1fr);
        gap: 0.36rem;
    }

    .story-card span {
        font-size: 0.66rem;
    }

    .counter-card,
    .icon-card,
    .panel,
    .value-card,
    .team-card,
    .sector-card,
    .service-card,
    .product-range-card,
    .policy-card,
    .product-item-card {
        padding: 0.74rem;
    }

    .quick-fab {
        right: 0.52rem;
        bottom: 0.52rem;
    }
}

@media (max-width: 360px) {
    .brand-logo {
        width: 108px;
    }

    .utility-wrap {
        font-size: 0.58rem;
        line-height: 1.2;
        padding: 0.18rem 0;
    }

    .nav-wrap {
        gap: 0.35rem;
    }

    .lang-switch select {
        font-size: 0.68rem;
        padding: 0.12rem 0.32rem;
    }

    .hero-actions {
        gap: 0.4rem;
    }

    .btn {
        padding: 0.45rem 0.74rem;
        font-size: 0.78rem;
    }

    .fab-phone {
        --offset: 58;
    }

    .fab-mail {
        --offset: 112;
    }

    .fab-email {
        --offset: 166;
    }

    .fab-message {
        --offset: 220;
    }
}


.header-quote-btn {
    text-decoration: none;
    border: 1px solid #bc8b34;
    background: linear-gradient(140deg, var(--gold), #9d7224);
    color: #fff8ef;
    border-radius: 999px;
    padding: 0.28rem 0.64rem;
    font-size: 0.75rem;
    font-weight: 800;
    margin-left: 0.35rem;
    white-space: nowrap;
}

.product-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.58rem;
}

.product-meta-row.top-gap {
    margin-top: 0.58rem;
}

.manufacturer-logo {
    width: 108px;
    height: 32px;
    object-fit: contain;
    border: 1px solid #ddccaf;
    border-radius: 8px;
    background: #fffdf9;
    padding: 0.14rem;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d4b681;
    background: #fff4df;
    color: #6f4f1d;
    padding: 0.18rem 0.5rem;
    font-size: 0.67rem;
    font-weight: 700;
    white-space: nowrap;
}

.dark-outline {
    border-color: #d4bc95;
    background: #fff9ef;
    color: #5f4529;
    margin-left: 0.35rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.9rem;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    align-content: start;
}

.client-logo-grid img {
    width: 100%;
    border: 1px solid #dcc9a9;
    border-radius: 10px;
    background: #fff;
    padding: 0.2rem;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
}

.case-card {
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    padding: 0.82rem;
}

.case-card p {
    margin-bottom: 0.5rem;
}

.case-result {
    margin-bottom: 0;
    color: #6f4f1d;
}

.testimonial-list {
    display: grid;
    gap: 0.54rem;
}

.testimonial-card {
    margin: 0;
    border: 1px solid #dcc9a9;
    border-radius: 12px;
    background: #fffdf7;
    padding: 0.7rem;
}

.testimonial-card p {
    margin-bottom: 0.4rem;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-size: 0.75rem;
    color: #7a613f;
    font-weight: 700;
}

.quote-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 0.85rem;
}

.quote-step-list {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
}

.quote-form {
    display: grid;
    gap: 0.7rem;
}

.quote-progress {
    font-size: 0.8rem;
    font-weight: 700;
    color: #765627;
}

.quote-step {
    border: 1px solid #dcc8a5;
    border-radius: 12px;
    background: #fffdf8;
    padding: 0.72rem;
    display: none;
    gap: 0.45rem;
}

.quote-step.is-active {
    display: grid;
}

.quote-step label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brown-soft);
}

.quote-step input,
.quote-step select,
.quote-step textarea {
    width: 100%;
    border: 1px solid #d8c6aa;
    border-radius: 9px;
    background: #fff;
    color: var(--text);
    padding: 0.56rem 0.62rem;
    font-family: inherit;
}

.quote-step input:focus,
.quote-step select:focus,
.quote-step textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 136, 45, 0.16);
}

.checkbox-line {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.checkbox-line input {
    width: auto;
}

.quote-actions {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.quote-actions [data-quote-submit] {
    display: none;
}

.quote-actions.is-last [data-quote-next] {
    display: none;
}

.quote-actions.is-last [data-quote-submit] {
    display: inline-block;
}

@media (max-width: 1024px) {
    .trust-strip,
    .quote-layout,
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-quote-btn {
        order: 4;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .client-logo-grid {
        grid-template-columns: 1fr;
    }

    .manufacturer-logo {
        width: 96px;
    }

    .dark-outline {
        margin-left: 0;
        margin-top: 0.4rem;
    }
}

.nav-cta {
    margin-left: 0.35rem;
    padding: 0.32rem 0.72rem;
    font-size: 0.73rem;
    line-height: 1;
    white-space: nowrap;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    margin: 0.56rem 0;
}

.product-links {
    margin-top: 0.5rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.detail-meta {
    margin-top: 0.62rem;
}

.social-proof {
    background: linear-gradient(180deg, #fffaf1, #f9f1e4);
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.55rem;
}

.logo-item {
    border: 1px solid #ddcbab;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.35rem;
    display: grid;
    place-items: center;
}

.logo-item img {
    width: 100%;
    height: 44px;
    object-fit: contain;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.testimonial-card h4 {
    margin: 0;
    color: var(--brown);
    font-size: 0.88rem;
}

.quote-shell {
    max-width: 860px;
    margin: 0 auto;
}

.quote-stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    margin-bottom: 0.72rem;
}

.quote-stepper span {
    display: inline-grid;
    place-items: center;
    height: 34px;
    border-radius: 999px;
    border: 1px solid #d5c29f;
    background: #fff;
    color: #6f5222;
    font-weight: 700;
}

.quote-stepper span.is-active {
    border-color: #bc8b34;
    background: #fff2dd;
}

.quote-stepper span.is-complete {
    border-color: #b98a39;
    background: #edd4a3;
}

.quote-step {
    display: none;
    gap: 0.46rem;
}

.quote-step.is-active {
    display: grid;
}

.quote-actions {
    margin-top: 0.65rem;
}

@media (max-width: 1024px) {
    .case-grid,
    .testimonial-grid,
    .logo-strip,
    .product-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }

    .case-grid,
    .testimonial-grid,
    .logo-strip,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}


.nav-cta {
    text-decoration: none;
    border-radius: 999px;
    padding: 0.3rem 0.66rem;
    font-size: 0.74rem;
    white-space: nowrap;
}

.social-proof .logo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.55rem;
}

.social-proof .logo-item {
    border: 1px solid #dcc9aa;
    border-radius: 10px;
    background: #fff;
    padding: 0.2rem;
}

.social-proof .logo-item img {
    width: 100%;
    display: block;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.82rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
}

.product-meta,
.detail-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin: 0.45rem 0 0.56rem;
}

.product-links {
    margin-top: 0.56rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.82rem;
}

@media (max-width: 1024px) {
    .social-proof .logo-strip,
    .case-grid,
    .testimonial-grid,
    .product-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .social-proof .logo-strip,
    .case-grid,
    .testimonial-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}


.quote-step-markers {
    display: flex;
    gap: 0.35rem;
}

.step-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #d6c39f;
    display: inline-grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #8f6a2a;
    background: #fff;
}

.step-marker.is-active {
    background: #f3deb8;
    border-color: #b8882d;
}

.step-marker.is-complete {
    background: #eed2a0;
    border-color: #a77728;
}

/* Quote wizard polish: smoother transitions + sticky mobile progress */
.quote-progress-head {
    border: 1px solid #deceb2;
    border-radius: 12px;
    background: #fffaf2;
    padding: 0.55rem;
    margin-bottom: 0.8rem;
}

.quote-step-label {
    margin: 0.42rem 0 0;
    font-size: 0.76rem;
    font-weight: 700;
    color: #6f5021;
}

.quote-form {
    position: relative;
}

.quote-form .quote-step {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateX(18px);
    pointer-events: none;
    border: 0;
    padding: 0;
    margin: 0;
    transition: opacity 0.28s ease, transform 0.3s ease, max-height 0.34s ease;
}

.quote-form .quote-step.is-prev {
    transform: translateX(-18px);
}

.quote-form .quote-step.is-active {
    opacity: 1;
    max-height: 1200px;
    transform: translateX(0);
    pointer-events: auto;
    border: 1px solid #dcc8a5;
    border-radius: 12px;
    background: #fffdf8;
    padding: 0.72rem;
    margin-bottom: 0.15rem;
}

.quote-actions {
    justify-content: flex-end;
}

.quote-actions [hidden] {
    display: none !important;
}

@media (max-width: 768px) {
    .quote-progress-head {
        position: sticky;
        top: 78px;
        z-index: 35;
        border-color: #d8c49f;
        background: rgba(255, 250, 242, 0.96);
        backdrop-filter: blur(4px);
        box-shadow: 0 8px 14px rgba(43, 30, 14, 0.12);
        margin-bottom: 0.62rem;
    }

    .quote-stepper {
        gap: 0.35rem;
        margin-bottom: 0.35rem;
    }

    .quote-stepper span {
        height: 30px;
        font-size: 0.78rem;
    }

    .quote-step-label {
        font-size: 0.72rem;
    }

    .quote-actions {
        position: sticky;
        bottom: 0;
        padding-top: 0.4rem;
        background: linear-gradient(180deg, rgba(245, 239, 227, 0), var(--cream) 45%);
    }

    .quote-actions .btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 390px) {
    .quote-progress-head {
        top: 74px;
        padding: 0.46rem;
    }

    .quote-stepper span {
        height: 28px;
        font-size: 0.74rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .quote-form .quote-step {
        transition: none;
    }
}


/* iPhone Safari ergonomics + quote submit visibility fix */
.quote-actions [data-quote-prev],
.quote-actions [data-quote-next],
.quote-actions [data-quote-submit] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.quote-actions [hidden] {
    display: none !important;
}

.quote-stepper span,
.quote-step select,
.quote-step input,
.quote-step textarea,
.quote-actions .btn,
.hero-dot,
.menu-toggle,
.site-nav a {
    min-height: 44px;
}

@media (max-width: 430px) {
    .site-nav a,
    .quote-actions .btn,
    .btn,
    .cookie-actions button,
    .consent-actions button {
        min-height: 46px;
    }

    .quote-shell {
        padding-bottom: calc(0.7rem + env(safe-area-inset-bottom));
    }

    .quote-progress-head {
        top: 70px;
    }

    .quote-actions {
        bottom: 0;
        padding-bottom: max(0.35rem, env(safe-area-inset-bottom));
    }

    .quote-stepper span {
        height: 32px;
    }

    .quick-fab {
        bottom: calc(0.65rem + env(safe-area-inset-bottom));
    }

    .cookie-banner {
        bottom: calc(5rem + env(safe-area-inset-bottom));
    }
}

.quote-form.ios-input-focus .quote-actions {
    position: static;
    background: transparent;
}



.home-essential.section {
    padding: 1.15rem 0;
}

.home-operations.section {
    padding: 1.35rem 0;
}

.home-quick-links.section {
    padding: 1.15rem 0 1.45rem;
}

.home-quick-links .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-quick-links .case-card {
    min-height: 100%;
}

.home-operations .map-panel .btn {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .home-essential.section,
    .home-operations.section,
    .home-quick-links.section {
        padding: 1rem 0;
    }

    .home-quick-links .case-grid {
        grid-template-columns: 1fr;
    }
}



.filter-panel {
    padding: 0.9rem;
}

.product-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
}

.product-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8c6aa;
    border-radius: 999px;
    background: #fffdf9;
    color: #6f4f2f;
    padding: 0.42rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
}

.product-tab.active,
.product-tab:hover {
    background: linear-gradient(140deg, #0f6e92, #0c5876);
    border-color: #0c5876;
    color: #f5fbff;
}

.product-filter-form {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    align-items: center;
}

.product-filter-form input,
.product-filter-form select {
    width: 100%;
    border: 1px solid #d8c6aa;
    border-radius: 9px;
    background: #fffdf9;
    color: var(--text);
    padding: 0.52rem 0.58rem;
    font-family: inherit;
}

.product-filter-form .hero-actions {
    grid-column: 1 / -1;
    margin-top: 0.2rem;
}

.eset-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.72rem;
}

.eset-product-card {
    border: 1px solid #b8d7e6;
    border-radius: 14px;
    background: linear-gradient(160deg, #ffffff, #f4fafe);
    padding: 0.84rem;
}

.eset-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border: 1px solid #d7e7ef;
    border-radius: 12px;
    background: #ffffff;
    padding: 0.45rem;
    margin-bottom: 0.62rem;
}

.eset-product-card h3 {
    margin-bottom: 0.38rem;
}

.eset-product-card p {
    margin-bottom: 0.55rem;
}

.article-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .product-filter-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eset-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .product-filter-form {
        grid-template-columns: 1fr;
    }

    .eset-product-grid {
        grid-template-columns: 1fr;
    }
}



/* Focused Projects + Updates visual polish */
.projects-hero .container,
.updates-hero .container,
.project-detail-hero .container,
.update-detail-hero .container {
    max-width: 840px;
}

.projects-hero p,
.updates-hero p,
.project-detail-hero p,
.update-detail-hero p {
    font-size: 0.98rem;
    line-height: 1.62;
    margin-bottom: 0;
}

.projects-index.section,
.updates-index.section,
.project-detail-section.section,
.update-detail-section.section {
    padding-top: 1.35rem;
}

.project-grid,
.updates-grid {
    gap: 1rem;
}

.project-card,
.update-card {
    padding: 0.78rem;
    display: grid;
    gap: 0.44rem;
}

.project-card h3,
.update-card h3 {
    font-size: clamp(1.06rem, 1.6vw, 1.22rem);
    line-height: 1.3;
    margin-bottom: 0.15rem;
}

.project-card p,
.update-card p {
    margin-bottom: 0.38rem;
    font-size: 0.9rem;
    line-height: 1.55;
}

.project-card .panel-image,
.update-card .panel-image {
    margin-top: 0;
    margin-bottom: 0.18rem;
}

.project-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.project-meta-row .eyebrow {
    margin-bottom: 0;
    font-size: 0.64rem;
}

.project-sector,
.update-date {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #d6be99;
    background: #fbf1df;
    color: #7b5820;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.12rem 0.45rem;
    line-height: 1.15;
}

.update-date {
    width: fit-content;
}

.project-card-foot,
.update-card-foot {
    margin-top: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.project-card-foot .btn,
.update-card-foot .btn {
    padding: 0.43rem 0.8rem;
    font-size: 0.77rem;
}

.project-detail-grid,
.update-detail-grid {
    gap: 1rem;
}

.project-detail-overview,
.project-detail-story,
.update-detail-main,
.update-detail-side {
    padding: 0.95rem;
}

.project-detail-story h2,
.update-detail-side h2 {
    font-size: 1.1rem;
    margin-bottom: 0.34rem;
}

.project-detail-story p,
.update-detail-main .article-content p,
.updates-related-card p {
    font-size: 0.92rem;
    line-height: 1.62;
}

.project-detail-story p {
    margin-bottom: 0.8rem;
}

.updates-related-list {
    gap: 0.46rem;
}

.updates-related-card {
    padding: 0.62rem;
}

.updates-related-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.update-detail-main .article-content {
    margin-top: 0.55rem;
}

.update-detail-main .panel-image,
.project-detail-overview .panel-image {
    margin-top: 0;
    margin-bottom: 0.45rem;
}

@media (max-width: 1024px) {
    .project-card,
    .update-card {
        padding: 0.72rem;
    }

    .project-detail-overview,
    .project-detail-story,
    .update-detail-main,
    .update-detail-side {
        padding: 0.84rem;
    }
}

@media (max-width: 768px) {
    .projects-index.section,
    .updates-index.section,
    .project-detail-section.section,
    .update-detail-section.section {
        padding-top: 1rem;
    }

    .project-card,
    .update-card {
        gap: 0.4rem;
    }

    .project-meta-row {
        align-items: flex-start;
    }

    .project-card-foot,
    .update-card-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-card-foot .btn,
    .update-card-foot .btn {
        width: 100%;
        text-align: center;
    }

    .project-detail-story p {
        margin-bottom: 0.66rem;
    }
}



/* Header redesign pass */
.site-header {
    transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.site-header .header-utility {
    background: linear-gradient(90deg, #281b0d, #3c2812 55%, #281b0d);
    overflow: hidden;
    max-height: 32px;
    opacity: 1;
    transition: max-height 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.24s ease;
}

.site-header .utility-wrap {
    min-height: 24px;
    padding: 0.08rem 0;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    color: #f7e8cc;
    transition: min-height 0.34s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-header .header-main {
    background: rgba(255, 254, 250, 0.97);
    backdrop-filter: saturate(130%) blur(8px);
    border-bottom: 1px solid #e5d3b4;
    box-shadow: 0 8px 16px rgba(39, 27, 12, 0.08);
}

.site-header .nav-wrap {
    min-height: 60px;
    gap: 0.46rem;
}

.site-header .brand {
    margin-right: 0.22rem;
}

.site-header .brand-logo {
    width: clamp(212px, 16vw, 286px);
    max-height: 58px;
    object-fit: contain;
}

.site-header .partner-pill {
    flex: 0 0 auto;
}

.site-header .site-nav {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #e7d6b8;
    border-radius: 999px;
    padding: 0.14rem;
    gap: 0.04rem;
}

.site-header .site-nav a {
    position: relative;
    border-radius: 999px;
    padding: 0.29rem 0.54rem;
    font-size: 0.74rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.015em;
    color: #3a2812;
}

.site-header .site-nav a::after {
    content: '';
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.25rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #b8882d, #8e6622);
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header .site-nav a:hover,
.site-header .site-nav a.active {
    background: #fff8ec;
    border-color: transparent;
    transform: none;
}

.site-header .site-nav a:hover::after,
.site-header .site-nav a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.site-header .nav-mobile-cta {
    display: none;
}

.site-header .lang-switch {
    margin-left: 0.16rem;
}

.site-header .lang-switch select {
    border-radius: 999px;
    padding: 0.24rem 0.54rem;
    font-size: 0.72rem;
    border-color: #d7c29d;
}

.site-header .nav-cta {
    margin-left: 0.22rem;
    padding: 0.36rem 0.8rem;
    font-size: 0.72rem;
    border-radius: 999px;
    box-shadow: 0 6px 12px rgba(62, 43, 19, 0.15);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.44rem;
    margin-left: auto;
    border: 1px solid #d4bf99;
    border-radius: 999px;
    background: #fff8ec;
    color: #3e2b14;
    min-height: 40px;
    padding: 0.24rem 0.62rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-icon {
    width: 18px;
    height: 14px;
    display: inline-grid;
    align-content: space-between;
}

.menu-icon span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: #3e2b14;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active .menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-header.is-utility-hidden .header-utility {
    max-height: 0;
    opacity: 0;
    border-bottom-color: transparent;
    pointer-events: none;
}

.site-header.is-utility-hidden .utility-wrap {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.site-header.is-condensed .header-main {
    box-shadow: 0 6px 13px rgba(39, 27, 12, 0.1);
}

.site-header.is-condensed .nav-wrap {
    min-height: 54px;
}

.site-header.is-condensed .brand-logo {
    width: clamp(198px, 14.8vw, 254px);
    max-height: 52px;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background: rgba(19, 13, 6, 0.34);
    backdrop-filter: blur(2px);
    z-index: 60;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 980px) {
    .site-header .partner-pill {
        display: none;
    }

    .site-header .site-nav a {
        padding: 0.28rem 0.48rem;
        font-size: 0.72rem;
    }

    .site-header .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header .partner-pill {
        display: none;
    }

    .site-header .header-shell,
    .container {
        width: min(1160px, 94vw);
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-header .lang-switch {
        margin-left: 0.08rem;
    }

    .site-header .lang-switch select {
        min-height: 38px;
        padding: 0.2rem 0.44rem;
    }

    .site-header .site-nav {
        position: fixed;
        top: 73px;
        right: 0.55rem;
        left: auto;
        width: min(87vw, 340px);
        max-height: calc(100vh - 94px);
        overflow-y: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding: 0.56rem;
        border-radius: 14px;
        border: 1px solid #e2cdac;
        background: #fffdf9;
        box-shadow: 0 16px 26px rgba(34, 22, 10, 0.2);
        transform: translateY(-8px) scale(0.98);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 80;
    }

    .site-header .site-nav.open {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .site-header .site-nav a {
        text-align: left;
        font-size: 0.84rem;
        min-height: 40px;
        display: flex;
        align-items: center;
        padding: 0.32rem 0.56rem;
    }

    .site-header .site-nav a::after {
        left: 0.56rem;
        right: auto;
        width: 28px;
        bottom: 0.34rem;
        transform-origin: left;
    }

    .site-header .nav-mobile-cta {
        display: inline-flex;
        justify-content: center;
        margin-top: 0.28rem;
        border: 1px solid #b78831;
        background: linear-gradient(140deg, #b8882d, #9d7224);
        color: #fff8ef;
        font-weight: 800;
        font-size: 0.79rem;
        padding: 0.54rem 0.62rem;
    }

    .site-header .nav-mobile-cta::after {
        display: none;
    }

    .site-header .utility-wrap {
        min-height: 24px;
        font-size: 0.64rem;
    }

    .site-header .nav-wrap {
        min-height: 50px;
        gap: 0.34rem;
    }

    .site-header .brand-logo {
        width: 162px;
        max-height: 44px;
    }
}

@media (max-width: 390px) {
    .site-header .brand-logo {
        width: 146px;
        max-height: 40px;
    }

    .menu-toggle {
        min-height: 36px;
        padding: 0.2rem 0.5rem;
        gap: 0.34rem;
    }

    .menu-label {
        font-size: 0.66rem;
    }

    .site-header .lang-switch select {
        font-size: 0.68rem;
        padding: 0.16rem 0.38rem;
    }

    .site-header .site-nav {
        top: 70px;
        right: 0.45rem;
        width: min(89vw, 320px);
    }
}


/* iPhone Safari header ergonomics */
@supports (padding: max(0px)) {
    .site-header {
        padding-top: env(safe-area-inset-top);
    }

    .nav-backdrop {
        top: env(safe-area-inset-top);
    }
}

@media (max-width: 430px) {
    .site-header .nav-wrap {
        padding-left: calc(0.12rem + env(safe-area-inset-left));
        padding-right: calc(0.12rem + env(safe-area-inset-right));
    }

    .site-header .utility-wrap {
        padding-left: calc(0.2rem + env(safe-area-inset-left));
        padding-right: calc(0.2rem + env(safe-area-inset-right));
    }

    .menu-toggle,
    .site-header .site-nav a,
    .site-header .nav-mobile-cta,
    .site-header .lang-switch select {
        min-height: 46px;
    }

    .site-header .site-nav {
        top: calc(68px + env(safe-area-inset-top));
        right: calc(0.45rem + env(safe-area-inset-right));
        left: calc(0.45rem + env(safe-area-inset-left));
        width: auto;
        max-height: calc(100dvh - (88px + env(safe-area-inset-top) + env(safe-area-inset-bottom)));
        padding-bottom: max(0.58rem, env(safe-area-inset-bottom));
    }
}


/* Global reduced-motion guard for accessibility and battery life */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg,
    .hero-panel,
    .story-card,
    .timeline-step,
    .reveal-item,
    .fab-item {
        transform: none !important;
    }
}


/* Safari iPhone media fade tuning */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 430px) {
        html.js img[data-media] {
            transform: none;
            filter: none;
            transition: opacity 0.2s ease-out;
        }

        .hero-bg img {
            transition: transform 2.8s ease;
        }
    }
}


/* Responsive header and navigation line-fit pass */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-header .nav-wrap > * {
    min-width: 0;
}

.site-header .brand-logo {
    object-position: left center;
}

@media (min-width: 1025px) {
    .site-header .header-shell {
        width: calc(100% - 1.4rem);
        max-width: 1440px;
        margin-left: 0.7rem;
        margin-right: 0.7rem;
    }

    .site-header .brand-logo {
        width: clamp(238px, 17.5vw, 322px);
        max-height: 64px;
    }

    .site-header.is-condensed .brand-logo {
        width: clamp(220px, 16vw, 292px);
        max-height: 58px;
    }
}

@media (min-width: 769px) {
    .site-header .nav-wrap {
        flex-wrap: nowrap;
    }

    .site-header .site-nav {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: visible;
    }

    .site-header .site-nav > a {
        white-space: nowrap;
    }

    .site-header .site-nav .nav-mobile-only {
        display: none;
    }

    .site-header .site-nav .nav-more {
        position: relative;
        display: block;
        margin: 0;
    }

    .site-header .site-nav .nav-more > summary {
        list-style: none;
        cursor: pointer;
        border: 1px solid transparent;
        border-radius: 999px;
        padding: 0.29rem 0.54rem;
        font-size: 0.74rem;
        line-height: 1;
        font-weight: 800;
        letter-spacing: 0.015em;
        color: #3a2812;
        transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .site-header .site-nav .nav-more > summary::-webkit-details-marker {
        display: none;
    }

    .site-header .site-nav .nav-more > summary::marker {
        content: '';
    }

    .site-header .site-nav .nav-more > summary::after {
        content: ' \25BE';
        font-size: 0.66rem;
        margin-left: 0.2rem;
    }

    .site-header .site-nav .nav-more[open] > summary,
    .site-header .site-nav .nav-more > summary:hover,
    .site-header .site-nav .nav-more > summary.active {
        background: #fff8ec;
        border-color: #d6c39f;
    }

    .site-header .site-nav .nav-more-menu {
        position: absolute;
        right: 0;
        top: calc(100% + 0.45rem);
        min-width: 180px;
        display: none;
        gap: 0.2rem;
        border: 1px solid #e2cdac;
        border-radius: 12px;
        background: #fffdf9;
        padding: 0.42rem;
        box-shadow: 0 16px 26px rgba(34, 22, 10, 0.2);
        z-index: 90;
    }

    .site-header .site-nav .nav-more[open] .nav-more-menu {
        display: grid;
    }

    .site-header .site-nav .nav-more-menu a {
        display: flex;
        align-items: center;
        min-height: 36px;
        border-radius: 9px;
        padding: 0.24rem 0.5rem;
        text-decoration: none;
        font-size: 0.78rem;
        font-weight: 700;
    }

    .site-header .site-nav .nav-more-menu a:hover,
    .site-header .site-nav .nav-more-menu a.active {
        background: #faf3e6;
    }
}

@media (max-width: 1280px) and (min-width: 769px) {
    .site-header .partner-pill {
        display: none;
    }
}

@media (max-width: 1120px) and (min-width: 769px) {
    .site-header .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header .site-nav .nav-more {
        display: none;
    }

    .site-header .site-nav .nav-mobile-only {
        display: flex;
    }

    .site-header .brand-logo {
        width: 162px;
        max-height: 46px;
    }

    .counter-grid,
    .icon-grid,
    .value-grid,
    .data-grid,
    .policy-grid,
    .team-grid,
    .contact-layout,
    .sector-grid,
    .gallery-grid,
    .product-card-grid,
    .service-detail-grid,
    .product-range-grid,
    .split-grid,
    .map-grid,
    .footer-grid,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-category-head {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 390px) {
    .site-header .brand-logo {
        width: 152px;
        max-height: 42px;
    }
}


/* Logo visibility and repeat branding pass */
.site-header .brand-logo {
    width: clamp(250px, 15vw, 350px);
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 6px 14px rgba(47, 33, 18, 0.18));
}

.site-header.is-condensed .brand-logo {
    width: clamp(250px, 18vw, 340px);
    max-height: none;
}

@media (max-width: 1600px) and (min-width: 769px) {
    .site-header .partner-pill {
        display: none;
    }
}

@media (max-width: 1280px) and (min-width: 769px) {
    .site-header .brand-logo {
        width: clamp(236px, 21vw, 304px);
    }

    .site-header.is-condensed .brand-logo {
        width: clamp(216px, 19vw, 280px);
    }
}

@media (max-width: 768px) {
    .site-header .brand-logo {
        width: 178px;
        max-height: none;
    }
}

@media (max-width: 390px) {
    .site-header .brand-logo {
        width: 162px;
    }
}

.page-hero .container {
    position: relative;
    padding-right: min(20vw, 210px);
}

.page-hero .container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: clamp(120px, 14vw, 210px);
    aspect-ratio: 565 / 260;
    transform: translateY(-50%);
    background: url('../img/logo-main-clear.png') center / contain no-repeat;
    opacity: 0.2;
    pointer-events: none;
}

.hero-content::before {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 0.2rem;
    width: clamp(120px, 16vw, 210px);
    aspect-ratio: 565 / 260;
    background: url('../img/logo-main-clear.png') center / contain no-repeat;
    opacity: 0.18;
    pointer-events: none;
}

.eset-more-info {
    margin-top: 0.35rem;
    margin-bottom: 0;
    font-size: 0.93rem;
    color: var(--eset-ink);
    font-weight: 700;
}

.eset-more-info a {
    color: var(--eset-blue);
    text-decoration: none;
}

.eset-more-info a:hover {
    text-decoration: underline;
}

.eset-product-card h3 {
    min-height: 3.2rem;
    margin-bottom: 0.5rem;
}

.eset-product-card > p:not(.price-segment) {
    min-height: 4.4rem;
}

.eset-product-card .list-clean {
    margin: 0.2rem 0 0;
    min-height: 6.7rem;
}

.eset-product-card .list-clean li {
    margin-bottom: 0.42rem;
}

.eset-product-image {
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: linear-gradient(180deg, #f4fbfe, #ffffff);
    padding: 0.65rem;
}

.footer-brand-logo {
    width: min(240px, 100%);
    height: auto;
    display: block;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.24));
}

@media (max-width: 900px) {
    .page-hero .container {
        padding-right: 0;
    }

    .page-hero .container::after,
    .hero-content::before {
        display: none;
    }
}
