:root {
    --ww-red: #d91313;
    --ww-red-dark: #b70e0e;
    --ww-ink: #222222;
    --ww-body: #555555;
    --ww-muted: #767676;
    --ww-line: #e5e5e5;
    --ww-soft: #f0f0f0;
    --ww-product: #f8f8f8;
    --ww-white: #ffffff;
    --ww-container: 1170px;
    --ww-touch-target: 44px;
    --ww-focus: 0 0 0 3px rgba(217, 19, 19, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ww-body);
    background: var(--ww-white);
    font-family: "Open Sans", "Noto Sans Thai", Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow-x: hidden;
    overflow-y: auto;
}

.header-device-mobile {
    display: none !important;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 0;
    box-shadow: var(--ww-focus);
}

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

.ww-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 200;
    padding: 8px 14px;
    color: var(--ww-white);
    background: var(--ww-red);
    transform: translateY(-150%);
}

.ww-skip-link:focus {
    transform: translateY(0);
}

.ww-site-header {
    background: var(--ww-white);
}

.ww-brand-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 148px;
}

.ww-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--ww-ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.ww-logo-image {
    width: 200px;
    height: 80px;
    object-fit: contain;
}

.ww-logo-mark {
    position: relative;
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 7px;
    place-items: center;
    color: var(--ww-red);
    border: 6px solid var(--ww-red);
    border-radius: 50%;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.ww-logo-mark::after {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 12px;
    content: "";
    background: var(--ww-white);
}

.ww-desktop-language {
    position: absolute;
    top: 48px;
    right: 0;
    display: inline-flex;
    align-items: center;
}

.ww-mobile-language,
.ww-mobile-language-section,
.ww-mobile-header-controls {
    display: none;
}

.ww-language {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    align-items: center;
    color: var(--ww-body);
    font-size: 14px;
    font-weight: 600;
}

.ww-language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: 168px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: var(--ww-heading);
    background: var(--ww-white);
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 160ms ease-out, box-shadow 160ms ease-out;
}

.ww-language-toggle::after {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-left: auto;
    content: "";
    background: none;
    border-right: 2px solid #374151;
    border-bottom: 2px solid #374151;
    transform: rotate(45deg);
    transition: transform 160ms ease-out;
}

.ww-language-name {
    white-space: nowrap;
}

.ww-language-toggle[aria-expanded="true"] {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.ww-language-toggle[aria-expanded="true"]::after {
    transform: rotate(225deg);
}

.ww-language-toggle:focus-visible {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.35);
}

.ww-language-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 20;
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    margin: 0;
    list-style: none;
    background: var(--ww-white);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    transform-origin: top right;
    animation: ww-language-menu-in 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ww-language-menu[hidden] {
    display: none;
}

.ww-language-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: var(--ww-touch-target);
    padding: 7px 10px;
    border-radius: 6px;
    color: var(--ww-heading);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 140ms ease-out, color 140ms ease-out;
}

.ww-language-menu a:hover,
.ww-language-menu a:focus-visible {
    color: #111827;
    background: #f3f4f6;
    outline: 0;
}

