@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #171a1d;
  --ink-2: #23282d;
  --paper: #f5f3ee;
  --white: #fff;
  --muted: #666d72;
  --line: #d9d8d3;
  --orange: #eb651e;
  --orange-dark: #c84b0b;
  --green: #169c5b;
  --paper-2: #ebe8e1;
  --shell: min(1240px, calc(100% - 40px));
  --shadow: 0 20px 55px rgba(13, 16, 18, .14);
  --shadow-soft: 0 10px 32px rgba(13, 16, 18, .08);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
main { isolation: isolate; }
img { display: block; max-width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
:where(h1, h2, h3) { text-wrap: balance; overflow-wrap: break-word; }
:focus-visible { outline: 3px solid rgba(235, 101, 30, .55); outline-offset: 3px; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: #fff; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.utility-bar { background: #101214; color: #dfe1e2; font-size: .76rem; letter-spacing: .025em; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.utility-address { min-width: 0; display: inline-flex; align-items: center; gap: 7px; color: #dfe1e2; }
.utility-address:hover { color: var(--orange); }
.utility-address svg { width: 14px; height: 14px; flex: 0 0 14px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.address-full { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.address-short { display: none; }
.utility-actions { display: flex; align-items: center; gap: 22px; }
.utility-actions a { display: inline-flex; align-items: center; gap: 7px; }
.utility-actions a:hover { color: var(--orange); }
.utility-actions svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.utility-actions a:first-child svg { fill: currentColor; stroke: none; }

.site-header { position: sticky; top: 0; z-index: 300; background: rgba(23, 26, 29, .97); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 10px 35px rgba(0,0,0,.08); transition: box-shadow .22s ease, background-color .22s ease; }
.site-header.is-compact { background: rgba(23, 26, 29, .985); box-shadow: 0 1px 0 rgba(255,255,255,.08), 0 12px 30px rgba(0,0,0,.18); }
.nav-sticky { position: relative; backdrop-filter: blur(14px); }
.main-nav { min-height: 90px; display: grid; grid-template-columns: 1fr 220px 1fr; align-items: center; position: relative; transition: min-height .22s ease; }
.site-header.is-compact .main-nav { min-height: 70px; }
.desktop-links { min-width: 0; display: flex; align-items: center; gap: clamp(15px, 2vw, 30px); }
.right-zone { min-width: 0; display: flex; align-items: center; justify-content: flex-end; gap: 15px; }
.right-links { justify-content: flex-end; flex: 1; }
.desktop-links a { position: relative; padding: 34px 0; color: #dfe1e2; font-size: .72rem; font-weight: 750; letter-spacing: .075em; text-transform: uppercase; white-space: nowrap; transition: color .2s ease, padding .22s ease; }
.desktop-links a::after { content: ""; position: absolute; left: 0; bottom: 24px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
.site-header.is-compact .desktop-links > a { padding-block: 24px; }
.site-header.is-compact .desktop-links > a::after { bottom: 17px; }
.desktop-links a:hover, .desktop-links a.active { color: #fff; }
.desktop-links a:hover::after, .desktop-links a.active::after { width: 100%; }
.nav-dropdown { position: relative; align-self: stretch; display: flex; align-items: center; }
.nav-dropdown > summary { position: relative; display: flex; align-items: center; gap: 6px; padding: 34px 0; color: #dfe1e2; font-size: .72rem; font-weight: 750; letter-spacing: .075em; text-transform: uppercase; white-space: nowrap; list-style: none; cursor: pointer; transition: color .2s ease, padding .22s ease; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::before { content: ""; position: absolute; left: 0; bottom: 24px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
.site-header.is-compact .nav-dropdown > summary { padding-block: 24px; }
.site-header.is-compact .nav-dropdown > summary::before { bottom: 17px; }
.nav-dropdown > summary::after { content: ""; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s ease; }
.nav-dropdown[open] > summary::after { transform: translateY(2px) rotate(225deg); }
.nav-dropdown:hover > summary, .nav-dropdown[open] > summary, .nav-dropdown.active > summary { color: #fff; }
.nav-dropdown:hover > summary::before, .nav-dropdown[open] > summary::before, .nav-dropdown.active > summary::before { width: 100%; }
.nav-dropdown-menu { position: absolute; z-index: 360; top: calc(100% - 8px); left: -16px; width: 200px; padding: 10px; overflow: hidden; border: 1px solid #3b4044; border-top: 2px solid var(--orange); border-radius: 10px; background: #202428; box-shadow: 0 24px 55px rgba(0,0,0,.38); animation: dropdown-in .16s ease-out; }
.corporate-dropdown .nav-dropdown-menu { right: -16px; left: auto; }
.desktop-links .nav-dropdown-menu a { display: flex; min-height: 36px; align-items: center; padding: 4px 8px; border-radius: 7px; color: #fff; font-size: .75rem; font-weight: 720; text-transform: none; white-space: normal; transition: background .18s ease, color .18s ease, padding .18s ease; }
.desktop-links .nav-dropdown-menu a::after { display: none; }
.desktop-links .nav-dropdown-menu a:hover, .desktop-links .nav-dropdown-menu a.active { padding-left: 12px; background: #2c3135; color: #fff; }
.desktop-links .nav-dropdown-menu a.active { border-left: 3px solid var(--orange); }
@keyframes dropdown-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
.brand { display: flex; align-items: center; justify-content: center; }
.brand-logo { display: block; width: 148px; height: 72px; object-fit: cover; object-position: center 44%; border-radius: var(--radius); transition: width .22s ease, height .22s ease; }
.site-header.is-compact .brand-logo { width: 112px; height: 56px; }
.nav-actions { display: flex; align-items: center; gap: 7px; flex: 0 0 auto; }
.nav-actions button, .language-picker > summary { width: 38px; height: 38px; border: 1px solid #4b5054; border-radius: 50%; background: transparent; color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.nav-actions button:hover, .language-picker > summary:hover { border-color: var(--orange); color: var(--orange); }
.nav-actions svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.language-picker { position: relative; }
.language-picker > summary { width: auto; min-width: 58px; border-radius: 99px; gap: 5px; padding: 0 9px; font-size: .65rem; font-weight: 800; list-style: none; }
.language-picker > summary::-webkit-details-marker { display: none; }
.language-picker > summary svg { width: 15px; }
.language-menu { position: absolute; top: calc(100% + 12px); right: 0; z-index: 70; width: 180px; padding: 7px; border: 1px solid #3b4044; background: #202428; box-shadow: 0 18px 45px rgba(0,0,0,.3); }
.language-menu::before { content: ""; position: absolute; right: 18px; top: -7px; width: 12px; height: 12px; border: 1px solid #3b4044; border-right: 0; border-bottom: 0; background: #202428; transform: rotate(45deg); }
.language-menu a { position: relative; display: flex; align-items: center; gap: 10px; min-height: 42px; padding: 7px 10px; color: #e4e6e7; font-size: .76rem; }
.language-menu a span { width: 27px; color: #8e969c; font-size: .62rem; font-weight: 850; letter-spacing: .08em; }
.language-menu a:hover, .language-menu a.active { background: #2c3135; color: #fff; }
.language-menu a.active::after { content: ""; margin-left: auto; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.menu-toggle { display: none; }
.mobile-drawer, .drawer-scrim { display: none; }

.nav-search-panel { position: absolute; z-index: 320; top: 100%; left: 0; width: 100%; background: #202428; border-top: 1px solid #393e42; box-shadow: 0 20px 35px rgba(0,0,0,.25); }
.nav-search-panel[hidden] { display: none; }
.nav-search-panel form { padding-block: 18px 22px; }
.nav-search-panel label { display: block; margin-bottom: 8px; color: #cfd2d4; font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.nav-search-panel form > div { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; }
.nav-search-panel input { min-width: 0; height: 48px; border: 1px solid #555b60; background: #fff; padding: 0 15px; color: var(--ink); }
.nav-search-panel button[type="submit"] { min-width: 88px; border: 0; background: var(--orange); color: #fff; padding-inline: 18px; font-weight: 800; cursor: pointer; }
.nav-search-close { width: 48px; border: 1px solid #555b60; background: transparent; color: #fff; font-size: 1.65rem; cursor: pointer; }

.hero-carousel { position: relative; height: clamp(620px, 72vh, 760px); overflow: hidden; background: var(--ink); color: #fff; }
.hero-track, .hero-slide { width: 100%; height: 100%; }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity .65s ease, visibility .65s; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide > picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide > picture img { width: 100%; height: 100%; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 76% 46%, rgba(235,101,30,.08), transparent 28%), linear-gradient(90deg, rgba(10,12,14,.94) 0%, rgba(10,12,14,.7) 49%, rgba(10,12,14,.22) 100%); }
.hero-content { position: relative; z-index: 2; padding-block: 72px; }
.hero-content::before { content: ""; position: absolute; left: -25px; top: 78px; width: 2px; height: 86px; background: linear-gradient(var(--orange) 0 34%, rgba(255,255,255,.2) 34% 100%); }
.eyebrow { display: inline-block; margin-bottom: 16px; color: #ff8848; font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.dark { color: var(--orange); }
.hero-content h1, .hero-slide-heading { max-width: 850px; margin: 0 0 24px; font-size: clamp(3.1rem, 5.6vw, 5.9rem); line-height: .98; letter-spacing: -.055em; }
.hero-content > p { max-width: 670px; margin: 0 0 30px; color: #d7dadb; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.carousel-arrow { position: absolute; z-index: 4; top: 50%; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(16,18,20,.48); color: #fff; display: grid; place-items: center; font-size: 2rem; cursor: pointer; transform: translateY(-50%); }
.carousel-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-prev { left: max(16px, calc((100vw - 1380px) / 2)); }
.hero-next { right: max(16px, calc((100vw - 1380px) / 2)); }
.hero-dots { position: absolute; z-index: 5; left: 50%; bottom: 24px; display: flex; gap: 9px; transform: translateX(-50%); }
.hero-dots button { width: 30px; height: 4px; border: 0; background: rgba(255,255,255,.45); padding: 0; cursor: pointer; }
.hero-dots button.active { width: 48px; background: var(--orange); }

.references-strip { overflow: hidden; padding: 34px 0 40px; border-bottom: 1px solid var(--line); background: #fff; }
.references-strip-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.references-strip-head .eyebrow { margin-bottom: 7px; }
.references-strip-head h2 { margin: 0; font-size: clamp(1.65rem, 2.5vw, 2.45rem); line-height: 1.05; letter-spacing: -.04em; }
.references-strip-head > a { color: var(--orange); font-size: .75rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.reference-marquee { width: var(--shell); margin-inline: auto; overflow: hidden; direction: ltr; container-type: inline-size; --reference-gap: 16px; --reference-width: calc((100cqw - (5 * var(--reference-gap))) / 6); }
.reference-track { display: flex; gap: var(--reference-gap); width: max-content; animation: reference-scroll 34s linear infinite; will-change: transform; }
.reference-marquee:hover .reference-track, .reference-marquee:focus-within .reference-track { animation-play-state: paused; }
.reference-logo { flex: 0 0 var(--reference-width); width: var(--reference-width); height: 112px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid #e4e3de; background: #fff; filter: grayscale(.15); transition: border-color .2s ease, filter .2s ease, transform .2s ease; }
.reference-logo:hover { border-color: rgba(235,101,30,.65); filter: grayscale(0); transform: translateY(-2px); }
.reference-logo img { flex: 0 1 auto; width: auto; height: auto; max-width: calc(100% - 36px); max-height: calc(100% - 28px); margin: auto; padding: 0; object-fit: contain; object-position: center center; }
@keyframes reference-scroll {
  to { transform: translateX(calc(-1 * var(--reference-count) * (var(--reference-width) + var(--reference-gap)))); }
}
.references-page-hero { padding: 84px 0 76px; background: var(--ink); color: #fff; }
.references-page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(3.2rem, 7vw, 6.6rem); line-height: .96; letter-spacing: -.055em; }
.references-page-hero p { max-width: 720px; margin: 23px 0 0; color: #cfd2d4; font-size: 1.05rem; }
.reference-directory { padding-bottom: 46px; }
.reference-directory .section-heading > strong { flex: 0 0 auto; padding: 9px 13px; border: 1px solid var(--line); color: var(--muted); font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.reference-directory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.reference-directory-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-soft); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.reference-directory-card:hover { border-color: rgba(235,101,30,.65); box-shadow: var(--shadow); transform: translateY(-4px); }
.reference-directory-card img { width: 100%; height: 170px; border-bottom: 1px solid #eceae5; object-fit: contain; object-position: center center; padding: 23px; background: #fff; }
.reference-directory-card h3 { margin: 0; padding: 17px 18px 8px; font-size: 1rem; }
.reference-directory-card > span { margin-top: auto; padding: 0 18px 17px; color: var(--orange); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.reference-contact { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.reference-contact h2 { max-width: 760px; margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1.04; letter-spacing: -.045em; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: var(--radius); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button.primary { background: var(--orange); color: #fff; }
.button.primary:hover, .whatsapp-button:hover { background: var(--orange-dark); transform: translateY(-2px); }
.button.ghost { border-color: #818588; color: #fff; }
.button.ghost:hover { background: #fff; color: var(--ink); }
.dark-button { background: var(--ink); color: #fff; }
.light-button { background: #fff; color: var(--ink); }
.whatsapp-button { background: var(--green); color: #fff; }
.outline-button { border-color: #909396; color: var(--ink); }
.outline-button:hover { border-color: var(--ink); }

.section { padding: 72px 0; }
.section-heading { margin-bottom: 34px; }
.section-heading h2, .about-copy h2, .about-intro h2, .story-copy h2, .about-location h2, .prose-grid h2 { max-width: 840px; margin: 0; font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.06; letter-spacing: -.045em; }
.section-heading > p { max-width: 660px; margin: 16px 0 0; color: var(--muted); }
.section-heading .eyebrow::before, .about-copy > .eyebrow::before, .about-intro .eyebrow::before, .story-copy .eyebrow::before, .about-location .eyebrow::before { content: ""; width: 28px; height: 2px; display: inline-block; margin: 0 10px 3px 0; background: currentColor; }
.section-heading.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.compact-heading { margin-bottom: 28px; }
.text-link { color: var(--orange); font-size: .82rem; font-weight: 800; white-space: nowrap; }

.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.35); box-shadow: var(--shadow-soft); }
.service-card { position: relative; min-width: 0; min-height: 190px; overflow: hidden; padding: 25px 28px; display: grid; grid-template-columns: 1fr auto; grid-template-rows: 1fr auto; column-gap: 20px; border-right: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.8), rgba(255,255,255,.3)); transition: background .25s ease, color .25s ease, transform .25s ease; }
.service-card::after { content: ""; position: absolute; inset: 0 auto auto 0; width: 0; height: 3px; background: var(--orange); transition: width .25s ease; }
.service-card:last-child { border-right: 0; }
.service-card h3 { grid-column: 1; align-self: end; margin: 0 0 8px; font-size: 1.55rem; line-height: 1.1; }
.service-card p { grid-column: 1; margin: 0; color: var(--muted); font-size: .92rem; }
.service-card b { grid-column: 2; grid-row: 1 / -1; align-self: end; color: var(--orange); font-size: 1.4rem; }
.service-card:hover { z-index: 2; background: #fff; transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::after { width: 100%; }

.dark-section { background-color: var(--ink); background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 44px 44px; color: #fff; }
.dark-section .section-heading h2 { color: #fff; }
.featured-section { overflow: hidden; }
.product-carousel { position: relative; max-width: 100%; min-width: 0; --visible: 5; --gap: 14px; }
.product-carousel-viewport { overflow: hidden; max-width: 100%; min-width: 0; margin-top: -8px; padding-top: 8px; contain: layout paint; }
.product-carousel-track { display: flex; gap: var(--gap); will-change: transform; }
.product-carousel-track > .product-card { flex: 0 0 calc((100% - (var(--visible) - 1) * var(--gap)) / var(--visible)); min-width: 0; }
.product-carousel-arrow { position: absolute; top: 43%; z-index: 4; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--orange); color: #fff; font-size: 1.8rem; cursor: pointer; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.product-carousel-arrow.prev { left: -21px; }
.product-carousel-arrow.next { right: -21px; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-grid.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.catalog-products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card { position: relative; min-width: 0; overflow: visible; border-radius: var(--radius); background: #24282c; border: 1px solid #393e42; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.product-card:hover { z-index: 8; transform: translateY(-6px); border-color: rgba(235,101,30,.65); box-shadow: var(--shadow); }
.product-card.light-card { background: #fff; border-color: var(--line); box-shadow: 0 7px 24px rgba(13,16,18,.055); }
.product-image { position: relative; height: 225px; border-radius: 7px 7px 0 0; background-color: #fff; background-image: linear-gradient(rgba(23,26,29,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(23,26,29,.035) 1px, transparent 1px); background-size: 20px 20px; display: block; overflow: hidden; }
.product-image::after { content: ""; position: absolute; left: 0; bottom: 0; width: 38px; height: 3px; background: var(--orange); transition: width .25s ease; }
.product-card:hover .product-image::after { width: 100%; }
.compact .product-image { height: 210px; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .3s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-body { min-width: 0; padding: 18px; }
.product-body > span, .product-code-link { display: inline-flex; padding: 4px 7px; border-radius: 5px; background: rgba(235,101,30,.1); color: var(--orange); font-size: .64rem; font-weight: 800; letter-spacing: .09em; }
.product-code-link:hover { background: var(--orange); color: #fff; }
.product-body h2, .product-body h3 { min-height: 2.8em; margin: 7px 0 17px; font-size: .95rem; line-height: 1.4; overflow-wrap: anywhere; }
.product-body h2 a:hover, .product-body h3 a:hover { color: var(--orange); }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.support-menu { position: relative; min-width: 0; }
.support-menu summary, .card-detail { min-height: 41px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--orange); border-radius: var(--radius); color: var(--orange); font-size: .66rem; font-weight: 800; letter-spacing: .025em; text-transform: uppercase; cursor: pointer; list-style: none; text-align: center; transition: background .2s ease, color .2s ease, box-shadow .2s ease; }
.support-menu summary::-webkit-details-marker { display: none; }
.card-detail { background: var(--orange); color: #fff; }
.card-detail:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.support-menu summary:hover { background: rgba(235,101,30,.08); }
.support-menu > div { position: absolute; z-index: 15; left: 0; right: 0; bottom: calc(100% + 8px); min-width: 164px; padding: 7px; border-radius: var(--radius); background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(13,16,18,.22); }
.support-menu > div a { display: flex; align-items: center; gap: 8px; min-height: 39px; padding: 7px 9px; border-radius: 6px; font-size: .72rem; font-weight: 750; }
.support-menu > div a::before { width: 25px; height: 25px; flex: 0 0 25px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: .68rem; font-weight: 900; }
.support-menu > div a[href*="wa.me"]::before { content: "W"; background: var(--green); }
.support-menu > div a[href^="tel:"]::before { content: "☎"; background: var(--ink); }
.support-menu > div a:hover { background: #f0eee8; color: var(--orange); }

.about-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 68px; align-items: center; }
.about-image { min-width: 0; height: 560px; position: relative; }
.about-image::after { content: ""; position: absolute; inset: 20px -20px -20px 20px; border: 2px solid var(--orange); z-index: -1; }
.about-image::before { content: ""; position: absolute; z-index: 2; right: -20px; top: 34px; width: 52px; height: 52px; background: var(--orange); clip-path: polygon(0 0, 100% 0, 100% 100%); }
.about-image img { width: 100%; height: 100%; }
.about-copy { min-width: 0; }
.about-copy > p { color: var(--muted); font-size: 1.02rem; }
.about-copy ul { list-style: none; padding: 0; margin: 26px 0; }
.about-copy li { position: relative; padding: 11px 0 11px 27px; border-bottom: 1px solid var(--line); }
.about-copy li::before { content: ""; position: absolute; left: 0; top: 19px; width: 8px; height: 8px; background: var(--orange); }
.cta-band { position: relative; overflow: hidden; background: var(--orange); color: #fff; padding: 50px 0; }
.cta-band::after { content: ""; position: absolute; inset: -80% -5% auto auto; width: 42%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.25); transform: rotate(18deg); }
.cta-band .shell { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.cta-band span { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.cta-band h2 { margin: 7px 0 0; font-size: clamp(1.9rem, 3.5vw, 2.35rem); line-height: 1; }

.page-hero { height: 460px; position: relative; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.service-page-hero { height: 500px; }
.page-hero > picture { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero > picture img { width: 100%; height: 100%; transform: scale(1.012); }
.service-page-hero > picture img { object-position: center 42%; }
.page-hero .shell { position: relative; padding: 0 0 55px 24px; border-left: 2px solid var(--orange); }
.page-hero h1, .catalog-head h1, .legal-hero h1 { margin: 0; font-size: clamp(3rem, 5.8vw, 5.4rem); line-height: .98; letter-spacing: -.052em; }
.page-hero p { margin-bottom: 0; color: #ddd; font-size: 1.05rem; }

.about-intro, .prose-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 72px; }
.prose { min-width: 0; }
.prose p { margin: 0 0 22px; color: var(--muted); font-size: 1.05rem; }
.soft-section { background: #eae8e2; }
.about-story { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 62px; align-items: center; }
.story-image { height: 460px; min-width: 0; }
.story-image img { width: 100%; height: 100%; }
.story-copy { min-width: 0; }
.story-copy p, .about-location p { color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.process-grid > div { min-width: 0; padding: 28px 30px 0 0; margin-right: 30px; border-right: 1px solid var(--line); }
.process-grid > div:last-child { border: 0; margin-right: 0; }
.process-grid h3 { margin: 0 0 8px; font-size: 1.35rem; }
.process-grid p { margin: 0; color: var(--muted); }
.about-services { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; }
.about-service-links { border-top: 1px solid #3d4246; }
.about-service-links a { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 22px 0; border-bottom: 1px solid #3d4246; }
.about-service-links strong { font-size: 1.15rem; }
.about-service-links b { color: var(--orange); }
.about-location { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 62px; align-items: center; }
.about-location > div { min-width: 0; }
.about-location > img { width: 100%; height: 390px; }

.service-lead { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
.service-lead h2, .service-detail-lead h2, .service-contact-panel h2, .mission-intro h2, .mission-vision-grid h2, .mixer-check-copy h2, .service-maintenance-grid h2, .service-process-compact h2 { margin: 0; font-size: clamp(2rem, 3.7vw, 3.55rem); line-height: 1.06; letter-spacing: -.045em; }
.service-inline-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.technical-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.technical-service-card { min-width: 0; min-height: 330px; padding: 28px; border: 1px solid #d7d4cd; border-radius: var(--radius); background: rgba(255,255,255,.7); box-shadow: var(--shadow-soft); }
.technical-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 45px; border-radius: var(--radius); background: var(--ink); color: var(--orange); }
.technical-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.technical-service-card:nth-child(2) .technical-icon svg { fill: currentColor; stroke: none; }
.technical-service-card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.technical-service-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.service-gallery-section { padding-top: 0; }
.service-gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 190px; gap: 12px; }
.service-gallery-item { position: relative; min-width: 0; min-height: 0; grid-column: span 4; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--ink); box-shadow: var(--shadow-soft); }
.service-gallery-feature { grid-column: span 7; grid-row: span 2; }
.service-gallery-item:nth-child(2), .service-gallery-item:nth-child(3) { grid-column: span 5; }
.service-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,12,14,.82), transparent 58%); pointer-events: none; }
.service-gallery-item:hover img { transform: scale(1.025); }
.service-gallery-item figcaption { position: absolute; z-index: 1; right: 17px; bottom: 14px; left: 17px; color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.equipment-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.equipment-service-card { position: relative; min-width: 0; height: 440px; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: #fff; box-shadow: var(--shadow-soft); }
.equipment-service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,12,14,.94), rgba(10,12,14,.08) 68%); }
.equipment-service-card img { width: 100%; height: 100%; transition: transform .45s ease; }
.equipment-service-card:hover img { transform: scale(1.035); }
.equipment-service-card > span { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7px 16px; }
.equipment-service-card small { grid-column: 1 / -1; color: #ff955d; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.equipment-service-card strong { max-width: 480px; font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.1; }
.equipment-service-card b { color: var(--orange); font-size: 1.6rem; }
.home-equipment-services .equipment-service-card { height: 390px; }
.service-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #3d4246; }
.service-process-grid article { min-width: 0; padding: 25px 24px 0 0; border-right: 1px solid #3d4246; }
.service-process-grid article + article { padding-left: 24px; }
.service-process-grid article:last-child { border-right: 0; }
.service-process-grid h3 { margin: 0 0 10px; font-size: 1.12rem; }
.service-process-grid p { margin: 0; color: #bfc4c7; font-size: .86rem; }
.service-contact-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: end; }
.service-contact-panel > div:first-child { max-width: 850px; }
.service-contact-panel p { color: var(--muted); }
.service-contact-actions { min-width: 210px; display: flex; flex-direction: column; gap: 9px; align-items: stretch; }
.service-contact-actions .text-link { padding-top: 8px; text-align: center; }
.service-detail-intro { padding-top: 38px; }
.service-detail-intro .breadcrumbs { margin-bottom: 42px; }
.service-detail-lead { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 68px; align-items: start; }
.service-detail-lead > p { margin: 33px 0 0; color: var(--muted); font-size: 1.03rem; }
.technical-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.technical-card-grid.mixer-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.technical-card-grid > article { min-width: 0; padding: 29px; border: 1px solid #d5d2cb; border-radius: var(--radius); background: #fff; }
.technical-card-grid h2 { margin: 0 0 14px; font-size: 1.42rem; line-height: 1.15; }
.technical-card-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.symptom-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.symptom-grid > div { min-width: 0; display: grid; grid-template-columns: 11px 1fr; gap: 12px; align-items: start; padding: 19px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.symptom-grid span { width: 9px; height: 9px; margin-top: 7px; border: 2px solid var(--orange); border-radius: 50%; }
.symptom-grid p { margin: 0; font-size: .86rem; }
.service-maintenance-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 70px; align-items: start; }
.service-maintenance-grid p { margin-top: 33px; color: #cbd0d2; }
.service-safety-note { margin-top: 22px; padding: 17px 19px; border-left: 3px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; background: rgba(235,101,30,.1); color: inherit; font-size: .82rem; }
.mixer-check-section { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 60px; align-items: center; }
.mixer-check-image { min-width: 0; height: 570px; overflow: hidden; border-radius: var(--radius); }
.mixer-check-image img { width: 100%; height: 100%; }
.mixer-check-copy { min-width: 0; }
.service-check-list { list-style: none; margin: 28px 0 0; padding: 0; }
.service-check-list li { position: relative; padding: 11px 0 11px 26px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.service-check-list li::before { content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 8px; background: var(--orange); }
.service-process-compact { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 70px; align-items: start; }
.service-process-compact ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid #3d4246; }
.service-process-compact li { padding: 17px 0; border-bottom: 1px solid #3d4246; color: #d7dadb; font-size: .9rem; }
.mission-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: start; }
.mission-intro > p { margin: 35px 0 0; color: var(--muted); font-size: 1.02rem; }
.mission-vision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.mission-vision-grid article { min-width: 0; min-height: 390px; padding: 34px; border: 1px solid #d4d1c9; border-radius: var(--radius); background: #fff; }
.mission-vision-grid .vision-card { background: var(--ink); color: #fff; }
.mission-vision-grid article > span { color: var(--orange); font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.mission-vision-grid h2 { margin-top: 55px; font-size: clamp(1.85rem, 3vw, 3rem); }
.mission-vision-grid p { color: var(--muted); }
.mission-vision-grid .vision-card p { color: #c9ced0; }
.principles-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.principles-grid article { min-width: 0; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.principles-grid h3 { margin: 0 0 9px; font-size: 1.04rem; line-height: 1.25; }
.principles-grid p { margin: 0; color: var(--muted); font-size: .82rem; }

.catalog-head { position: relative; overflow: hidden; background-color: var(--ink); background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px); background-size: 42px 42px; color: #fff; padding: 58px 0 62px; }
.catalog-head::after { content: ""; position: absolute; width: 340px; height: 340px; right: -115px; bottom: -210px; border: 70px solid rgba(235,101,30,.08); border-radius: 50%; }
.catalog-head .shell { position: relative; z-index: 1; }
.catalog-head p { max-width: 720px; color: #c7cbcd; }
.catalog-search { max-width: 760px; display: flex; margin-top: 29px; padding: 5px; background: #fff; box-shadow: 0 18px 45px rgba(0,0,0,.24); }
.catalog-search input { flex: 1; min-width: 0; height: 52px; padding: 0 17px; border: 0; outline: 0; }
.catalog-search:focus-within { box-shadow: 0 0 0 3px rgba(235,101,30,.45), 0 18px 45px rgba(0,0,0,.24); }
.catalog-search button { min-width: 92px; border: 0; background: var(--orange); color: #fff; padding: 0 24px; font-weight: 800; cursor: pointer; }
.catalog-search button:hover { background: var(--orange-dark); }
.catalog-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 38px; align-items: start; }
.catalog-sidebar { position: sticky; top: 108px; background: #fff; border: 1px solid var(--line); padding: 11px; box-shadow: var(--shadow-soft); }
.sidebar-title { padding: 14px; }
.sidebar-title h2 { margin: 0; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.filter-close { display: none; }
.catalog-sidebar > a { display: flex; justify-content: space-between; gap: 10px; padding: 11px 12px; border-top: 1px solid #ecebe7; font-size: .76rem; transition: background .18s ease, color .18s ease, padding .18s ease; }
.catalog-sidebar > a span { color: var(--muted); }
.catalog-sidebar > a:hover, .catalog-sidebar > a.active { background: var(--ink); color: #fff; }
.catalog-sidebar > a:hover { padding-left: 16px; }
.catalog-sidebar > a.active span { color: #fff; }
.catalog-content { min-width: 0; }
.results-bar { min-width: 0; display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.results-bar p { min-width: 0; overflow-wrap: anywhere; }
.results-bar a { color: var(--orange); font-size: .77rem; font-weight: 750; white-space: nowrap; }
.results-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; margin-left: auto; }
.filter-toggle { display: none; }
.pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.pagination a { width: 36px; height: 36px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); font-size: .78rem; }
.pagination a.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.pagination .page-arrow { font-size: 1.3rem; }
.compact-pagination { flex-wrap: nowrap; justify-content: flex-end; margin-top: 0; }
.compact-pagination a { width: 32px; height: 32px; }
.pagination-ellipsis { width: 18px; height: 32px; display: grid; place-items: center; color: var(--muted); font-size: .8rem; }
.empty-state { margin-bottom: 25px; padding: 52px 26px; border: 1px dashed #bbb; text-align: center; }
.empty-state h2 { margin: 0; font-size: 1.8rem; }

.breadcrumbs { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; color: var(--muted); font-size: .74rem; }
.breadcrumbs a:hover { color: var(--orange); }
.product-detail { padding-top: 38px; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 60px; }
.detail-image { min-width: 0; min-height: 520px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); }
.detail-image img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.detail-copy { min-width: 0; padding-top: 20px; }
.product-code { color: var(--orange); font-weight: 800; letter-spacing: .14em; }
.detail-copy h1, .listing-info h1 { margin: 15px 0 20px; font-size: clamp(2.25rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -.045em; overflow-wrap: anywhere; }
.detail-copy > p, .listing-info > p { color: var(--muted); font-size: 1.02rem; }
.category-pill { display: inline-block; padding: 6px 10px; border: 1px solid var(--line); font-size: .72rem; }
.detail-support { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 25px 0 0; }
.detail-support > span { width: 100%; color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.detail-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.fine-print { font-size: .76rem !important; }

.listing-empty { max-width: 780px; margin-inline: auto; }
.listing-empty > span { width: 66px; height: 66px; display: inline-grid; place-items: center; border: 2px solid var(--orange); color: var(--orange); font-size: 1.4rem; font-weight: 900; }
.listing-empty div { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.listing-card { min-width: 0; background: #fff; border: 1px solid var(--line); box-shadow: 0 8px 26px rgba(13,16,18,.06); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.listing-card:hover { transform: translateY(-6px); border-color: rgba(235,101,30,.55); box-shadow: var(--shadow); }
.listing-card > a { height: 270px; display: block; overflow: hidden; }
.listing-card img { width: 100%; height: 100%; transition: transform .3s ease; }
.listing-card:hover img { transform: scale(1.045); }
.listing-card > div { padding: 21px; }
.listing-labels { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.listing-labels span { color: var(--orange); font-size: .68rem; font-weight: 800; }
.listing-labels em { padding: 4px 7px; background: #fff1e9; color: var(--orange-dark); font-size: .62rem; font-style: normal; font-weight: 800; text-transform: uppercase; }
.listing-card h2 { min-height: 2.7em; margin: 12px 0 18px; font-size: 1.2rem; line-height: 1.35; overflow-wrap: anywhere; }
.listing-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 40px; align-items: start; }
.listing-gallery { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.listing-gallery a:first-child { grid-column: 1 / -1; }
.listing-gallery img { width: 100%; height: 310px; }
.listing-gallery a:first-child img { height: 520px; }
.listing-info { position: sticky; top: 118px; min-width: 0; padding: 30px; background: #fff; border: 1px solid var(--line); }
.listing-info .button { width: 100%; }
.sample-notice { display: flex; flex-direction: column; margin-bottom: 18px; padding: 12px 14px; background: #fff1e9; border-left: 3px solid var(--orange); }
.sample-notice strong { color: var(--orange-dark); font-size: .76rem; text-transform: uppercase; }
.sample-notice span { color: var(--muted); font-size: .74rem; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 60px; }
.contact-panel h2 { margin: 0 0 18px; font-size: clamp(2.3rem, 4vw, 3.1rem); line-height: 1.05; }
.contact-panel p { color: var(--muted); }
.contact-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.contact-details > div { display: flex; flex-direction: column; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--orange); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong, .contact-details a { font-size: 1rem; overflow-wrap: anywhere; }
.map-section iframe { display: block; width: 100%; height: 440px; border: 0; filter: grayscale(1) contrast(.95); }

.legal-hero { padding: 68px 0; background: var(--ink); color: #fff; }
.legal-hero p { margin: 14px 0 0; color: #c7cbcd; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 55px; align-items: start; }
.legal-nav { position: sticky; top: 118px; display: flex; flex-direction: column; padding: 10px; background: #fff; border: 1px solid var(--line); }
.legal-nav a { padding: 11px 12px; border-bottom: 1px solid #ecebe7; font-size: .78rem; font-weight: 700; }
.legal-nav a.active { background: var(--ink); color: #fff; }
.legal-content { max-width: 820px; min-width: 0; }
.legal-content h2 { margin: 0 0 10px; padding-top: 26px; font-size: 1.55rem; }
.legal-content h2:first-child { padding-top: 0; }
.legal-content p { margin: 0; color: var(--muted); }
.legal-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 36px; padding: 22px; background: #eae8e2; }
.legal-contact a { color: var(--orange); font-weight: 800; }

.status-page { min-height: 62vh; display: grid; align-items: center; padding: 70px 0; }
.status-card { display: grid; grid-template-columns: auto minmax(0, 650px); justify-content: center; align-items: center; gap: 55px; }
.status-code { color: transparent; font-size: clamp(7rem, 17vw, 14rem); font-weight: 800; line-height: .8; -webkit-text-stroke: 2px var(--orange); }
.status-card h1 { margin: 0 0 16px; font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.08; }
.status-card p { color: var(--muted); }
.status-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 25px; }

.floating-actions { position: fixed; right: 16px; bottom: 18px; z-index: 45; display: flex; flex-direction: column; gap: 8px; }
.floating-actions a { position: relative; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.28); transition: transform .2s ease; }
.floating-actions a::before { content: attr(data-label); position: absolute; right: calc(100% + 10px); padding: 7px 10px; border-radius: var(--radius); background: var(--ink); color: #fff; font-size: .66rem; font-weight: 800; white-space: nowrap; opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.floating-actions a:hover { transform: translateY(-2px); }
.floating-actions a:hover::before, .floating-actions a:focus-visible::before { opacity: 1; transform: none; }
.floating-actions svg { width: 25px; height: 25px; }
.float-call { background: var(--orange); }
.float-call svg { fill: currentColor; }
.float-whatsapp { background: var(--green); }
.float-whatsapp svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.site-footer { position: relative; padding: 68px 0 17px; background: #101214; color: #c9ccce; }
.footer-grid { display: grid; grid-template-columns: 1.15fr 1.45fr 1fr; gap: 46px; }
.footer-grid > div { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.footer-navigation { display: grid !important; grid-template-columns: 1fr 1fr; gap: 34px; }
.footer-navigation > div { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; }
.footer-grid h2 { margin-top: 0; color: #fff; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid p { max-width: 360px; }
.footer-grid a:not(.brand) { padding: 4px 0; font-size: .82rem; }
.footer-grid a:not(.brand):hover { color: var(--orange); }
.footer-instagram { width: 38px; height: 38px; display: grid !important; place-items: center; margin: 7px 0; padding: 0 !important; border: 1px solid #4d5256; border-radius: var(--radius); }
.footer-instagram svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { color: var(--orange); }

.scroll-top { position: fixed; z-index: 44; right: 18px; bottom: 132px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); background: var(--ink); color: #fff; box-shadow: var(--shadow-soft); opacity: 0; visibility: hidden; transform: translateY(10px); cursor: pointer; transition: opacity .2s ease, visibility .2s, transform .2s ease, background .2s ease; }
.scroll-top.visible { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--orange); }
.scroll-top svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.footer-brand { justify-content: flex-start; width: fit-content; margin-bottom: 13px; color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 15px; border-top: 1px solid #303438; }
.footer-bottom a { font-size: .72rem; }
address { font-style: normal; overflow-wrap: anywhere; }

@media (max-width: 1120px) {
  .main-nav { grid-template-columns: 1fr 185px 1fr; }
  .brand-logo { width: 165px; height: 64px; }
  .desktop-links { gap: 13px; }
  .desktop-links a { font-size: .64rem; }
  .nav-dropdown > summary { font-size: .64rem; }
  .product-carousel { --visible: 3; }
  .catalog-products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 28px, 760px); }
  .product-carousel-arrow.prev { left: 6px; }
  .product-carousel-arrow.next { right: 6px; }
  .address-full { display: none; }
  .address-short { display: inline; white-space: nowrap; }
  .main-nav { min-height: 78px; display: flex; justify-content: space-between; }
  .site-header.is-compact .main-nav { min-height: 66px; }
  .desktop-links { display: none; }
  .main-nav > .brand { position: absolute; left: 50%; transform: translateX(-50%); }
  .brand-logo { width: 150px; height: 58px; }
  .site-header.is-compact .brand-logo { width: 126px; height: 48px; }
  .menu-toggle { display: flex; background: none; border: 0; color: #fff; flex-direction: column; gap: 4px; padding: 8px 0; align-items: flex-start; cursor: pointer; }
  .menu-toggle span { display: block; width: 23px; height: 2px; background: #fff; }
  .menu-toggle b { font-size: .52rem; text-transform: uppercase; }
  .right-zone { margin-left: auto; }
  .nav-search-panel form { padding-block: 14px 18px; }
  .mobile-drawer { position: fixed; z-index: 350; inset: 0 auto 0 0; width: min(360px, 88vw); display: flex; flex-direction: column; padding: 20px; background: #171a1d; transform: translateX(-105%); transition: transform .25s ease; overflow-y: auto; }
  .mobile-drawer.open { transform: none; }
  .mobile-drawer[hidden] { display: none; }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid #3a3e41; }
  .menu-close { border: 0; background: none; color: #fff; font-size: 2rem; }
  .mobile-drawer > a { padding: 13px 4px; border-bottom: 1px solid #303438; font-size: .875rem; font-weight: 700; }
  .mobile-drawer > a.active { padding-left: 13px; border-left: 3px solid var(--orange); background: rgba(255,255,255,.04); color: #fff; }
  .drawer-group { border-bottom: 1px solid #303438; }
  .drawer-group > summary { position: relative; padding: 13px 25px 13px 4px; font-size: .875rem; font-weight: 750; list-style: none; cursor: pointer; }
  .drawer-group > summary::-webkit-details-marker { display: none; }
  .drawer-group > summary::after { content: "+"; position: absolute; right: 5px; top: 10px; color: var(--orange); font-size: 1.15rem; }
  .drawer-group[open] > summary::after { content: "−"; }
  .drawer-group > div { display: flex; flex-direction: column; margin: 0 0 9px 8px; padding-left: 10px; border-left: 1px solid #3d4246; }
  .drawer-group > div a { padding: 9px 10px; color: #cfd2d4; font-size: .75rem; }
  .drawer-group > div a.active { border-radius: 6px; background: rgba(235,101,30,.12); color: #fff; }
  .drawer-languages { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 16px; }
  .drawer-languages a { min-height: 40px; display: grid; place-items: center; border: 1px solid #3b4044; color: #dfe1e2; font-size: .72rem; }
  .drawer-languages a.active { border-color: var(--orange); background: rgba(235,101,30,.1); color: #fff; }
  .mobile-drawer .drawer-call { margin-top: 18px; background: var(--orange); text-align: center; }
  .drawer-scrim { position: fixed; z-index: 340; inset: 0; display: block; background: rgba(0,0,0,.62); }
  .drawer-scrim[hidden] { display: none; }
  .hero-carousel { height: 620px; }
  .hero-content::before { left: 0; top: 72px; }
  .hero-content h1, .hero-slide-heading { font-size: clamp(2.65rem, 7.4vw, 4.2rem); }
  .carousel-arrow { top: auto; bottom: 18px; transform: none; }
  .hero-prev { left: 14px; }
  .hero-next { right: 14px; }
  .hero-dots { bottom: 38px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 170px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-split, .about-intro, .prose-grid, .about-story, .about-services, .about-location, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-lead, .service-detail-lead, .service-maintenance-grid, .mixer-check-section, .service-process-compact, .mission-intro { grid-template-columns: 1fr; gap: 38px; }
  .technical-service-grid, .technical-card-grid, .symptom-grid { grid-template-columns: 1fr; }
  .service-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 220px; }
  .service-gallery-item, .service-gallery-item:nth-child(2), .service-gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
  .service-gallery-feature, .service-gallery-item:last-child { grid-column: span 2; }
  .technical-card-grid.mixer-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-process-grid article:nth-child(2) { border-right: 0; }
  .service-process-grid article:nth-child(n+3) { margin-top: 25px; padding-top: 25px; border-top: 1px solid #3d4246; }
  .service-contact-panel { grid-template-columns: 1fr; gap: 28px; }
  .service-contact-actions { min-width: 0; flex-direction: row; flex-wrap: wrap; }
  .service-contact-actions .text-link { width: 100%; text-align: left; }
  .mixer-check-image { height: 460px; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-image { height: 470px; }
  .about-image::after { right: 0; }
  .about-image::before { right: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid > div { margin: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .about-services { gap: 18px; }
  .about-location > img { height: 360px; }
  .catalog-layout, .legal-layout { display: block; }
  .catalog-sidebar { position: fixed; z-index: 90; inset: 0 auto 0 0; width: min(360px, 90vw); display: flex; flex-direction: column; transform: translateX(-105%); transition: transform .25s ease; overflow: auto; }
  .catalog-sidebar.open { transform: none; }
  .filter-toggle { display: block; width: 100%; margin-bottom: 18px; padding: 13px; border: 0; background: var(--ink); color: #fff; font-size: .78rem; font-weight: 700; }
  .filter-close { display: block; border: 0; background: none; font-size: 2rem; }
  .sidebar-title { display: flex; align-items: center; justify-content: space-between; }
  .sidebar-title h2 { font-size: .78rem; }
  .catalog-sidebar > a { font-size: .72rem; }
  .catalog-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-grid, .listing-detail-grid { grid-template-columns: 1fr; }
  .listing-info { position: static; }
  .listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-nav { position: static; margin-bottom: 35px; }
  .footer-grid { grid-template-columns: 1fr 1.5fr; }
  .footer-about { grid-column: 1 / -1; }
  .reference-marquee { --reference-gap: 12px; --reference-width: calc((100cqw - (3 * var(--reference-gap))) / 4); }
  .reference-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 24px); }
  body { font-size: .95rem; }
  .main-nav > .brand { left: 15%; max-width: 80%; margin-top: -12px; transform: none; }
  .main-nav > .brand .brand-logo { width: 7rem; height: 3.5rem; }
  .site-header.is-compact .main-nav > .brand { margin-top: -8px; }
  .site-header.is-compact .main-nav > .brand .brand-logo { width: 6.25rem; height: 3rem; }
  .cta-band .shell { align-items: flex-start; flex-direction: column; }
  .utility-actions { gap: 13px; }
  .utility-address { max-width: 42%; font-size: .66rem; }
  .utility-address svg { display: none; }
  .utility-actions > a:first-child span { font-size: .7rem; }
  .main-nav { min-height: 76px; }
  .site-header.is-compact .main-nav { min-height: 64px; }
  .nav-actions button { width: 34px; height: 34px; }
  .language-picker > summary { min-width: 45px; height: 34px; padding-inline: 7px; }
  .language-picker > summary svg { display: none; }
  .language-menu { right: -2px; width: 166px; }
  .nav-search-panel form > div { grid-template-columns: 1fr auto; }
  .nav-search-close { grid-column: 2; grid-row: 1; width: 42px; }
  .nav-search-panel button[type="submit"] { grid-column: 1 / -1; min-height: 44px; }
  .section { padding: 42px 0; }
  .section-heading { margin-bottom: 22px; }
  .section-heading.split { align-items: flex-start; flex-direction: column; gap: 13px; }
  .section-heading h2, .about-copy h2, .about-intro h2, .story-copy h2, .about-location h2, .prose-grid h2 {
    font-size: clamp(1.65rem, 7vw, 1.95rem);
    line-height: 1.12;
    letter-spacing: -.035em;
  }
  .section-heading > p { margin-top: 12px; font-size: .93rem; line-height: 1.52; }
  .prose p, .about-copy > p, .service-detail-lead > p, .mission-intro > p {
    font-size: .95rem;
    line-height: 1.55;
  }
  .prose p { margin-bottom: 18px; }
  .service-detail-lead > p, .mission-intro > p { margin-top: 22px; }
  .hero-carousel { height: 600px; }
  .hero-content { padding-block: 42px 74px; }
  .hero-content::before { display: none; }
  .hero-content .eyebrow { margin-bottom: 12px; font-size: .64rem; }
  .hero-content h1, .hero-slide-heading {
    margin-bottom: 17px;
    font-size: clamp(2.05rem, 9.2vw, 2.6rem);
    line-height: 1.04;
    letter-spacing: -.04em;
  }
  .hero-content > p { margin-bottom: 23px; font-size: .91rem; line-height: 1.5; }
  .hero-actions .button { width: 100%; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 1.55rem; }
  .hero-dots { bottom: 34px; }
  .references-strip { padding: 27px 0 31px; }
  .references-strip-head { align-items: flex-start; flex-direction: column; gap: 8px; margin-bottom: 15px; }
  .references-strip-head h2 { font-size: clamp(1.4rem, 6.2vw, 1.65rem); line-height: 1.12; }
  .references-strip-head > a { margin-top: 0; font-size: .64rem; }
  .reference-marquee { --reference-gap: 10px; --reference-width: calc((100cqw - (2 * var(--reference-gap))) / 3); }
  .reference-logo { height: 88px; }
  .reference-logo img { max-width: calc(100% - 24px); max-height: calc(100% - 20px); }
  .references-page-hero { padding: 50px 0 46px; }
  .references-page-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.45rem);
    line-height: 1.04;
    letter-spacing: -.04em;
    overflow-wrap: break-word;
  }
  .references-page-hero p { margin-top: 16px; font-size: .94rem; line-height: 1.52; }
  .reference-directory { padding-top: 48px; }
  .reference-directory .section-heading { align-items: flex-start; }
  .reference-directory-card img { height: 130px; padding: 16px; }
  .reference-directory-card h3 { padding: 13px 13px 6px; font-size: .82rem; }
  .reference-directory-card > span { padding: 0 13px 13px; font-size: .6rem; }
  .reference-contact { align-items: flex-start; flex-direction: column; }
  .reference-contact h2 { font-size: clamp(1.7rem, 7.4vw, 2rem); line-height: 1.1; letter-spacing: -.035em; }
  .service-card { min-height: 138px; padding: 20px 18px; }
  .service-card h3 { margin-top: 0; font-size: 1.2rem; line-height: 1.24; }
  .product-carousel { --visible: 2; --gap: 10px; }
  .product-carousel-arrow { top: -48px; width: 36px; height: 36px; }
  .product-carousel-arrow.prev { left: auto; right: 43px; }
  .product-carousel-arrow.next { right: 0; }
  .product-image, .compact .product-image { height: 180px; }
  .product-body { padding: 13px; }
  .product-body h2, .product-body h3 {
    display: -webkit-box;
    margin-bottom: 13px;
    font-size: .78rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .card-actions { grid-template-columns: 1fr; }
  .support-menu summary, .card-detail { min-height: 36px; font-size: .6rem; }
  .about-split { gap: 46px; }
  .about-image { height: 390px; }
  .about-image::after { inset: 12px -8px -12px 8px; }
  .story-image, .about-location > img { height: 300px; }
  .page-hero { height: 340px; }
  .service-page-hero { height: 370px; }
  .page-hero .shell { padding: 0 0 32px 14px; }
  .page-hero h1, .catalog-head h1, .legal-hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.45rem);
    line-height: 1.04;
    letter-spacing: -.04em;
    overflow-wrap: break-word;
  }
  .page-hero p { margin-top: 11px; font-size: .93rem; line-height: 1.5; }
  .service-lead h2, .service-detail-lead h2, .service-contact-panel h2, .mission-intro h2, .mission-vision-grid h2, .mixer-check-copy h2, .service-maintenance-grid h2, .service-process-compact h2 {
    font-size: clamp(1.52rem, 6.6vw, 1.82rem);
    line-height: 1.12;
    letter-spacing: -.032em;
    overflow-wrap: break-word;
  }
  .technical-service-card { min-height: 0; padding: 22px; }
  .technical-icon { margin-bottom: 20px; }
  .technical-service-card h3, .process-grid h3 { font-size: 1.18rem; line-height: 1.25; }
  .service-gallery-grid { grid-auto-rows: 165px; gap: 8px; }
  .service-gallery-item figcaption { right: 11px; bottom: 10px; left: 11px; font-size: .6rem; }
  .about-service-links strong { font-size: 1.04rem; line-height: 1.3; }
  .equipment-service-grid { grid-template-columns: 1fr; }
  .equipment-service-card { height: 330px; }
  .home-equipment-services .equipment-service-card { height: 330px; }
  .equipment-service-card strong { font-size: 1.2rem; line-height: 1.18; }
  .service-process-grid { grid-template-columns: 1fr; }
  .service-process-grid article, .service-process-grid article + article { margin-top: 0; padding: 20px 0; border-top: 0; border-right: 0; border-bottom: 1px solid #3d4246; }
  .service-process-grid article:last-child { border-bottom: 0; }
  .service-process-grid h3 { margin-top: 0; font-size: 1.04rem; line-height: 1.25; }
  .technical-card-grid.mixer-cards { grid-template-columns: 1fr; }
  .technical-card-grid > article { padding: 22px; }
  .technical-card-grid h2 { font-size: 1.2rem; line-height: 1.22; }
  .symptom-grid > div { padding: 15px; }
  .mixer-check-image { height: 330px; }
  .service-contact-actions { flex-direction: column; }
  .service-contact-actions .button { width: 100%; }
  .mission-vision-grid article { min-height: 0; padding: 24px; }
  .mission-vision-grid h2 { margin-top: 25px; }
  .principles-grid { grid-template-columns: 1fr; }
  .catalog-head, .legal-hero { padding: 45px 0; }
  .catalog-search { flex-direction: column; gap: 7px; }
  .catalog-search input, .catalog-search button { width: 100%; height: 49px; }
  .results-bar { align-items: flex-start; flex-direction: column; gap: 0; padding-bottom: 12px; }
  .results-actions { width: 100%; justify-content: space-between; margin-left: 0; }
  .catalog-products { gap: 10px; }
  .catalog-products .product-image { height: 165px; }
  .catalog-products .product-body { padding: 11px; }
  .catalog-products .product-body h2 { min-height: 4.2em; font-size: .78rem; }
  .detail-image { min-height: 360px; }
  .detail-copy h1, .listing-info h1 { font-size: clamp(1.85rem, 7.2vw, 2.1rem); line-height: 1.08; overflow-wrap: break-word; }
  .detail-copy > p, .listing-info > p { font-size: .95rem; line-height: 1.55; }
  .detail-actions .button, .contact-actions .button { width: 100%; }
  .listing-grid { grid-template-columns: 1fr; }
  .listing-card h2 { min-height: auto; font-size: 1.05rem; line-height: 1.35; }
  .listing-gallery { grid-template-columns: 1fr; }
  .listing-gallery a:first-child { grid-column: auto; }
  .listing-gallery img, .listing-gallery a:first-child img { height: 330px; }
  .listing-card > a { height: 250px; }
  .contact-actions { flex-direction: column; }
  .contact-panel h2 { font-size: clamp(1.7rem, 7.3vw, 1.95rem); line-height: 1.12; }
  .map-section iframe { height: 360px; }
  .status-card { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .status-code { font-size: 6.7rem; }
  .status-card h1, .empty-state h1, .empty-state h2 { font-size: 1.7rem; line-height: 1.15; }
  .status-actions { justify-content: center; }
  .legal-content h2 { font-size: 1.3rem; line-height: 1.25; }
  .cta-band h2 { font-size: clamp(1.55rem, 6.6vw, 1.82rem); line-height: 1.1; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .floating-actions { right: 10px; bottom: 11px; }
  .floating-actions a { width: 45px; height: 45px; }
  .floating-actions a::before { display: none; }
  .floating-actions svg { width: 22px; height: 22px; }
  .scroll-top { right: 11px; bottom: 116px; width: 42px; height: 42px; }
}

[dir="rtl"] .desktop-links,
[dir="rtl"] .hero-content,
[dir="rtl"] .references-strip-head,
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .language-menu { right: auto; left: 0; }
[dir="rtl"] .language-menu::before { right: auto; left: 18px; }
[dir="rtl"] .language-menu a.active::after { margin-left: 0; margin-right: auto; }
[dir="rtl"] .section-heading .eyebrow::before,
[dir="rtl"] .about-copy > .eyebrow::before,
[dir="rtl"] .about-intro .eyebrow::before,
[dir="rtl"] .story-copy .eyebrow::before,
[dir="rtl"] .about-location .eyebrow::before { margin: 0 0 3px 10px; }
[dir="rtl"] .floating-actions { right: auto; left: 16px; }
[dir="rtl"] .floating-actions a::before { right: auto; left: calc(100% + 10px); }
[dir="rtl"] .utility-actions a { direction: ltr; }

@media (max-width: 340px) {
  .catalog-products, .product-grid { grid-template-columns: 1fr; }
  .catalog-products .product-body h2 { min-height: auto; font-size: .85rem; }
  .reference-directory-grid { grid-template-columns: 1fr; }
  .catalog-products .product-image { height: 230px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