.ww-flag {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

@keyframes ww-language-menu-in {
    from {
        opacity: 0;
        transform: translateY(-4px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ww-language-page-out {
    to {
        opacity: 0.82;
        transform: translateY(-3px);
    }
}

@keyframes ww-language-page-in {
    from {
        opacity: 0.82;
        transform: translateY(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html.ww-language-leaving body {
    animation: ww-language-page-out 140ms cubic-bezier(0.25, 1, 0.5, 1);
}

html.ww-language-entering body {
    animation: ww-language-page-in 220ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ww-nav-wrap {
    min-height: 60px;
    background: var(--ww-red);
}

.ww-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.ww-main-nav ul {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ww-main-nav a {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 0 20px;
    color: var(--ww-white);
    font-size: 15px;
    font-weight: 700;
    transition: background-color 180ms ease-out;
}

.ww-main-nav a:hover,
.ww-main-nav a[aria-current="page"] {
    background: var(--ww-red-dark);
}

.ww-menu-toggle {
    display: none;
}

.ww-main {
    min-height: 55vh;
}

.ww-page-shell {
    padding: 92px 0 108px;
}

.ww-page-shell:has([data-product-page]) {
    padding-top: 0;
    padding-bottom: 0;
}

[data-product-page] > nav[aria-label="Breadcrumb"] {
    padding-top: clamp(20px, 3vw, 32px);
}

.ww-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 38px;
    padding: 0;
    color: var(--ww-muted);
    list-style: none;
    font-size: 14px;
}

.ww-breadcrumb li + li::before {
    margin-right: 10px;
    color: #b8b8b8;
    content: "»";
}

.ww-breadcrumb [aria-current="page"] {
    color: var(--ww-ink);
    font-weight: 600;
}

.ww-page-title,
.ww-section-title {
    margin: 0;
    color: var(--ww-ink);
    font-weight: 700;
    line-height: 1.3;
    text-wrap: balance;
}

.ww-page-title {
    margin-bottom: 42px;
    font-size: clamp(28px, 2.3vw, 36px);
}

.ww-section-title {
    font-size: clamp(28px, 2.15vw, 36px);
    text-align: center;
}

.ww-section-title--accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.ww-section-title--accent::before,
.ww-section-title--accent::after {
    width: 40px;
    height: 2px;
    content: "";
    background: var(--ww-red);
}

.ww-section-heading {
    margin-bottom: 54px;
}

html.ww-motion-enabled [data-reveal] {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 260ms ease-out, transform 260ms ease-out;
}

html.ww-motion-enabled [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.ww-section {
    padding: 70px 0;
}

.ww-section--soft {
    background: var(--ww-soft);
}

.ww-hero {
    position: relative;
    width: 100%;
    height: min(44.33vw, 760px);
    min-height: 430px;
    overflow: hidden;
    background: #e8e8e8;
}

.ww-hero--achievement {
    margin-bottom: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Home hero keeps the 2910x1290 slide ratio on desktop instead of being
   clamped to 760px, which cropped the banner on displays wider than 1714px.
   The ratio comes from the element's own width so the slide always fills the
   full viewport width with no side bands. The slides keep the inherited
   object-fit: cover so a slide whose own height is off by a few pixels
   (slide1.webp is 2910x1284) still covers the box instead of leaving a white
   hairline against the header. */
@media (min-width: 992px) {
    .ww-home-hero {
        height: auto;
        aspect-ratio: 2910 / 1290;
        min-height: 0;
        max-height: none;
        background: var(--ww-white);
    }
}

.ww-featured-slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: transparent;
}

.ww-featured-slider .ww-slides {
    position: relative;
    inset: auto;
    height: auto;
}

.ww-featured-slider .ww-slide {
    position: relative;
    inset: auto;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: opacity 500ms ease-out;
}

.ww-featured-slider .ww-slide.is-active {
    position: relative;
    height: auto;
    overflow: visible;
    visibility: visible;
    opacity: 1;
}

.ww-featured-slider .ww-slider-dots {
    bottom: -50px;
}

.ww-featured-slider .ww-slider-dots button::before {
    background: rgba(0, 0, 0, 0.22);
}

.ww-featured-slider .ww-slider-dots button.is-active::before {
    background: var(--ww-red);
}

.ww-featured-slider .ww-slider-dots button:nth-child(n+4) {
    display: none;
}

.ww-featured-slider .ww-slider-arrow {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ww-featured-slider .ww-slider-arrow--prev {
    left: -58px;
}

.ww-featured-slider .ww-slider-arrow--next {
    right: -58px;
}

.ww-slides,
.ww-slide {
    position: absolute;
    inset: 0;
}

.ww-slide {
    margin: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 700ms ease-out, visibility 700ms;
}

.ww-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.ww-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ww-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0 0 5px;
    color: var(--ww-ink);
    background: rgba(255, 255, 255, 0.9);
    border: 0;
    border-radius: 50%;
    place-items: center;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 180ms ease-out, background-color 180ms ease-out;
}

.ww-slider-arrow--prev {
    left: 24px;
    padding-bottom: 10px;
}

.ww-slider-arrow--next {
    right: 24px;
    padding-bottom: 10px;
}

.ww-hero:hover .ww-slider-arrow,
.ww-hero:focus-within .ww-slider-arrow {
    opacity: 1;
}

.ww-slider-arrow:hover {
    color: var(--ww-white);
    background: var(--ww-red);
}

.ww-slider-dots {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.ww-slider-dots button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--ww-touch-target, 44px);
    height: var(--ww-touch-target, 44px);
    margin: 0 -10px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.ww-slider-dots button::before {
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    content: "";
    background: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    transition: width 180ms ease-out, background-color 180ms ease-out;
}

.ww-slider-dots button.is-active::before {
    width: 28px;
    background: var(--ww-red);
}

.ww-media-placeholder {
    display: grid;
    width: 100%;
    min-height: 190px;
    overflow: hidden;
    color: #8b8b8b;
    background:
        linear-gradient(135deg, rgba(217, 19, 19, 0.05), transparent 55%),
        #ededed;
    border: 1px dashed #c9c9c9;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

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

.ww-project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--ww-white, #ffffff);
    border: 1px solid var(--ww-line, #e2e8f0);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
    .ww-project-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
}

.ww-project-card .ww-media-placeholder,
.ww-project-card > img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 0;
    overflow: hidden;
    background: #eaeaea;
    border: 0;
    border-radius: 0;
}

.ww-project-card .ww-media-placeholder img,
.ww-project-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.ww-product-card {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    overflow: hidden;
    background: var(--ww-product);
    border: 0;
    border-radius: 4px;
}

.ww-product-card:hover,
.ww-product-card:focus-visible {
    color: inherit;
    border-color: transparent;
    box-shadow: none;
    text-decoration: none;
}

.ww-product-card h2,
.ww-product-card h3 {
    transition: color 180ms ease-out;
}

.ww-product-card:focus-visible h2,
.ww-product-card:focus-visible h3,
.ww-product-card:active h2,
.ww-product-card:active h3 {
    color: var(--ww-red);
}

.ww-product-card .ww-media-placeholder {
    min-height: 240px;
    border: 0;
    border-radius: 0;
}

.ww-product-image {
    display: grid;
    min-height: 240px;
    overflow: hidden;
    background: var(--ww-product);
    place-items: center;
}

.ww-product-image img {
    width: 100%;
    height: 240px;
    padding: 14px;
    object-fit: contain;
    transition: transform 280ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
    .ww-product-card:hover h2,
    .ww-product-card:hover h3 {
        color: var(--ww-red);
    }

    .ww-product-card:hover .ww-product-image img {
        transform: scale(1.035);
    }
}

.ww-product-card h2,
.ww-product-card h3 {
    display: grid;
    min-height: 89px;
    margin: 0;
    padding: 18px 18px 20px;
    color: var(--ww-ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    place-items: center;
    text-wrap: pretty;
}

.ww-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 3px 8px; /* เดิม 3px 11px */
    font-size: 12px;  /* เดิม 12px */
    line-height: 1.5; /* เดิม 1.5 */
    color: var(--ww-white);
    background: var(--ww-red);
    border-radius: 999px;
    font-weight: 700;
}

.ww-about-split {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    align-items: center;
    gap: 80px;
}

.ww-brand-panel-logo {
    width: min(100%, 400px);
    height: auto;
    object-fit: contain;
}

.ww-about-intro .ww-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto 24px;
    text-align: center;
}

.ww-about-logo-image {
    width: min(100%, 280px);
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.ww-about-copy h2 {
    margin: 0 0 22px;
    color: var(--ww-ink);
    font-size: clamp(28px, 2.3vw, 38px);
    line-height: 1.25;
}

.ww-about-copy p {
    margin: 0 0 16px;
}

.ww-callout {
    margin-top: 32px;
    padding: 14px 0 14px 28px;
    color: var(--ww-ink);
    border-left: 3px solid var(--ww-red);
}

.ww-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ww-metric {
    display: flex;
    min-height: 142px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px;
    background: var(--ww-soft);
    border-radius: 8px;
}

.ww-metric-icon {
    display: grid;
    width: 58px;
    height: 59px;
    flex: 0 0 58px;
    place-items: center;
}

.ww-metric-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ww-metric strong {
    display: block;
    color: var(--ww-ink);
    font-size: 40px;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
    line-height: 1;
}

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

.ww-featured-work {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ww-featured-work article {
    overflow: hidden;
    border-radius: 8px;
}

.ww-featured-work .ww-media-placeholder {
    min-height: 310px;
    background: transparent;
    border: 0;
}

.ww-featured-work h3 {
    margin: 14px 0 0;
    color: var(--ww-ink);
    font-size: 18px;
}

.ww-project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 30px;
}

.ww-project-card {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    min-height: 275px;
    overflow: hidden;
    background: var(--ww-white);
    border: 1px solid var(--ww-line);
}

.ww-project-card .ww-media-placeholder {
    min-height: 100%;
    border: 0;
    border-right: 1px solid var(--ww-line);
}

.ww-project-copy {
    align-self: center;
    padding: 28px;
}

.ww-project-copy h2 {
    margin: 0 0 14px;
    color: var(--ww-ink);
    font-size: 20px;
    line-height: 1.45;
}

.ww-project-copy p {
    margin: 0;
    color: var(--ww-muted);
}

.ww-load-more {
    display: flex;
    justify-content: center;
    margin-top: 54px;
}

.ww-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: var(--ww-white);
    background: var(--ww-red);
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 180ms ease-out;
}

.ww-button:hover {
    background: var(--ww-red-dark);
}

.ww-button--outline {
    color: var(--ww-ink);
    background: var(--ww-white);
    border: 1px solid var(--ww-line);
    border-radius: 999px;
}

.ww-button--outline:hover {
    color: var(--ww-red);
    background: var(--ww-white);
    border-color: var(--ww-red);
}

.ww-product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: start;
}

.ww-product-gallery,
.ww-product-summary {
    min-width: 0;
}

.ww-main-product-media {
    position: relative;
    display: grid;
    aspect-ratio: 1;
    width: min(100%, 400px);
    margin: 0 auto;
    overflow: hidden;
    place-items: center;
}

.ww-gallery-zoom {
    position: absolute;
    z-index: 2;
    top: 28px;
    right: 28px;
    display: grid;
    width: var(--ww-touch-target);
    height: var(--ww-touch-target);
    color: var(--ww-ink);
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50%;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transition: color 180ms ease-out, background-color 180ms ease-out, transform 180ms ease-out;
}

.ww-gallery-zoom:focus-visible {
    color: var(--ww-white);
    background: var(--ww-red);
    transform: scale(1.08);
}

@media (hover: hover) and (pointer: fine) {
    .ww-gallery-zoom:hover {
        color: var(--ww-white);
        background: var(--ww-red);
        transform: scale(1.08);
    }
}

.ww-gallery-zoom svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.ww-gallery-modal {
  width: min(94vw, 1100px);
  max-width: none;
  max-height: 90vh;
  margin: auto;
  padding: 52px 0 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.ww-gallery-modal[open] {
  display: grid;
  place-items: center;
}

.ww-gallery-modal::backdrop {
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(12px) brightness(0.55);
  backdrop-filter: blur(12px) brightness(0.55);
}

.ww-gallery-modal-image {
  display: block;
  width: 100%;
  max-height: calc(90vh - 72px);
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.45));
  animation: ww-gallery-modal-in 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ww-gallery-modal-close {
  position: absolute;
  z-index: 1;
  top: 60px;
  right: 8px;
  display: grid;
  width: var(--ww-touch-target);
  height: var(--ww-touch-target);
  padding: 0 0 3px;
  color: var(--ww-white);
  background: var(--ww-ink);
  border: 0;
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background-color 180ms ease-out;
}

.ww-gallery-modal-close:hover,
.ww-gallery-modal-close:focus-visible {
  background: var(--ww-red);
}

@keyframes ww-gallery-modal-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

    .ww-gallery-modal-image {
        animation: none;
    }
}

.ww-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: var(--ww-touch-target);
    height: var(--ww-touch-target);
    padding: 0;
    color: var(--ww-ink);
    background: none;
    border: 0;
    place-items: center;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: color 180ms ease-out;
}

.ww-gallery-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: clamp(32px, 9vw, 44px);
    height: clamp(32px, 9vw, 44px);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ww-line);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background-color 180ms ease-out, border-color 180ms ease-out;
}

.ww-gallery-arrow svg {
    width: clamp(14px, 4vw, 18px);
    height: clamp(14px, 4vw, 18px);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.ww-gallery-arrow--prev {
    left: -22px;
}

.ww-gallery-arrow--next {
    right: -22px;
}

.ww-gallery-arrow:hover,
.ww-gallery-arrow:focus-visible {
    color: var(--ww-white);
}

.ww-gallery-arrow:hover::before,
.ww-gallery-arrow:focus-visible::before {
    background: var(--ww-red);
    border-color: var(--ww-red);
}

.ww-main-product-media img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    transition: opacity 180ms ease-out;
}

.ww-main-product-media img.is-fading {
    opacity: 0;
}

.ww-thumbnail-strip {
    position: relative;
    width: min(100%, 400px);
    margin: 12px auto 0;
}

.ww-thumbnails {
    display: grid;
    grid-auto-columns: calc((100% - 20px) / 3);
    grid-auto-flow: column;
    gap: 10px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding-bottom: 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.ww-thumbnails::-webkit-scrollbar {
    display: none;
}

.ww-thumbnail {
    aspect-ratio: 1;
    min-width: 0;
    overflow: hidden;
    padding: 0;
    background: transparent;
    border: 1px solid var(--ww-line);
    border-radius: 4px;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color 180ms ease-out;
}

.ww-thumbnail:hover,
.ww-thumbnail:focus-visible,
.ww-thumbnail[aria-current="true"] {
    border-color: var(--ww-red);
}

.ww-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
}

.ww-thumbnail .ww-media-placeholder {
    min-height: 100%;
    border: 0;
}

.ww-thumbnail .ww-product-image {
    min-height: 100%;
}

.ww-thumbnail .ww-product-image img {
    height: 100%;
    padding: 0;
}

.ww-product-summary h1 {
    margin: 0 0 24px;
    color: var(--ww-ink);
    font-size: clamp(28px, 2.25vw, 38px);
    line-height: 1.35;
}

.ww-product-summary p {
    margin: 0;
}

.ww-product-summary p + p {
    margin-top: 10px;
}

.ww-tabs {
    margin-top: 95px;
}

.ww-tab-list {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--ww-line);
}

.ww-tab {
    position: relative;
    min-width: 170px;
    padding: 16px 28px;
    color: #b3b3b3;
    background: transparent;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.ww-tab[aria-selected="true"] {
    color: var(--ww-red);
}

.ww-tab[aria-selected="true"]::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--ww-red);
}

.ww-tab-panel {
    padding: 36px 0 0;
}

.ww-tab-panel[hidden] {
    display: none;
}

.ww-tab-panel h2,
.ww-tab-panel h3 {
    color: var(--ww-ink);
}

.ww-tab-panel h2 {
    margin: 38px 0 12px;
    font-size: 22px;
}

.ww-tab-panel h3 {
    margin: 24px 0 6px;
    font-size: 17px;
}

.ww-content-image,
.ww-specification {
    margin: 24px 0;
    text-align: center;
}

.ww-content-image img,
.ww-specification img {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
}

.ww-tab-panel p {
    max-width: none;
}

.ww-tab-panel ul,
.ww-tab-panel ol {
    max-width: 95ch;
}

.ww-tab-panel li + li {
    margin-top: 8px;
}

.ww-content-image {
    width: min(100%, 860px);
    margin: 32px auto;
    text-align: center;
}

.ww-content-image img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.ww-product-specifications {
    width: min(100%, 860px);
    margin: 52px auto 0;
    text-align: center;
}

.ww-product-specifications h2 {
    margin: 0 0 28px;
    font-size: 22px;
}

.ww-product-specifications img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 28px;
    object-fit: contain;
}

.ww-specification {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.ww-specification img {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

.ww-spec-wrap {
    max-width: 820px;
    margin: 58px auto 0;
    overflow-x: auto;
}

.ww-related {
    margin-bottom: 72px;
    padding-top: 54px;
}

.ww-spec-wrap[hidden] {
    display: none;
}

.ww-spec-wrap h2 {
    text-align: center;
}

.ww-spec-table {
    width: 100%;
    min-width: 760px;
    color: var(--ww-ink);
    border-collapse: collapse;
    font-size: 14px;
    text-align: center;
}

.ww-spec-table th,
.ww-spec-table td {
    padding: 10px 8px;
    border: 1px solid #8a8a8a;
}

.ww-related {
    margin-top: 84px;
}

.ww-related .ww-product-grid {
    margin-top: 48px;
}

.ww-related > .ww-section-title {
    text-align: center;
}

.ww-related > .ww-section-title::after {
    display: block;
    width: 54px;
    height: 2px;
    margin: 16px auto 0;
    content: "";
    background: var(--ww-line);
}

.ww-about-intro {
    margin-top: clamp(48px, 5vw, 64px);
    text-align: center;
}

.ww-about-hero {
    display: flex;
    width: 100%;
    min-height: 0;
    padding: 4px 0 36px;
    align-items: flex-start;
}

.ww-about-hero .ww-page-title {
    max-width: none;
    margin-bottom: 0;
}

.ww-about-intro .ww-logo {
    display: flex;
    width: min(100%, 720px);
    margin: 0 auto 32px;
}

.ww-about-logo-image {
    width: min(100%, 400px);
    height: auto;
    object-fit: contain;
}

.ww-long-copy {
    width: 100%;
    margin: 44px auto 0;
    line-height: 1.9;
    text-align: left;
}

.ww-long-copy p,
.ww-long-copy ul {
    margin-top: 0;
    margin-bottom: 18px;
}

.ww-vision {
    width: min(100%, 1040px);
    margin: 72px auto 0;
    padding: 48px;
    background: var(--ww-soft);
    border-radius: 8px;
    text-align: center;
}

.ww-vision h2 {
    margin: 0 0 18px;
    color: var(--ww-red);
    font-size: 20px;
}

.ww-mission-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(280px, 420px));
      justify-content: center;
      gap: 50px;
      margin-inline: auto;
  }

.ww-mission {
    position: relative;
    padding-top: 76px;
}

.ww-mission-number {
    position: absolute;
    top: -28px;
    left: 0;
    z-index: -1;
    color: #eeeeee;
    font-size: 94px;
    font-weight: 700;
    line-height: 1;
}

.ww-mission h3 {
    margin: 0 0 12px;
    color: var(--ww-ink);
    font-size: 18px;
}

.ww-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    gap: 0;
    margin-top: 48px;
    overflow: hidden;
    background: var(--ww-white);
    border-radius: 0 6px 6px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.ww-contact-form h2 {
    margin: 0 0 34px;
    color: var(--ww-ink);
    font-size: 22px;
}

.ww-contact-form {
    padding: 54px 48px 48px;
}

.ww-contact-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 30px;
}

.ww-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ww-contact-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    margin-bottom: 28px;
}

.ww-field {
    display: grid;
    gap: 9px;
    margin: 0;
}

.ww-field--wide {
    grid-column: 1 / -1;
}

.ww-field label {
    color: #777777;
    font-size: 14px;
    font-weight: 400;
}

.ww-field input,
.ww-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 16px;
    color: var(--ww-ink);
    background: var(--ww-white);
    border: 1px solid #9f9f9f;
    border-radius: 999px;
}

.ww-field input:hover,
.ww-field textarea:hover {
    border-color: #707070;
}

.ww-field textarea {
    min-height: 180px;
    resize: vertical;
    border-radius: 4px;
}

.ww-field input:focus,
.ww-field textarea:focus {
    border-color: var(--ww-red);
    outline: 0;
    box-shadow: var(--ww-focus);
}

.ww-contact-submit {
    min-width: 110px;
    margin-top: 28px;
    padding: 12px 26px;
}

.ww-contact-panel {
    display: flex;
    min-width: 0;
    min-height: 560px;
    padding: 54px 36px 34px;
    flex-direction: column;
    color: #b8b8b8;
    background: #111111;
}

.ww-contact-panel h2 {
    margin: 0 0 36px;
    color: var(--ww-white);
    font-size: 20px;
}

.ww-contact-panel a {
    color: #b8b8b8;
}

.ww-contact-panel a:hover,
.ww-contact-panel a:focus-visible {
    color: var(--ww-white);
}

.ww-contact-icon {
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--ww-red);
    border: 1px solid var(--ww-red);
    border-radius: 50%;
    place-items: center;
}

.ww-contact-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.ww-contact-facebook {
    display: grid;
    width: 40px;
    height: 40px;
    margin-top: auto;
    background: #111111;
    border-radius: 50%;
    place-items: center;
    transition: background-color 180ms ease-out, transform 180ms ease-out, box-shadow 180ms ease-out;
}

.ww-contact-facebook:focus-visible {
    background: var(--ww-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 19, 19, 0.35);
}

.ww-contact-facebook img {
    width: 9px;
    height: 17px;
    transition: transform 180ms ease-out;
}

@media (hover: hover) and (pointer: fine) {
    .ww-contact-facebook:hover {
        background: var(--ww-red);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(217, 19, 19, 0.35);
    }

    .ww-contact-facebook:hover img {
        transform: scale(1.1);
    }
}

.ww-map-embed {
    height: 700px;
    overflow: hidden;
    background: var(--ww-soft);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.ww-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.ww-site-footer {
    padding: 72px 0 24px;
    background: var(--ww-soft);
}

.ww-footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.55fr 1.25fr;
    gap: 70px;
}

.ww-footer-brand .ww-logo {
    align-items: flex-start;
}

.ww-footer-brand .ww-logo-image {
    width: 160px;
    height: 64px;
}

.ww-footer-brand .ww-logo-mark {
    margin-left: 27px;
}

.ww-footer-brand p {
    max-width: 35ch;
    margin: 24px 0;
    color: var(--ww-muted);
}

.ww-footer-heading {
    margin: 0 0 24px;
    padding-left: 14px;
    color: var(--ww-ink);
    border-left: 3px solid var(--ww-red);
    font-size: 18px;
}

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

.ww-footer-links li {
    margin-bottom: 8px;
}

.ww-footer-links a:hover {
    color: var(--ww-red);
}

.ww-social {
    display: flex;
    gap: 4px;
}

.ww-social a {
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--ww-white);
    background: #333333;
    border-radius: 50%;
    place-items: center;
    font-weight: 700;
}

.ww-social img {
    width: 9px;
    height: 17px;
}

.ww-social a:hover {
    background: var(--ww-red);
}

.ww-social a:focus-visible {
    outline: none;
    box-shadow: var(--ww-focus);
}

.ww-footer-contact p {
    margin: 0 0 12px;
}

.ww-contact-row {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    gap: 4px;
}

.ww-copyright {
    margin-top: 50px;
    padding-top: 22px;
    padding-bottom: 22px;
    color: var(--ww-muted);
    border-top: 1px solid #dddddd;
    font-size: 14px;
}

@media (max-width: 1199px) {
    .ww-brand-panel-logo {
        transform: none;
    }

    .ww-featured-slider .ww-slider-arrow--prev {
        left: -8px;
    }

    .ww-featured-slider .ww-slider-arrow--next {
        right: -8px;
    }

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

}

@media (min-width: 1200px) and (max-width: 1285px) {
    .ww-featured-slider .ww-slider-arrow--prev {
        left: -8px;
    }

    .ww-featured-slider .ww-slider-arrow--next {
        right: -8px;
    }
}

@media (hover: none), (pointer: coarse) {
    .ww-slider-arrow {
        opacity: 1;
    }

}

@supports (padding: max(0px)) {
    .ww-brand-row {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .ww-site-footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

@media (max-width: 991px) {
    html,
    body {
        scrollbar-width: none;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
    }

    .ww-gallery-zoom {
        top: 16px;
        right: 16px;
    }

    .ww-thumbnail img,
    .ww-thumbnail .ww-product-image img {
        width: 100%;
        height: 100%;
        padding: 0;
        object-fit: cover;
    }

    .ww-brand-row {
        justify-content: space-between;
        min-height: 92px;
    }

    .ww-logo {
        align-items: flex-start;
    }

    .ww-logo-image {
        width: 150px;
        height: 60px;
    }

    .ww-logo-mark {
        width: 44px;
        height: 44px;
        margin-left: 38px;
        border-width: 5px;
        font-size: 26px;
    }

    .ww-logo-mark::after {
        top: -5px;
        right: -5px;
        width: 18px;
        height: 10px;
    }

    .ww-brand-panel-logo {
        margin: 0 auto;
        transform: none;
    }

    .ww-desktop-language {
        display: none !important;
    }

    .ww-menu-toggle {
        position: absolute;
        right: 20px;
        display: grid;
        width: 48px;
        height: 48px;
        padding: 0;
        color: var(--ww-white);
        background: var(--ww-red);
        border: 0;
        border-radius: 6px;
        place-items: center;
        font-size: 0;
        cursor: pointer;
        transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1),
            background-color 200ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ww-menu-toggle:hover,
    .ww-menu-toggle[aria-expanded="true"] {
        color: var(--ww-white);
        background: var(--ww-red-dark);
    }

    .ww-menu-icon {
        position: relative;
        display: grid;
        width: 22px;
        height: 16px;
        align-content: space-between;
    }

    .ww-menu-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transform-origin: center;
        transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1),
            opacity 140ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* closing: the outer lines unfold first and the middle one returns after */
    .ww-menu-icon span:nth-child(2) {
        transition-delay: 180ms;
    }

    /* opening: the middle line clears out of the way before the fold starts */
    .ww-menu-toggle[aria-expanded="true"] .ww-menu-icon span:first-child {
        /* a 22px bar laid at 45 degrees only spans 22 / sqrt(2), so it is drawn
           longer to keep the cross the same 22px across as the three lines */
        transform: translateY(7px) rotate(45deg) scaleX(1.32);
        transition-delay: 120ms;
    }

    .ww-menu-toggle[aria-expanded="true"] .ww-menu-icon span:nth-child(2) {
        opacity: 0;
        transition-delay: 0ms;
    }

    .ww-menu-toggle[aria-expanded="true"] .ww-menu-icon span:last-child {
        transform: translateY(-7px) rotate(-45deg) scaleX(1.32);
        transition-delay: 120ms;
    }

    .ww-nav-wrap {
        position: absolute;
        right: 0;
        left: 0;
        z-index: 100;
        min-height: 0;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        background: #17191d;
        border-top: 3px solid var(--ww-red);
        box-shadow: none;
        transition: opacity 180ms ease-out, transform 180ms ease-out, visibility 180ms;
    }

    .ww-nav-wrap.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .ww-main-nav,
    .ww-main-nav ul {
        display: block;
    }

    .ww-main-nav a {
        min-height: 56px;
        color: var(--ww-white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .ww-main-nav a:hover,
    .ww-main-nav a:focus-visible,
    .ww-main-nav a[aria-current="page"] {
        color: var(--ww-white);
        background: var(--ww-red);
    }

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

    .ww-product-detail,
    .ww-contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .ww-about-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ww-contact-grid {
        gap: 0;
    }

    .ww-brand-panel {
        min-height: 0;
    }

    .ww-project-card {
        grid-template-columns: 1fr;
    }

    .ww-project-card .ww-media-placeholder {
        min-height: 230px;
        border-right: 0;
        border-bottom: 1px solid var(--ww-line);
    }

    .ww-footer-grid {
        grid-template-columns: 1fr 0.7fr 1.2fr;
        gap: 36px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ww-section {
        padding: 62px 0;
    }

    body[data-page="home"] .ww-featured-work .ww-media-placeholder {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .ww-mobile-language-section {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .ww-mobile-lang-title {
        padding: 12px 20px 8px;
        color: rgba(255, 255, 255, 0.65);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .ww-mobile-language {
        display: block;
        width: calc(100% - 40px);
        margin: 0 20px 20px;
    }

    .ww-mobile-language-section .ww-language {
        display: block;
        width: 100%;
        margin: 0;
    }

    .ww-mobile-language-section .ww-language-toggle {
        display: flex;
        width: 100%;
        min-height: 56px;
        padding: 0 20px;
        color: var(--ww-white);
        background: var(--ww-red);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 0;
        font-size: 15px;
        font-weight: 700;
    }

    .ww-mobile-language-section .ww-language-toggle:hover,
    .ww-mobile-language-section .ww-language-toggle:focus-visible {
        color: var(--ww-white);
        background: var(--ww-red-dark);
    }

    .ww-mobile-language-section .ww-language-toggle::after {
        border-color: var(--ww-white);
    }

    .ww-mobile-language-section .ww-language-menu {
        position: relative;
        top: 0;
        right: auto;
        width: 100%;
        min-width: 0;
        background: #23272f;
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: 0;
        box-shadow: none;
    }

    .ww-mobile-language-section .ww-language-menu a {
        color: var(--ww-white);
    }

    .ww-mobile-language-section .ww-language-menu a:hover,
    .ww-mobile-language-section .ww-language-menu a:focus-visible {
        color: var(--ww-white);
        background: var(--ww-red);
    }

    .ww-home-hero {
        height: calc(100vw * 1290 / 2910 + var(--ww-touch-target));
        min-height: 0;
        max-height: none;
        background: var(--ww-white);
    }

    .ww-home-hero .ww-slides {
        bottom: var(--ww-touch-target);
    }

    .ww-home-hero .ww-slide img {
        object-fit: cover;
        background: transparent;
    }

    .ww-home-hero .ww-slider-arrow {
        top: calc((100% - var(--ww-touch-target)) / 2);
    }

    .ww-home-hero .ww-slider-dots {
        bottom: 0;
        height: var(--ww-touch-target);
        background: var(--ww-white);
    }
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
        line-height: 1.7;
    }

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

    .ww-featured-slider .ww-slider-arrow--prev {
        left: -8px;
    }

    .ww-featured-slider .ww-slider-arrow--next {
        right: -8px;
    }

    .ww-logo {
        margin: 0;
        font-size: 9px;
        align-items: flex-start;
        text-align: left;
    }

    .ww-logo-image {
        width: 112px;
        height: 45px;
        margin: 0;
    }

    .ww-logo-mark {
        margin: 0 0 7px;
    }

    .ww-desktop-language {
        display: none;
    }

    .ww-mobile-language-section {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
    }

    .ww-mobile-lang-title {
        color: rgba(255, 255, 255, 0.65);
        font-size: 12px;
        font-weight: 700;
        padding: 0 16px 8px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .ww-mobile-language {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin-top: 0px;
        padding-top: 0px;
        border-top: 0;
        position: relative;
        width: calc(100% - 32px);
        margin: 0 16px 16px;
        font-size: 15px;
    }

    .ww-mobile-language-section .ww-language {
        display: block;
        position: relative;
        width: 100%;
        margin: 0;
        font-size: 15px;
    }

    .ww-mobile-language-section .ww-language-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        height: auto;
        min-height: 56px;
        padding: 0 20px;
        color: var(--ww-white);
        background-color: var(--ww-red);
        background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.12) 100%);
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 0px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        justify-content: flex-start;
        transition: background-color 180ms ease, box-shadow 180ms ease;
    }

    .ww-mobile-language-section .ww-language-toggle:hover,
    .ww-mobile-language-section .ww-language-toggle:focus-visible {
        background-color: var(--ww-red-dark);
    }

    .ww-mobile-language-section .ww-language .ww-language-name {
        display: inline;
    }

    .ww-mobile-language-section .ww-language-menu {
        position: relative;
        top: 6px;
        right: auto;
        left: 0;
        width: 100%;
        min-width: 0;
        background: #23272f;
        border: 1px solid rgba(255, 255, 255, 0.32);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .ww-mobile-language-section .ww-language-menu a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--ww-white);
        padding: 10px 14px;
        font-size: 15px;
        font-weight: 600;
        transition: background 150ms ease, color 150ms ease;
    }

    .ww-mobile-language-section .ww-language-menu a:hover,
    .ww-mobile-language-section .ww-language-menu a:focus-visible {
        color: var(--ww-white);
        background: var(--ww-red);
    }

    .ww-mobile-language-section .ww-language-toggle::after {
        display: block;
        content: "";
        border-color: var(--ww-white);
    }

    .ww-mobile-language-section .ww-language-toggle[aria-expanded="true"]::after {
        transform: rotate(225deg);
    }

    .ww-language {
        margin-right: 60px;
        font-size: 11px;
    }

    .ww-language-toggle {
        width: var(--ww-touch-target);
        height: var(--ww-touch-target);
        min-height: var(--ww-touch-target);
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .ww-language-toggle::after {
        display: none;
    }

    .ww-language .ww-language-name {
        display: none;
    }

    .ww-language-menu {
        width: max-content;
        min-width: 130px;
        right: 0;
    }

    .ww-menu-toggle {
        right: 16px;
    }

    .ww-page-shell {
        padding: 30px 0 72px;
    }

    .ww-section {
        padding: 55px 0;
    }
    .ww-section-heading {
        margin-bottom: 36px;
    }

    .ww-section-title--accent {
        gap: 12px;
    }

    .ww-section-title--accent::before,
    .ww-section-title--accent::after {
        width: 26px;
    }

    .ww-hero {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
        max-height: none;
    }

    .ww-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #111111;
        object-position: center;
    }

    .ww-home-hero {
        height: calc(100vw * 1290 / 2910 + var(--ww-touch-target));
        aspect-ratio: auto;
        background: var(--ww-white);
    }

    .ww-home-hero .ww-slides {
        bottom: var(--ww-touch-target);
    }

    .ww-home-hero .ww-slide img {
        object-fit: cover;
        background: transparent;
    }

    .ww-home-hero .ww-slider-arrow {
        top: calc((100% - var(--ww-touch-target)) / 2);
    }

    .ww-home-hero .ww-slider-dots {
        bottom: 0;
        height: var(--ww-touch-target);
        background: var(--ww-white);
    }

    .ww-featured-slider {
        aspect-ratio: auto;
    }

    .ww-featured-slider .ww-featured-work article,
    .ww-featured-slider .ww-featured-work .ww-media-placeholder,
    .ww-featured-slider .ww-slide img {
        border-radius: 8px;
    }
    .ww-featured-slider .ww-featured-work .ww-media-placeholder {
        overflow: hidden;
    }

    .ww-featured-slider .ww-featured-work article {
        display: none;
    }

    .ww-featured-slider .ww-featured-work article.is-mobile-active {
        display: block;
    }

    .ww-featured-slider .ww-slider-dots button:nth-child(n+4) {
        display: inline-flex;
    }

    .ww-related {
        margin-top: 64px;
        margin-bottom: 54px;
        padding-top: 36px;
    }

    .ww-featured-slider .ww-slide img {
        background: var(--ww-white);
    }

    .ww-slider-arrow {
        width: var(--ww-touch-target);
        height: var(--ww-touch-target);
        opacity: 1;
        font-size: 30px;
    }

    .ww-slider-arrow--prev {
        left: 10px;
    }

    .ww-slider-arrow--next {
        right: 10px;
    }

    .ww-slider-dots {
        bottom: 12px;
    }

    .ww-product-grid,
    .ww-project-grid,
    .ww-featured-work,
    .ww-metrics,
    .ww-mission-grid,
    .ww-footer-grid {
        grid-template-columns: 1fr;
    }

    .ww-product-card {
        min-height: 0;
    }

    .ww-product-card .ww-media-placeholder {
        min-height: 250px;
    }

    .ww-about-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ww-brand-panel-logo {
        transform: none;
        margin: 0 auto;
    }

    .ww-about-hero {
        min-height: 0;
        padding: 0 0 28px;
    }

    .ww-about-intro {
        margin-top: 40px;
    }

    .ww-about-intro .ww-logo {
        margin-bottom: 24px;
    }

    .ww-long-copy {
        margin-top: 36px;
        line-height: 1.8;
    }

    .ww-vision {
        margin-top: 56px;
        padding: 32px 20px;
    }

    .ww-brand-panel {
        min-height: 0;
    }

    .ww-callout {
        padding-left: 18px;
    }

    .ww-metrics {
        gap: 16px;
    }

    .ww-metric {
        justify-content: flex-start;
    }

    .ww-featured-work .ww-media-placeholder {
        min-height: 230px;
    }

    .ww-project-card {
        min-height: 0;
    }

    .ww-product-detail {
        gap: 32px;
    }

    .ww-thumbnail-strip {
        width: min(calc(100% - 12px), 400px);
    }

    .ww-gallery-zoom {
        top: 12px;
        right: 12px;
    }

    .ww-thumbnail .ww-media-placeholder {
        min-height: 100px;
    }

    .ww-thumbnail .ww-product-image {
        min-height: 100px;
    }

    .ww-thumbnail .ww-product-image img {
        height: 100%;
    }

    .ww-thumbnail img {
        height: 100%;
    }

    .ww-product-specifications {
        margin-top: 40px;
    }

    .ww-product-specifications h2 {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .ww-tabs {
        margin-top: 60px;
    }

    .ww-tab {
        min-width: 0;
        flex: 1;
        padding: 14px 10px;
    }

    .ww-tab-panel {
        padding-top: 28px;
    }

    .ww-related {
        margin-top: 60px;
    }

    .ww-vision {
        margin-top: 48px;
        padding: 30px 22px;
    }

    .ww-mission-grid {
        gap: 24px;
        margin-top: 16px;
    }

    .ww-contact-grid {
        gap: 0;
        margin-top: 36px;
        border-radius: 0 0 6px 6px;
    }

    .ww-contact-form {
        padding: 38px 22px;
    }

    .ww-contact-fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ww-field--wide {
        grid-column: auto;
    }

    .ww-contact-panel {
        min-height: 500px;
        padding: 40px 24px 28px;
    }

    .ww-map-embed {
        height: 420px;
    }

    .ww-site-footer {
        padding-top: 54px;
    }

    .ww-footer-grid {
        gap: 42px;
    }

    .ww-footer-brand .ww-logo {
        align-items: flex-start;
    }
}

.ww-vision {
    position: relative;
    width: 100%;
    max-width: none;
    padding: clamp(24px, 3.5vw, 40px) clamp(22px, 5.4vw, 64px);
    margin: 50px auto 50px;
    text-align: center;
    background: var(--ww-section-soft, #f8f9fa);
    border-radius: 12px;
    overflow: hidden;
}

.ww-vision + .ww-section {
    padding-top: clamp(24px, 3vw, 32px);
}

.ww-vision h2 {
    text-align: center;
    margin-bottom: 20px;
}

.ww-vision p {
    max-width: 920px;
    margin-inline: auto;
    line-height: 1.8;
}

.ww-vision-lead {
    display: block;
    width: min(100%, 1000px);
    margin-inline: auto;
    margin-bottom: 56px;
    text-align: center;
    text-wrap: balance;
}

@media (max-width: 991px) {
    .ww-home-hero {
        height: calc(100vw * 1290 / 2910);
    }

    .ww-home-hero .ww-slides {
        bottom: 0;
    }

    .ww-home-hero .ww-slider-arrow {
        top: 50%;
    }

    .ww-home-hero .ww-slider-dots {
        bottom: 0;
        height: auto;
        background: transparent;
    }
}

@media (max-width: 708px) {
    .ww-home-hero .ww-slider-dots {
        bottom: -8px;
    }

    .ww-home-hero .ww-slider-dots button::before {
        width: 8px;
        height: 8px;
    }

    .ww-home-hero .ww-slider-dots button.is-active::before {
        width: 22px;
    }
}

@media (max-width: 430px) {
    .ww-home-hero .ww-slider-arrow,
    .ww-featured-slider .ww-slider-arrow {
        padding: 0;
        font-size: 0;
    }

    .ww-home-hero .ww-slider-arrow::before,
    .ww-featured-slider .ww-slider-arrow::before {
        position: absolute;
        top: 50%;
        left: 50%;
        font-size: 30px;
        padding-bottom: 5px;
        line-height: 1;
        transform: translate(-50%, -50%);
    }

    .ww-home-hero .ww-slider-arrow--prev::before,
    .ww-featured-slider .ww-slider-arrow--prev::before {
        content: "‹";
    }

    .ww-home-hero .ww-slider-arrow--next::before,
    .ww-featured-slider .ww-slider-arrow--next::before {
        content: "›";
    }

    .ww-home-hero .ww-slider-dots button::before {
        width: 6px;
        height: 6px;
    }

    .ww-home-hero .ww-slider-dots button.is-active::before {
        width: 18px;
    }
}

.ww-vision-quote {
    position: absolute;
    width: 44px;
    height: 44px;
    opacity: 1;
    pointer-events: none;
    
}

.ww-vision-quote--left {
    top: 24px;
    left: 24px;
    transform: rotate(180deg);
}

.ww-vision-quote--right {
    bottom: 24px;
    right: 24px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .ww-vision {
        padding-bottom: 55px;
    }
}

@media (max-width: 767px) {
    .ww-vision {
        padding-bottom: 55px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0.01ms !important;
    }

    html.ww-motion-enabled [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .ww-main-product-media img.is-fading {
        opacity: 1;
    }

    .ww-product-card:hover .ww-product-image img,
    .ww-gallery-zoom:hover,
    .ww-project-card:hover,
    .ww-contact-facebook:hover,
    .ww-contact-facebook:focus-visible,
    .ww-contact-facebook:hover img {
        transform: none !important;
    }
}
