@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
    --ws-primary: #0a2e72;
    --ws-accent: #13b8ff;
    --ws-bg: #050b18;
    --ws-surface: #0b1427;
    --ws-text: #f7fbff;
    --ws-muted: #9fb0c9;
    --ws-line: rgba(255,255,255,.12);
    --ws-card: rgba(255,255,255,.055);
    --ws-max: 1320px;
    --ws-radius: 24px;
    --ws-shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ws-bg); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 80% 10%, color-mix(in srgb, var(--ws-primary) 24%, transparent), transparent 32rem),
        var(--ws-bg);
    color: var(--ws-text);
    font-family: "Manrope", system-ui, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, select { cursor: pointer; }
button { color: inherit; }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    line-height: .98;
    letter-spacing: -.045em;
}
h1 { font-size: clamp(3.2rem, 7.4vw, 7.8rem); }
h2 { font-size: clamp(2.35rem, 4.8vw, 5.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
::selection { color: #03101f; background: var(--ws-accent); }

.section-shell { width: min(calc(100% - 48px), var(--ws-max)); margin-inline: auto; }
.section { padding-block: clamp(80px, 10vw, 150px); }
.section-heading {
    display: grid;
    grid-template-columns: minmax(0,1.3fr) minmax(280px,.7fr);
    align-items: end;
    gap: 50px;
    margin-bottom: clamp(36px,5vw,70px);
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 560px; color: var(--ws-muted); font-size: 1.05rem; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--ws-accent);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 1px; content: ""; background: currentColor; }
.text-link { color: var(--ws-text); font-weight: 750; }
.text-link:hover { color: var(--ws-accent); }
.sr-only,.skip-link:not(:focus) { position:absolute!important; width:1px!important; height:1px!important; clip:rect(0,0,0,0)!important; overflow:hidden!important; white-space:nowrap!important; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; color: #06101d; background: white; border-radius: 8px; }

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -.02em;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #02101f; background: var(--ws-accent); box-shadow: 0 12px 34px color-mix(in srgb, var(--ws-accent) 25%, transparent); }
.btn-primary:hover { background: #fff; box-shadow: 0 15px 45px rgba(255,255,255,.16); }
.btn-ghost { border-color: var(--ws-line); background: rgba(255,255,255,.035); backdrop-filter: blur(14px); }
.btn-ghost:hover { border-color: color-mix(in srgb, var(--ws-accent) 60%, transparent); background: rgba(255,255,255,.08); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: .82rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-stack { display: grid; gap: 12px; }

.page-loader {
    position: fixed;
    z-index: 9998;
    inset: 0;
    display: grid;
    place-items: center;
    background: #040914;
    transition: visibility .65s ease, opacity .65s ease;
}
.page-loader.is-complete { visibility: hidden; opacity: 0; }
.page-loader img {
    position: relative;
    z-index: 2;
    width: clamp(390px,42vw,520px);
    max-width: none;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(19,184,255,.22));
}
.loader-orbit {
    position: absolute;
    width: min(330px,76vw);
    aspect-ratio: 1;
    border: 1px solid rgba(19,184,255,.3);
    border-top-color: var(--ws-accent);
    border-radius: 50%;
    animation: loaderOrbit 2.4s linear infinite;
}
.loader-line { position: absolute; bottom: 22%; width: min(220px,48vw); height: 2px; overflow: hidden; background: rgba(255,255,255,.09); }
.loader-line span { display: block; width: 50%; height: 100%; background: var(--ws-accent); animation: loaderLine 1.2s ease-in-out infinite; }
@keyframes loaderOrbit { to { transform: rotate(1turn); } }
@keyframes loaderLine { 0%{transform:translateX(-100%)}100%{transform:translateX(200%)} }

.site-header { position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; transition: background .3s ease, border .3s ease, transform .3s ease; }
.site-header.is-scrolled { border-bottom: 1px solid var(--ws-line); background: rgba(4,9,20,.9); backdrop-filter: blur(20px); }
.site-header.is-hidden { transform: translateY(-100%); }
.announcement { padding: 7px 20px; color: #02101f; background: var(--ws-accent); text-align: center; font-size: .72rem; font-weight: 800; }
.header-shell { position:relative; z-index:102; display: flex; width: min(calc(100% - 40px), 1440px); min-height: 102px; align-items: center; justify-content: space-between; margin: auto; gap: 28px; }
.brand {
    display: inline-flex;
    width: 190px;
    min-width: 190px;
    height: 84px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255,255,255,.14);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.24);
}
.brand .brand-logo-full {
    width: 218px;
    max-width: none;
    height: 218px;
    flex: none;
    object-fit: cover;
    object-position: 50% 50%;
    filter: none;
}
.brand-wordmark { display:grid; line-height:1; }
.brand-wordmark strong { font-family:"Space Grotesk","Manrope",sans-serif; font-size:1.05rem; letter-spacing:.08em; }
.brand-wordmark small { margin-top:5px; color:var(--ws-accent); font-size:.54rem; font-weight:900; letter-spacing:.36em; }
.desktop-nav { display: flex; align-items: center; gap: 25px; }
.nav-item { position: relative; }
.nav-item > a,.account-link { font-size: .77rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.nav-item > a:hover,.account-link:hover { color: var(--ws-accent); }
.nav-badge { margin-left: 4px; padding: 2px 5px; color: #02101f; background: var(--ws-accent); border-radius: 5px; font-size: .55rem; }
.nav-dropdown {
    position: absolute; top: 35px; left: -18px; display: grid; min-width: 230px; padding: 14px; visibility: hidden;
    border: 1px solid var(--ws-line); background: rgba(8,17,34,.98); border-radius: 14px; opacity: 0; transform: translateY(10px);
    box-shadow: var(--ws-shadow); transition: .25s ease;
}
.nav-item:hover .nav-dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-dropdown a { padding: 10px 12px; border-radius: 8px; font-size: .86rem; }
.nav-dropdown a:hover { color: var(--ws-accent); background: var(--ws-card); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--ws-line); background: transparent; border-radius: 50%; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: currentColor; }
.mobile-drawer {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    align-content: start;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 225px 28px max(42px,env(safe-area-inset-bottom));
    visibility: hidden;
    background:
        linear-gradient(180deg,rgba(4,9,20,.995),rgba(4,9,20,.985)),
        var(--ws-bg);
    opacity: 0;
    pointer-events: none;
    overscroll-behavior: contain;
    touch-action: pan-y;
    transform: translateY(-14px);
    -webkit-overflow-scrolling: touch;
    transition: visibility .3s ease, opacity .3s ease, transform .3s ease;
}
.mobile-drawer.open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.drawer-brand-lockup {
    position: absolute;
    top: 96px;
    left: 28px;
    display: none;
    width: 220px;
    height: 118px;
    place-items: center;
    overflow: hidden;
    padding: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 35px rgba(0,0,0,.3);
}
.drawer-brand-lockup img { width: 260px; max-width:none; height:260px; object-fit:cover; object-position:center; }
.mobile-drawer nav { display: grid; }
.mobile-drawer nav > a { padding: 13px 0; border-bottom: 1px solid var(--ws-line); font-family: "Space Grotesk"; font-size: clamp(1.7rem,7vw,2.6rem); font-weight: 600; letter-spacing: -.04em; }
.mobile-drawer .child-link { padding-left: 20px; font-size: 1rem; }
.drawer-contact { display: grid; gap: 6px; margin-top: 28px; color: var(--ws-muted); }

.home-hero { position: relative; min-height: 820px; overflow: hidden; }
.hero-background,.hero-background img,.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-background img { object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(3,8,18,.96) 0%, rgba(3,8,18,.76) 40%, rgba(3,8,18,.18) 74%, rgba(3,8,18,.5) 100%), linear-gradient(0deg, var(--ws-bg), transparent 30%); }
.hero-grid { position: relative; z-index: 2; display: grid; min-height: 820px; grid-template-columns: minmax(0,1fr) minmax(250px,.42fr); align-items: center; gap: 40px; padding-top: 110px; padding-bottom: 135px; }
.hero-copy { position: relative; z-index: 5; max-width: 760px; }
.hero-copy h1 { margin-bottom: 26px; font-size: clamp(3.15rem,6.5vw,7rem); }
.hero-copy h1 span,.inner-hero h1 span,.image-hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.62); }
.hero-copy > p:not(.eyebrow) { max-width: 640px; margin-bottom: 35px; color: #c5d1e5; font-size: clamp(1rem,1.5vw,1.25rem); }
.hero-product-accent {
    position: absolute;
    z-index: 4;
    right: max(3vw,calc((100vw - 1440px)/2));
    bottom: 78px;
    display: grid;
    width: 280px;
    grid-template-columns: 95px 1fr;
    align-items: center;
    gap: 14px;
    padding: 12px 16px 12px 8px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(4,11,24,.72);
    border-radius: 18px;
    box-shadow: 0 24px 65px rgba(0,0,0,.36);
    backdrop-filter: blur(18px);
}
.hero-product-accent img { width: 95px; height: 92px; object-fit: contain; filter: drop-shadow(0 16px 24px rgba(0,0,0,.4)); }
.hero-product-accent div { display: grid; gap: 4px; }
.hero-product-accent span { color: var(--ws-accent); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-product-accent strong { font-family: "Space Grotesk"; font-size: .95rem; line-height: 1.15; }
.hero-proof { position: absolute; z-index: 3; bottom: 28px; left: 50%; display: flex; justify-content: space-between; transform: translateX(-50%); }
.hero-proof span { color: #d9e4f3; font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-actions { position: relative; z-index: 6; margin-bottom: 18px; }

.category-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.category-card { position: relative; min-height: 480px; overflow: hidden; border: 1px solid var(--ws-line); border-radius: var(--ws-radius); }
.category-card:nth-child(1),.category-card:nth-child(2) { grid-column: span 6; }
.category-card:nth-child(n+3) { grid-column: span 4; min-height: 410px; }
.category-card img,.category-overlay { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.8,.2,1); }
.category-overlay { background: linear-gradient(0deg, rgba(3,8,18,.95), transparent 68%); }
.category-card > div { position: absolute; z-index: 2; right: 28px; bottom: 25px; left: 28px; }
.category-card > div > span { color: var(--ws-accent); font-size: .7rem; font-weight: 800; }
.category-card h3 { max-width: 380px; margin: 10px 0 15px; font-size: clamp(1.65rem,3vw,3rem); }
.category-card b { font-size: .8rem; }
.category-card:hover img { transform: scale(1.06); }

.assembly-section {
    display: grid; min-height: 100vh; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 20px; padding: 8vw max(24px,calc((100vw - var(--ws-max))/2));
    background: linear-gradient(135deg,#071224,#030711); overflow: hidden;
}
.assembly-copy { position: relative; z-index: 4; max-width: 520px; }
.assembly-copy > p:not(.eyebrow) { color: var(--ws-muted); }
.assembly-steps { display: grid; gap: 0; margin: 36px 0 0; padding: 0; list-style: none; counter-reset: item; }
.assembly-steps li { padding: 11px 0 11px 22px; border-left: 1px solid var(--ws-line); color: #66768e; font-weight: 700; transition: .25s ease; }
.assembly-steps li.active { border-left: 2px solid var(--ws-accent); color: var(--ws-text); }
.assembly-stage { position: relative; display: grid; min-height: 720px; place-items: center; }
.assembly-stage img { position: absolute; width: min(760px,78vw); max-height: 720px; object-fit: contain; opacity: 0; }
.assembly-stage img:first-child { opacity: 1; }
.assembly-complete { z-index: 10; }

.studio-feature { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(40px,7vw,100px); }
.studio-media { position: relative; }
.studio-media > img,.studio-feature > img,.rounded-media { width: 100%; min-height: 540px; object-fit: cover; border: 1px solid var(--ws-line); border-radius: var(--ws-radius); box-shadow: var(--ws-shadow); }
.model-dots { position: absolute; right: 24px; bottom: 24px; display: flex; gap: 8px; }
.model-dots span { width: 12px; aspect-ratio: 1; background: var(--ws-accent); border: 3px solid white; border-radius: 50%; box-shadow: 0 0 0 5px rgba(19,184,255,.2); }
.studio-copy h2 { font-size: clamp(2.5rem,5vw,5.4rem); }
.studio-copy > p { color: var(--ws-muted); }
.check-list { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.check-list li::before { margin-right: 10px; color: var(--ws-accent); content: "✓"; font-weight: 900; }

.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.product-card {
    min-width: 0;
    overflow: hidden;
    color: var(--ws-text);
    border: 1px solid var(--ws-line);
    background: #091427;
    border-radius: 18px;
}
.product-media { position: relative; display: block; aspect-ratio: .9; overflow: hidden; background: #e8edf3; border-radius: 0; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-media img { transform: scale(1.045); }
.pill { position: absolute; top: 14px; left: 14px; padding: 6px 10px; color: #02101f; background: var(--ws-accent); border-radius: 999px; font-size: .63rem; font-weight: 800; text-transform: uppercase; }
.product-copy { display: flex; min-height: 126px; align-items: center; justify-content: space-between; gap: 15px; padding: 21px 18px; color: var(--ws-text); background: #091427; }
.product-copy p { margin-bottom: 6px; color: var(--ws-accent); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.product-copy h3,.product-copy h3 a { margin: 0; color: var(--ws-text); font-size: 1.2rem; letter-spacing: -.025em; }
.circle-link { display: grid; min-width: 42px; aspect-ratio: 1; place-items: center; border: 1px solid var(--ws-line); border-radius: 50%; }
.product-card:hover .circle-link { color: #02101f; background: var(--ws-accent); border-color: var(--ws-accent); }
.empty-showcase { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 40px; padding: 38px; border: 1px solid var(--ws-line); background: var(--ws-card); border-radius: var(--ws-radius); }
.placeholder-products { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.placeholder-products img { width: 100%; aspect-ratio: .82; object-fit: cover; background: white; border-radius: 14px; }

.manufacturing-story { background: linear-gradient(150deg,#07152c,#050914); }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(40px,7vw,100px); }
.story-copy > p { color: var(--ws-muted); }
.metric-row { display: flex; gap: 45px; margin: 35px 0; }
.metric-row div { display: grid; }
.metric-row strong { color: var(--ws-accent); font-family: "Space Grotesk"; font-size: 2.3rem; }
.metric-row span { color: var(--ws-muted); font-size: .75rem; }
.story-mosaic { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; }
.story-mosaic img { width: 100%; height: 270px; object-fit: cover; border-radius: 16px; }
.story-mosaic img:first-child { grid-row: span 2; height: 552px; }

.inner-hero,.image-hero,.collection-hero,.form-hero,.blog-hero { position: relative; min-height: 600px; display: grid; align-items: end; overflow: hidden; }
.compact-hero { min-height: 560px; background: radial-gradient(circle at 78% 30%, rgba(19,184,255,.21), transparent 24rem), linear-gradient(135deg,#0a2047,#040813); }
.inner-hero .section-shell,.image-hero .section-shell,.collection-hero .section-shell,.form-hero .section-shell,.blog-hero .section-shell { position: relative; z-index: 2; padding-top: 160px; padding-bottom: 75px; }
.inner-hero h1,.image-hero h1,.collection-hero h1,.form-hero h1,.blog-hero h1 { max-width: 1050px; margin-bottom: 24px; }
.inner-hero p:not(.eyebrow),.image-hero p:not(.eyebrow),.collection-hero p:not(.eyebrow),.form-hero p:not(.eyebrow) { max-width: 660px; color: #c3d0e3; }
.image-hero > img,.collection-hero > img,.form-hero > img,.blog-hero > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.collection-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(3,8,18,.93),rgba(3,8,18,.25)),linear-gradient(0deg,var(--ws-bg),transparent); }

.catalogue-toolbar { display: grid; grid-template-columns: 1fr 300px auto; gap: 12px; margin-bottom: 42px; }
.catalogue-toolbar input,.catalogue-toolbar select { width: 100%; min-height: 54px; padding: 0 18px; color: var(--ws-text); border: 1px solid var(--ws-line); outline: none; background: var(--ws-surface); border-radius: 12px; }
.search-field { display: flex; }
.search-field input { border-radius: 12px 0 0 12px; }
.search-field button { padding: 0 22px; color:#02101f; border:0; background:var(--ws-accent); border-radius:0 12px 12px 0; font-weight:800; }
.clear-filter { display: grid; place-items: center; padding: 0 15px; color: var(--ws-muted); }
.pagination-wrap { margin-top: 45px; }
.ws-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    max-width: 760px;
    margin-inline: auto;
    padding: 13px;
    border: 1px solid var(--ws-line);
    background: rgba(11,20,39,.86);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.pagination-pages { display: flex; align-items: center; justify-content: center; gap: 6px; }
.ws-pagination a,.ws-pagination span {
    display: inline-flex;
    min-width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding-inline: 12px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: .82rem;
    font-weight: 800;
}
.ws-pagination a { color: #dbe7f7; background: rgba(255,255,255,.045); }
.ws-pagination a:hover { color: #03101f; background: var(--ws-accent); }
.ws-pagination .is-current { color: #03101f; background: var(--ws-accent); }
.ws-pagination .pagination-control { min-width: 112px; gap: 7px; border-color: var(--ws-line); }
.ws-pagination .is-disabled { color: #60718a; cursor: not-allowed; }
.ws-pagination .pagination-gap { min-width: 24px; padding: 0; color: var(--ws-muted); }
.empty-state { max-width: 780px; margin: auto; padding: 80px 30px; text-align: center; border: 1px solid var(--ws-line); background: var(--ws-card); border-radius: var(--ws-radius); }
.empty-state img { width: 180px; margin: 0 auto 25px; }
.empty-state p { color: var(--ws-muted); }

.product-detail { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(35px,7vw,100px); padding-top: 90px; }
.gallery-main { aspect-ratio: .9; overflow:hidden; background:#f2f5f8; border-radius:var(--ws-radius); }
.gallery-main img { width:100%; height:100%; object-fit:cover; }
.gallery-thumbs { display:flex; gap:10px; margin-top:12px; overflow-x:auto; }
.gallery-thumbs button { width:85px; aspect-ratio:1; padding:0; overflow:hidden; border:2px solid transparent; background:#f2f5f8; border-radius:10px; }
.gallery-thumbs button.active { border-color:var(--ws-accent); }
.gallery-thumbs img { width:100%; height:100%; object-fit:cover; }
.product-info { position: sticky; top: 115px; align-self:start; }
.product-info h1 { margin-bottom:14px; font-size:clamp(3rem,6vw,6rem); }
.product-sku,.no-price-note { color:var(--ws-muted); font-size:.8rem; }
.product-intro { margin:30px 0; color:#c9d5e6; font-size:1.08rem; }
.spec-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; margin:30px 0; background:var(--ws-line); border:1px solid var(--ws-line); border-radius:14px; overflow:hidden; }
.spec-grid div { display:grid; gap:6px; padding:18px; background:var(--ws-surface); }
.spec-grid span { color:var(--ws-muted); font-size:.68rem; text-transform:uppercase; letter-spacing:.1em; }
.detail-tabs { padding-top:70px; }
.tab-buttons { display:flex; gap:8px; padding-bottom:18px; border-bottom:1px solid var(--ws-line); }
.tab-buttons button { padding:10px 16px; color:var(--ws-muted); border:0; background:transparent; border-radius:999px; }
.tab-buttons button.active { color:#02101f; background:var(--ws-accent); }
.tab-panel { display:none; padding:42px 0; }
.tab-panel.active { display:block; }
.option-columns { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.option-columns > div { padding:24px; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:16px; }
.rich-copy { color:#cbd6e8; }
.rich-copy h2,.rich-copy h3 { color:var(--ws-text); margin:1.6em 0 .6em; line-height:1.1; }
.rich-copy a { color:var(--ws-accent); text-decoration:underline; }

.process-list { display:grid; gap:1px; }
.process-row { display:grid; grid-template-columns:80px 1fr 320px; align-items:center; gap:35px; padding:32px; border-bottom:1px solid var(--ws-line); transition:background .25s ease; }
.process-row:hover { background:var(--ws-card); }
.process-row > span { color:var(--ws-accent); font-family:"Space Grotesk"; font-size:1.5rem; }
.process-row h2 { margin:0 0 10px; font-size:clamp(1.8rem,3vw,3.5rem); }
.process-row p { margin:0; color:var(--ws-muted); }
.process-row img { width:100%; height:160px; object-fit:cover; border-radius:14px; }
.process-row.text-only { grid-template-columns:80px 1fr; }
.feature-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }
.feature-card { min-height:270px; padding:28px; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:18px; }
.feature-card > span { color:var(--ws-accent); font-size:.75rem; }
.feature-card h3 { margin-top:60px; }
.feature-card p { color:var(--ws-muted); }

.manufacturing-intro,.production-control,.testing-layout,.documentation-section,.partnership-flow,.factory-tour-intro {
    display:grid;
    grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);
    align-items:start;
    gap:clamp(45px,8vw,120px);
}
.manufacturing-intro > div:last-child > p,.factory-tour-intro > p,.documentation-section > div > p,.partnership-flow > div > p { color:var(--ws-muted); }
.decoration-section,.testing-section,.manufacturing-cta,.quality-cta,.about-values,.about-cta,.factory-tour-cta { background:linear-gradient(145deg,#07152b,#040914); }
.capability-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.capability-card { overflow:hidden; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:20px; }
.capability-card img { width:100%; height:310px; object-fit:cover; transition:transform .6s ease; }
.capability-card:hover img { transform:scale(1.04); }
.capability-card > div { padding:28px; }
.capability-card span,.quality-stage span,.tour-card span { color:var(--ws-accent); font-size:.7rem; font-weight:800; letter-spacing:.12em; }
.capability-card h3 { margin:45px 0 12px; font-size:clamp(1.6rem,2.6vw,2.6rem); }
.capability-card p,.production-control-copy > p,.testing-copy > p,.quality-stage p,.responsibility-card p,.tour-card p { color:var(--ws-muted); }
.production-control { align-items:center; }
.production-control-media img,.testing-media img { width:100%; min-height:560px; object-fit:cover; border-radius:var(--ws-radius); box-shadow:var(--ws-shadow); }
.production-control-copy h2,.testing-copy h2 { font-size:clamp(2.5rem,5vw,5.3rem); }
.control-points { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin:30px 0; }
.control-points span,.document-list span { padding:15px 16px; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:10px; font-size:.8rem; font-weight:700; }
.manufacturing-cta .section-shell,.quality-cta .section-shell,.about-cta .section-shell,.factory-tour-cta .section-shell {
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:40px;
}
.manufacturing-cta h2,.quality-cta h2,.about-cta h2,.factory-tour-cta h2 { max-width:900px; margin:0; }

.quality-stage-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.quality-stage { overflow:hidden; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:18px; }
.quality-stage img { width:100%; height:260px; object-fit:cover; }
.quality-stage > div { padding:25px; }
.quality-stage h3 { margin:38px 0 12px; }
.testing-layout { align-items:center; }
.test-list { display:grid; gap:1px; margin-top:30px; overflow:hidden; border:1px solid var(--ws-line); border-radius:14px; }
.test-list div { display:grid; gap:6px; padding:18px; background:var(--ws-card); }
.test-list strong { color:var(--ws-text); }
.test-list span { color:var(--ws-muted); font-size:.82rem; }
.responsibility-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.responsibility-card { display:grid; grid-template-columns:190px 1fr; overflow:hidden; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:18px; }
.responsibility-card img { width:100%; height:100%; min-height:240px; object-fit:cover; }
.responsibility-card > div { align-self:center; padding:28px; }
.responsibility-card h3 { margin-bottom:12px; }
.documentation-section { align-items:center; }
.document-list { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; }

.partnership-flow ol { display:grid; gap:1px; margin:0; padding:0; overflow:hidden; border:1px solid var(--ws-line); border-radius:18px; list-style:none; }
.partnership-flow li { display:grid; grid-template-columns:55px 1fr; gap:18px; padding:24px; background:var(--ws-card); }
.partnership-flow li > span { color:var(--ws-accent); font-size:.75rem; font-weight:800; }
.partnership-flow li h3 { margin:0 0 8px; }
.partnership-flow li p { margin:0; color:var(--ws-muted); }

.factory-tour-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.tour-card { overflow:hidden; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:20px; }
.tour-card img { width:100%; height:360px; object-fit:cover; transition:transform .6s ease; }
.tour-card:hover img { transform:scale(1.04); }
.tour-card > div { padding:28px; }
.tour-card h2 { margin:42px 0 14px; font-size:clamp(1.8rem,3vw,3.2rem); }
.policy-layout { display:grid; grid-template-columns:260px 1fr; gap:70px; }
.policy-layout aside { position:sticky; top:120px; display:grid; align-self:start; gap:10px; }
.policy-layout aside a { color:var(--ws-muted); }
.policy-copy { max-width:820px; }

.form-layout { display:grid; grid-template-columns:330px 1fr; gap:60px; align-items:start; }
.form-aside { position:sticky; top:120px; }
.form-aside ol { display:grid; gap:25px; margin:30px 0; padding:0; list-style:none; }
.form-aside li { display:flex; gap:15px; }
.form-aside li > span { color:var(--ws-accent); font-size:.75rem; font-weight:800; }
.form-aside li p { color:var(--ws-muted); font-size:.82rem; }
.contact-card { display:grid; padding:20px; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:14px; }
.contact-card span { color:var(--ws-muted); font-size:.7rem; text-transform:uppercase; }
.contact-card a { color:var(--ws-accent); font-weight:800; }
.premium-form { padding:clamp(24px,5vw,56px); border:1px solid var(--ws-line); background:rgba(11,20,39,.8); border-radius:var(--ws-radius); box-shadow:var(--ws-shadow); }
.premium-form fieldset { margin:0 0 50px; padding:0; border:0; }
.premium-form legend { display:flex; gap:12px; width:100%; margin-bottom:26px; padding-bottom:16px; border-bottom:1px solid var(--ws-line); font-family:"Space Grotesk"; font-size:1.4rem; font-weight:700; }
.premium-form legend span { color:var(--ws-accent); }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.field,.upload-drop { display:grid; gap:8px; }
.field.full,.upload-drop.full,.form-grid .full { grid-column:1/-1; }
.field > span,.upload-drop > span { color:#dce7f6; font-size:.78rem; font-weight:700; }
.field input,.field select,.field textarea,.premium-form select {
    width:100%; min-height:52px; padding:13px 15px; color:var(--ws-text); border:1px solid var(--ws-line); outline:0;
    background:#071121; border-radius:10px; transition:border .2s ease,box-shadow .2s ease;
}
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--ws-accent); box-shadow:0 0 0 3px rgba(19,184,255,.12); }
.upload-drop { position:relative; padding:30px; border:1px dashed rgba(19,184,255,.5); background:rgba(19,184,255,.04); border-radius:14px; text-align:center; }
.upload-drop input { position:absolute; inset:0; width:100%; opacity:0; cursor:pointer; }
.upload-drop small { color:var(--ws-muted); }
.form-errors { margin-bottom:25px; padding:18px; color:#fecaca; border:1px solid rgba(239,68,68,.4); background:rgba(127,29,29,.25); border-radius:12px; }
.submit-button { width:100%; }
.form-privacy { margin:16px 0 0; color:var(--ws-muted); font-size:.75rem; text-align:center; }
.contact-layout { display:grid; grid-template-columns:.75fr 1.25fr; gap:60px; }
.contact-details { display:grid; align-content:start; gap:1px; border:1px solid var(--ws-line); overflow:hidden; border-radius:var(--ws-radius); }
.contact-details > div { display:grid; gap:8px; padding:30px; background:var(--ws-card); }
.contact-details span { color:var(--ws-muted); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; }
.contact-details a { color:var(--ws-accent); font-weight:800; }

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card { overflow:hidden; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:18px; }
.blog-card > a { display:block; height:250px; overflow:hidden; }
.blog-card img { width:100%; height:100%; object-fit:cover; transition:.5s ease; }
.blog-card:hover img { transform:scale(1.05); }
.blog-card > div { padding:24px; }
.blog-card p { color:var(--ws-accent); font-size:.68rem; text-transform:uppercase; letter-spacing:.08em; }
.blog-card h2 { margin-bottom:14px; font-size:1.7rem; line-height:1.1; }
.blog-card span { display:block; margin-bottom:18px; color:var(--ws-muted); font-size:.88rem; }
.article-page { padding-top:160px; padding-bottom:120px; }
.article-page header { max-width:1000px; margin-bottom:50px; }
.article-page h1 { font-size:clamp(3.2rem,7vw,7rem); }
.article-meta { display:flex; gap:25px; color:var(--ws-muted); }
.article-cover { width:100%; max-height:720px; object-fit:cover; border-radius:var(--ws-radius); }
.article-copy { max-width:820px; margin:70px auto; font-size:1.05rem; }
.article-cta { max-width:920px; margin:100px auto 0; padding:50px; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:var(--ws-radius); text-align:center; }

.studio-header { display:grid; grid-template-columns:1fr .55fr; align-items:end; gap:50px; padding-top:150px; padding-bottom:50px; }
.studio-header h1 { margin:0; font-size:clamp(3.2rem,6vw,6.6rem); }
.studio-header > p { color:var(--ws-muted); }
.custom-room-shell { display:grid; grid-template-columns:410px 1fr; min-height:720px; margin-bottom:100px; overflow:hidden; border:1px solid var(--ws-line); background:#060c17; border-radius:24px; box-shadow:var(--ws-shadow); }
.studio-controls { position:relative; z-index:4; padding:28px; border-right:1px solid var(--ws-line); background:#091426; }
.studio-progress { display:flex; align-items:center; margin-bottom:28px; }
.studio-progress span { display:grid; width:30px; aspect-ratio:1; place-items:center; color:var(--ws-muted); border:1px solid var(--ws-line); border-radius:50%; font-size:.68rem; }
.studio-progress span.active { color:#02101f; background:var(--ws-accent); border-color:var(--ws-accent); }
.studio-progress i { flex:1; height:1px; background:var(--ws-line); }
.control-panel { display:none; }
.control-panel.active { display:block; animation:panelIn .35s ease; }
@keyframes panelIn { from{opacity:0;transform:translateX(12px)}to{opacity:1;transform:none} }
.panel-heading { display:flex; gap:15px; margin-bottom:25px; }
.panel-heading > span { color:var(--ws-accent); font-size:.7rem; }
.panel-heading h2 { margin:0 0 6px; font-size:1.8rem; }
.panel-heading p { color:var(--ws-muted); font-size:.8rem; }
.product-choice-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; max-height:460px; overflow-y:auto; }
.product-choice-grid button { padding:8px; color:var(--ws-text); border:1px solid var(--ws-line); background:rgba(255,255,255,.025); border-radius:12px; text-align:left; }
.product-choice-grid button.active { border-color:var(--ws-accent); box-shadow:0 0 0 2px rgba(19,184,255,.12); }
.product-choice-grid img { width:100%; aspect-ratio:1; object-fit:cover; background:white; border-radius:8px; }
.product-choice-grid span { display:block; padding:9px 3px 3px; font-size:.75rem; font-weight:700; }
.colour-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-bottom:25px; }
.colour-grid button { aspect-ratio:1; border:3px solid #fff; background:var(--swatch); border-radius:50%; box-shadow:0 0 0 1px var(--ws-line); }
.colour-grid button.active { box-shadow:0 0 0 3px var(--ws-accent); }
.design-summary { display:grid; gap:1px; margin-bottom:25px; overflow:hidden; border:1px solid var(--ws-line); border-radius:12px; }
.design-summary div { display:flex; justify-content:space-between; padding:14px; background:var(--ws-card); }
.design-summary span { color:var(--ws-muted); font-size:.75rem; }
.step-actions { position:absolute; right:28px; bottom:22px; left:28px; display:flex; justify-content:space-between; padding-top:18px; border-top:1px solid var(--ws-line); }
.step-actions button { padding:10px 15px; border:0; background:transparent; font-weight:800; }
.step-actions button:last-child { color:var(--ws-accent); }
.step-actions button:disabled { opacity:.25; }
.studio-viewport { position:relative; display:grid; min-width:0; min-height:720px; place-items:center; background:radial-gradient(circle,rgba(19,184,255,.11),transparent 45%),linear-gradient(145deg,#091a33,#030711); overflow:hidden; }
.studio-status { position:absolute; z-index:3; top:22px; left:24px; display:flex; align-items:center; gap:8px; padding:8px 12px; border:1px solid var(--ws-line); background:rgba(5,11,24,.72); border-radius:999px; font-size:.68rem; backdrop-filter:blur(12px); }
.studio-status span { width:8px; aspect-ratio:1; border-radius:50%; }
.studio-status .online { background:#22c55e; box-shadow:0 0 12px #22c55e; }
.studio-status .standby { background:#f59e0b; box-shadow:0 0 12px #f59e0b; }
.model-mount { position:absolute; inset:0; display:grid; place-items:center; }
.studio-fallback { position:relative; width:min(620px,80%); }
.studio-fallback > img { width:100%; filter:drop-shadow(0 40px 50px rgba(0,0,0,.5)); }
.fallback-brand,.fallback-number { position:absolute; z-index:2; color:white; font-family:"Space Grotesk"; font-weight:800; text-shadow:0 2px 5px rgba(0,0,0,.5); pointer-events:none; }
.fallback-brand { top:37%; left:50%; transform:translateX(-50%); font-size:clamp(.7rem,1.3vw,1.2rem); }
.fallback-number { top:47%; left:50%; transform:translateX(-50%); font-size:clamp(1.5rem,4vw,3.7rem); }
.view-controls { position:absolute; z-index:4; bottom:25px; left:50%; display:flex; padding:5px; border:1px solid var(--ws-line); background:rgba(5,11,24,.75); border-radius:999px; transform:translateX(-50%); backdrop-filter:blur(15px); }
.view-controls button { padding:8px 13px; color:var(--ws-muted); border:0; background:transparent; border-radius:999px; font-size:.7rem; }
.view-controls button.active { color:#02101f; background:var(--ws-accent); }
.model-tools { position:absolute; z-index:4; top:22px; right:22px; display:flex; gap:6px; }
.model-tools button { min-width:38px; height:38px; border:1px solid var(--ws-line); background:rgba(5,11,24,.75); border-radius:10px; backdrop-filter:blur(12px); }

.auth-page { display:grid; min-height:100vh; grid-template-columns:1.15fr .85fr; padding-top:82px; }
.auth-visual { position:relative; min-height:700px; }
.auth-visual img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.auth-visual::after { position:absolute; inset:0; content:""; background:linear-gradient(0deg,rgba(3,8,18,.95),transparent 70%); }
.auth-visual > div { position:absolute; z-index:2; right:8%; bottom:9%; left:8%; }
.auth-card { display:grid; align-content:center; width:min(520px,calc(100% - 50px)); margin:auto; padding:50px; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:var(--ws-radius); }
.auth-card > img { width:150px; margin-bottom:30px; }
.auth-card .field { margin-bottom:15px; }
.auth-card > .btn { margin-top:18px; }
.auth-card > p:last-child { margin:20px 0 0; color:var(--ws-muted); text-align:center; }
.auth-card a { color:var(--ws-accent); }
.check-field { display:flex; align-items:center; gap:9px; color:var(--ws-muted); font-size:.8rem; }
.dashboard-hero { display:flex; min-height:430px; align-items:end; justify-content:space-between; gap:30px; padding-top:150px; padding-bottom:60px; }
.dashboard-hero h1 { margin-bottom:18px; font-size:clamp(2.8rem,5vw,5.5rem); }
.dashboard-hero p { color:var(--ws-muted); }
.dashboard-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:35px; }
.dashboard-stats div { display:grid; gap:8px; padding:24px; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:14px; }
.dashboard-stats span { color:var(--ws-muted); font-size:.72rem; text-transform:uppercase; }
.dashboard-stats strong { font-size:2rem; }
.quote-list { display:grid; gap:1px; overflow:hidden; border:1px solid var(--ws-line); border-radius:18px; }
.quote-list article { display:flex; justify-content:space-between; gap:25px; padding:24px; background:var(--ws-card); }
.quote-list article > div:last-child { display:flex; align-items:center; gap:20px; }
.quote-list p { margin-bottom:5px; color:var(--ws-accent); font-size:.7rem; }
.quote-list h2 { margin:0; font-size:1.35rem; }
.status-pill { padding:7px 10px; border:1px solid var(--ws-line); border-radius:999px; font-size:.68rem; }
.success-page { display:grid; min-height:850px; place-items:center; align-content:center; padding-top:130px; text-align:center; }
.success-page img { width:min(360px,70vw); max-height:270px; margin-bottom:30px; }
.success-page h1 { margin-bottom:25px; }
.success-page > p:not(.eyebrow) { color:var(--ws-muted); }
.success-page .button-row { justify-content:center; }

.site-footer { padding-top:80px; border-top:1px solid var(--ws-line); background:#030711; }
.footer-cta { display:flex; align-items:end; justify-content:space-between; gap:30px; padding-bottom:60px; }
.footer-cta h2 { max-width:850px; margin:0; font-size:clamp(2.6rem,5vw,5rem); }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:45px; padding-block:55px; border-top:1px solid var(--ws-line); border-bottom:1px solid var(--ws-line); }
.footer-grid > div { display:grid; align-content:start; gap:10px; }
.footer-grid h3 { font-size:1rem; }
.footer-grid a,.footer-grid p { margin:0; color:var(--ws-muted); font-size:.83rem; }
.footer-grid a:hover { color:var(--ws-accent); }
.footer-logo-lockup {
    display: grid;
    width: 260px;
    height: 169px;
    place-items: center;
    overflow: hidden;
    margin-bottom: 14px;
    padding: 0;
   align-content: center;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(0,0,0,.28);
}
.footer-logo-lockup img { width:310px; max-width:none; height:310px; object-fit:cover; object-position:center; }
.footer-brand .sialkot-badge { width:80px; margin-top:12px; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-block:22px 95px; color:#6f8098; font-size:.72rem; }
.footer-bottom a { color:var(--ws-accent); }
.whatsapp-float { position:fixed; z-index:900; right:22px; bottom:22px; display:grid; width:54px; aspect-ratio:1; place-items:center; color:white; background:#25d366; border-radius:50%; box-shadow:0 15px 40px rgba(0,0,0,.35); }
.whatsapp-float svg { width:26px; fill:currentColor; }
.mobile-bottom-nav { display:none; }
.flash { position:fixed; z-index:1200; top:100px; right:20px; max-width:420px; padding:14px 18px; border-radius:12px; box-shadow:var(--ws-shadow); }
.flash-success { color:#d1fae5; border:1px solid rgba(34,197,94,.4); background:rgba(6,78,59,.95); }

.page-widget { overflow:hidden; }
.ws-builder-hero,.ws-builder-split,.ws-builder-cta,.ws-builder-metrics { width:min(calc(100% - 48px),var(--ws-max)); margin:80px auto; }
.ws-builder-hero,.ws-builder-split { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:60px; }
.ws-builder-hero img,.ws-builder-split img { width:100%; min-height:480px; object-fit:cover; border-radius:var(--ws-radius); }
.ws-builder-cta { padding:70px; text-align:center; border:1px solid var(--ws-line); background:var(--ws-card); border-radius:var(--ws-radius); }
.ws-builder-cta .button-row { justify-content:center; }
.ws-builder-metrics { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.ws-builder-metrics div { display:grid; padding:25px; border:1px solid var(--ws-line); border-radius:14px; }
.ws-builder-metrics strong { color:var(--ws-accent); font-size:2.4rem; }
.reveal { opacity:0; transform:translateY(30px); }
.reveal.is-visible { opacity:1; transform:none; transition:opacity .75s ease,transform .75s cubic-bezier(.2,.8,.2,1); }

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

@media (max-width: 1180px) {
    .desktop-nav { display:none; }
    .menu-toggle { display:block; }
    .header-actions .account-link { display:none; }
    .drawer-brand-lockup { display:grid; }
    body.menu-open .header-shell > .brand { visibility:hidden; opacity:0; }
    body.menu-open .site-header { transform:none; }
    body.menu-open .header-actions > :not(.menu-toggle) { visibility:hidden; opacity:0; pointer-events:none; }
    body.menu-open .mobile-bottom-nav,
    body.menu-open .whatsapp-float { visibility:hidden; opacity:0; pointer-events:none; }
    body.menu-open .menu-toggle { border-color:rgba(255,255,255,.28); background:rgba(255,255,255,.08); }
    body.menu-open .menu-toggle span:first-child { transform:translateY(3px) rotate(45deg); }
    body.menu-open .menu-toggle span:last-child { transform:translateY(-3px) rotate(-45deg); }
    .hero-grid { grid-template-columns:1fr .75fr; }
    .product-grid { grid-template-columns:repeat(3,1fr); }
    .feature-grid { grid-template-columns:repeat(2,1fr); }
    .custom-room-shell { grid-template-columns:360px 1fr; }
    .footer-grid { grid-template-columns:1.3fr repeat(3,1fr); gap:25px; }
}

@media (max-width: 900px) {
    .section-shell { width:min(calc(100% - 32px),var(--ws-max)); }
    .section-heading,.studio-feature,.story-grid,.product-detail,.form-layout,.contact-layout,.studio-header,.auth-page,.ws-builder-hero,.ws-builder-split { grid-template-columns:1fr; }
    .home-hero,.hero-grid { min-height:850px; }
    body { padding-bottom:78px; }
    .hero-grid { display:block; padding-top:180px; }
    .hero-copy { position:relative; z-index:5; }
    .hero-product-accent { right:24px; bottom:82px; }
    .hero-proof { display:none; }
    .category-card:nth-child(n) { grid-column:span 6; min-height:390px; }
    .category-card:last-child { grid-column:span 12; }
    .assembly-section { grid-template-columns:1fr; padding-block:100px; }
    .assembly-stage { min-height:600px; }
    .studio-feature:nth-child(even) > img { order:2; }
    .empty-showcase { grid-template-columns:1fr; }
    .product-grid { grid-template-columns:repeat(2,1fr); }
    .process-row { grid-template-columns:55px 1fr 220px; gap:20px; padding:25px 10px; }
    .policy-layout { grid-template-columns:1fr; gap:35px; }
    .policy-layout aside { position:static; display:flex; flex-wrap:wrap; }
    .form-aside { position:static; }
    .custom-room-shell { grid-template-columns:1fr; }
    .studio-controls { min-height:620px; border-right:0; border-bottom:1px solid var(--ws-line); }
    .studio-viewport { min-height:640px; }
    .auth-visual { min-height:420px; }
    .auth-card { margin:70px auto; }
    .blog-grid { grid-template-columns:repeat(2,1fr); }
    .footer-grid { grid-template-columns:repeat(2,1fr); }
    .footer-cta { align-items:start; flex-direction:column; }
    .ws-builder-metrics { grid-template-columns:repeat(2,1fr); }
    .capability-grid,.quality-stage-grid,.responsibility-grid,.factory-tour-grid { grid-template-columns:repeat(2,1fr); }
    .manufacturing-intro,.production-control,.testing-layout,.documentation-section,.partnership-flow,.factory-tour-intro { grid-template-columns:1fr; }
    .manufacturing-cta .section-shell,.quality-cta .section-shell,.about-cta .section-shell,.factory-tour-cta .section-shell { align-items:flex-start; flex-direction:column; }
    .mobile-bottom-nav {
        position:fixed; z-index:950; right:8px; bottom:8px; left:8px; display:grid; height:70px; grid-template-columns:repeat(5,1fr);
        padding:7px 6px; border:1px solid var(--ws-line); background:rgba(5,11,24,.96); border-radius:18px; box-shadow:0 15px 50px rgba(0,0,0,.55); backdrop-filter:blur(18px);
    }
    .mobile-bottom-nav a,.mobile-bottom-nav button { display:grid; min-width:0; place-items:center; align-content:center; gap:2px; padding:0; color:#7788a1; border:0; background:transparent; font-size:.58rem; }
    .mobile-bottom-nav svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
    .mobile-bottom-nav .active { color:var(--ws-accent); }
    .mobile-bottom-nav .studio-action { position:relative; color:var(--ws-text); }
    .studio-orb { display:grid; width:52px; aspect-ratio:1; place-items:center; margin-top:-35px; color:#02101f; background:var(--ws-accent); border:5px solid var(--ws-bg); border-radius:50%; box-shadow:0 0 25px rgba(19,184,255,.3); }
    .studio-orb svg { width:24px; height:24px; }
    .whatsapp-float { bottom:92px; }
}

@media (max-width: 700px) {
    body { padding-bottom:78px; }
    h1 { font-size:clamp(2.85rem,14vw,4.8rem); }
    h2 { font-size:clamp(2.15rem,10vw,3.4rem); }
    .section { padding-block:75px; }
    .site-header .header-actions > .btn { display:none; }
    .header-shell { width:calc(100% - 28px); min-height:92px; }
    .brand { width:170px; min-width:170px; height:76px; }
    .brand .brand-logo-full { width:197px; height:197px; }
    .drawer-brand-lockup { top:96px; left:20px; width:200px; height:108px; }
    .drawer-brand-lockup img { width:238px; height:238px; }
    .mobile-drawer { padding:222px 22px max(38px,env(safe-area-inset-bottom)); }
    .brand-wordmark strong { font-size:.9rem; }
    .brand-wordmark small { font-size:.48rem; }
    .home-hero,.hero-grid { min-height:790px; }
    .hero-grid { padding-top:145px; }
    .hero-copy > p:not(.eyebrow) { font-size:.96rem; }
    .hero-product-accent { display:none; }
    .category-grid { display:grid; grid-template-columns:1fr; }
    .category-card:nth-child(n) { grid-column:auto; min-height:420px; }
    .assembly-section { padding-inline:20px; }
    .assembly-stage { min-height:430px; }
    .assembly-stage img { width:125%; }
    .studio-media > img,.studio-feature > img,.rounded-media { min-height:380px; }
    .product-grid,.feature-grid,.blog-grid,.dashboard-stats,.option-columns { grid-template-columns:1fr; }
    .placeholder-products { gap:6px; }
    .story-mosaic img,.story-mosaic img:first-child { height:260px; grid-row:auto; }
    .story-mosaic { grid-template-columns:1fr; }
    .inner-hero,.image-hero,.collection-hero,.form-hero,.blog-hero,.compact-hero { min-height:520px; }
    .inner-hero .section-shell,.image-hero .section-shell,.collection-hero .section-shell,.form-hero .section-shell,.blog-hero .section-shell { padding-bottom:48px; }
    .catalogue-toolbar { grid-template-columns:1fr; }
    .ws-pagination { gap:6px; padding:8px; }
    .pagination-pages { gap:3px; }
    .ws-pagination a,.ws-pagination span { min-width:36px; height:38px; padding-inline:8px; font-size:.76rem; }
    .ws-pagination .pagination-control { min-width:42px; }
    .ws-pagination .pagination-control span { display:none; }
    .product-detail { padding-top:110px; }
    .product-info { position:static; }
    .spec-grid { grid-template-columns:1fr; }
    .tab-buttons { overflow-x:auto; }
    .process-row,.process-row.text-only { grid-template-columns:45px 1fr; }
    .process-row img { grid-column:2; }
    .form-grid { grid-template-columns:1fr; }
    .field.full,.upload-drop.full,.form-grid .full { grid-column:auto; }
    .premium-form { padding:24px 18px; }
    .article-page { padding-top:120px; }
    .article-cta { padding:35px 20px; }
    .studio-header { padding-top:120px; }
    .custom-room-shell { width:calc(100% - 20px); }
    .studio-controls { min-height:650px; padding:20px; }
    .step-actions { right:20px; left:20px; }
    .studio-viewport { min-height:520px; }
    .model-mount { bottom:60px; }
    .model-tools { top:15px; right:15px; }
    .view-controls { bottom:15px; width:calc(100% - 30px); justify-content:center; }
    .view-controls button { flex:1; padding-inline:8px; }
    .auth-page { padding-top:70px; }
    .auth-visual { min-height:360px; }
    .auth-card { width:calc(100% - 24px); padding:30px 20px; }
    .dashboard-hero { align-items:start; flex-direction:column; justify-content:end; }
    .quote-list article,.quote-list article > div:last-child { align-items:start; flex-direction:column; }
    .footer-grid { grid-template-columns:1fr; }
    .footer-bottom { align-items:start; flex-direction:column; padding-bottom:35px; }
    .whatsapp-float { right:14px; bottom:92px; width:48px; }
    .mobile-bottom-nav {
        position:fixed; z-index:950; right:8px; bottom:8px; left:8px; display:grid; height:70px; grid-template-columns:repeat(5,1fr);
        padding:7px 6px; border:1px solid var(--ws-line); background:rgba(5,11,24,.94); border-radius:18px; box-shadow:0 15px 50px rgba(0,0,0,.55); backdrop-filter:blur(18px);
    }
    .mobile-bottom-nav a,.mobile-bottom-nav button { display:grid; min-width:0; place-items:center; align-content:center; gap:2px; padding:0; color:#7788a1; border:0; background:transparent; font-size:.58rem; }
    .mobile-bottom-nav svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
    .mobile-bottom-nav .active { color:var(--ws-accent); }
    .mobile-bottom-nav .studio-action { position:relative; color:var(--ws-text); }
    .studio-orb { display:grid; width:52px; aspect-ratio:1; place-items:center; margin-top:-35px; color:#02101f; background:var(--ws-accent); border:5px solid var(--ws-bg); border-radius:50%; box-shadow:0 0 25px rgba(19,184,255,.3); }
    .studio-orb svg { width:24px; height:24px; }
    .ws-builder-hero,.ws-builder-split,.ws-builder-cta,.ws-builder-metrics { width:calc(100% - 30px); margin-block:60px; }
    .ws-builder-cta { padding:40px 20px; }
    .ws-builder-metrics { grid-template-columns:1fr; }
    .capability-grid,.quality-stage-grid,.responsibility-grid,.factory-tour-grid { grid-template-columns:1fr; }
    .capability-card img,.quality-stage img,.tour-card img { height:260px; }
    .responsibility-card { grid-template-columns:1fr; }
    .responsibility-card img { min-height:230px; }
    .control-points,.document-list { grid-template-columns:1fr; }
    .production-control-media img,.testing-media img { min-height:390px; }
}

/* Winspire 1.4 — live Custom Room */
.studio-header-live { padding-bottom: 34px; }
.studio-header-live h1 span { color: var(--ws-accent); }
.live-studio-shell {
    position: relative;
    overflow: hidden;
    margin-bottom: 54px;
    border: 1px solid rgba(19,184,255,.26);
    background: #050b18;
    border-radius: 24px;
    box-shadow: 0 35px 110px rgba(0,0,0,.46);
}
.live-studio-toolbar {
    position: relative;
    z-index: 5;
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 18px 14px 22px;
    border-bottom: 1px solid var(--ws-line);
    background: linear-gradient(90deg,rgba(10,30,62,.98),rgba(5,11,24,.98));
}
.live-studio-state { display: flex; min-width: 0; align-items: center; gap: 13px; }
.live-studio-state > span {
    flex: 0 0 auto;
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    transition: .25s ease;
}
.live-studio-state > span.online { background: #22c55e; box-shadow: 0 0 16px #22c55e; }
.live-studio-state > span.standby { background: #f59e0b; box-shadow: 0 0 16px #f59e0b; }
.live-studio-state > div { display: grid; min-width: 0; gap: 3px; }
.live-studio-state strong { font-size: .86rem; }
.live-studio-state small { overflow: hidden; color: var(--ws-muted); font-size: .7rem; text-overflow: ellipsis; white-space: nowrap; }
.live-studio-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.live-studio-actions .btn[disabled] { cursor: wait; opacity: .5; }
.live-studio-actions .is-saved { color: #bbf7d0; border-color: rgba(34,197,94,.45); }
.live-studio-frame-wrap { position: relative; height: clamp(760px,calc(100vh - 150px),980px); background: #05070d; }
.live-studio-frame { display: block; width: 100%; height: 100%; border: 0; background: #05070d; }
.studio-frame-loader {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 18px;
    color: #dceafa;
    background: radial-gradient(circle,rgba(19,184,255,.12),transparent 30%),#050b18;
    transition: opacity .4s ease,visibility .4s ease;
}
.studio-frame-loader.is-complete { visibility: hidden; opacity: 0; }
.studio-frame-loader span {
    width: 62px;
    aspect-ratio: 1;
    border: 2px solid rgba(19,184,255,.18);
    border-top-color: var(--ws-accent);
    border-radius: 50%;
    animation: loaderOrbit 1s linear infinite;
}
.studio-frame-loader strong { font-size: .8rem; letter-spacing: .04em; }
.studio-unavailable {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 55px;
    padding: 44px;
}
.studio-unavailable img { width: 100%; min-height: 520px; object-fit: cover; border: 1px solid var(--ws-line); border-radius: 18px; }
.studio-unavailable p:not(.eyebrow) { color: var(--ws-muted); }
.studio-unavailable code { color: var(--ws-accent); }
.studio-trust {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    margin-bottom: 100px;
    overflow: hidden;
    border: 1px solid var(--ws-line);
    border-radius: 18px;
}
.studio-trust > div { min-height: 180px; padding: 27px; background: var(--ws-card); }
.studio-trust span { color: var(--ws-accent); font-size: .7rem; font-weight: 800; }
.studio-trust strong { display: block; margin: 35px 0 9px; font-family: "Space Grotesk","Manrope",sans-serif; font-size: 1.25rem; }
.studio-trust p { margin: 0; color: var(--ws-muted); font-size: .82rem; }

/* Winspire 1.4 — complete About page */
.about-hero .hero-shade { background: linear-gradient(90deg,rgba(3,8,18,.96),rgba(3,8,18,.25)),linear-gradient(0deg,var(--ws-bg),transparent 45%); }
.about-hero h1 span { color: var(--ws-accent); }
.about-introduction {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    align-items: center;
    gap: clamp(50px,8vw,120px);
}
.about-introduction-copy > p:not(.eyebrow) { color: var(--ws-muted); }
.about-introduction-media { position: relative; }
.about-introduction-media .rounded-media { min-height: 640px; }
.origin-card {
    position: absolute;
    right: -24px;
    bottom: 28px;
    display: grid;
    width: min(340px,80%);
    gap: 6px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(4,11,24,.88);
    border-radius: 17px;
    box-shadow: var(--ws-shadow);
    backdrop-filter: blur(18px);
}
.origin-card span,.about-category-card span { color: var(--ws-accent); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.origin-card strong { font-family: "Space Grotesk","Manrope",sans-serif; font-size: 1.35rem; }
.origin-card p { margin: 0; color: var(--ws-muted); font-size: .77rem; }
.about-manufactures { background: linear-gradient(145deg,#07152b,#040914); }
.about-category-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.about-category-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--ws-line);
    border-radius: 20px;
}
.about-category-card:nth-child(1),.about-category-card:nth-child(2) { grid-column: span 3; }
.about-category-card:nth-child(n+3) { grid-column: span 2; min-height: 390px; }
.about-category-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg,rgba(3,8,18,.97),rgba(3,8,18,.05) 75%); }
.about-category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.about-category-card:hover img { transform: scale(1.05); }
.about-category-card > div { position: absolute; z-index: 2; right: 24px; bottom: 24px; left: 24px; }
.about-category-card h3 { margin: 10px 0 9px; font-size: clamp(1.5rem,2.7vw,2.5rem); }
.about-category-card p { margin: 0; color: #c4d1e3; font-size: .82rem; }
.engineering-story {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: clamp(50px,8vw,120px);
}
.engineering-story-media { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.engineering-story-media img { width: 100%; height: 250px; object-fit: cover; border-radius: 16px; }
.engineering-story-media img:first-child { grid-row: span 2; height: 512px; }
.engineering-story-copy > p:not(.eyebrow),.engineering-points p { color: var(--ws-muted); }
.engineering-points { display: grid; gap: 1px; margin-top: 28px; overflow: hidden; border: 1px solid var(--ws-line); border-radius: 15px; }
.engineering-points > div { display: grid; grid-template-columns: 34px 1fr; gap: 5px 14px; padding: 18px; background: var(--ws-card); }
.engineering-points span { grid-row: span 2; color: var(--ws-accent); font-size: .65rem; font-weight: 800; }
.engineering-points strong { font-size: .92rem; }
.engineering-points p { margin: 0; font-size: .78rem; }
.about-oem { background: linear-gradient(135deg,#061225,#030711); }
.about-oem-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px,8vw,120px); }
.about-oem-grid > div > p:not(.eyebrow) { color: var(--ws-muted); }
.about-oem-grid .rounded-media { min-height: 660px; }
.about-process { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin: 0; padding: 0; overflow: hidden; border: 1px solid var(--ws-line); border-radius: 20px; list-style: none; }
.about-process li { display: grid; min-height: 270px; grid-template-columns: 35px 1fr; gap: 16px; padding: 28px; background: var(--ws-card); }
.about-process li span { color: var(--ws-accent); font-size: .7rem; font-weight: 800; }
.about-process h3 { margin: 52px 0 10px; }
.about-process p { margin: 0; color: var(--ws-muted); font-size: .82rem; }
.about-values .feature-grid { grid-template-columns: repeat(3,1fr); }
.founder-statement { background: radial-gradient(circle at 12% 20%,rgba(19,184,255,.14),transparent 30rem),#040914; }
.founder-statement-grid { display: grid; grid-template-columns: 90px 1.3fr .7fr; align-items: center; gap: 38px; }
.quote-mark { align-self: start; color: var(--ws-accent); font-family: Georgia,serif; font-size: 9rem; line-height: .8; opacity: .7; }
.founder-statement blockquote { margin: 0; }
.founder-statement blockquote > p { margin: 0; font-family: "Space Grotesk","Manrope",sans-serif; font-size: clamp(1.5rem,3vw,2.7rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.25; }
.founder-statement blockquote footer { display: grid; gap: 3px; margin-top: 28px; }
.founder-statement blockquote footer span { color: var(--ws-muted); font-size: .8rem; }
.founder-principle { display: grid; gap: 10px; padding: 26px; border: 1px solid var(--ws-line); background: var(--ws-card); border-radius: 16px; }
.founder-principle span { color: var(--ws-accent); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.founder-principle strong { font-size: 1rem; line-height: 1.5; }

@media (max-width: 980px) {
    .live-studio-toolbar { align-items: flex-start; flex-direction: column; }
    .live-studio-actions { width: 100%; }
    .live-studio-actions .btn { flex: 1; }
    .live-studio-frame-wrap { height: 860px; }
    .studio-unavailable,.about-introduction,.engineering-story,.about-oem-grid { grid-template-columns: 1fr; }
    .studio-trust { grid-template-columns: 1fr; }
    .about-category-card:nth-child(n) { grid-column: span 3; }
    .about-category-card:last-child { grid-column: span 6; }
    .about-process { grid-template-columns: repeat(2,1fr); }
    .about-values .feature-grid { grid-template-columns: repeat(2,1fr); }
    .founder-statement-grid { grid-template-columns: 70px 1fr; }
    .founder-principle { grid-column: 2; }
}

@media (max-width: 700px) {
    .studio-header-live { grid-template-columns: 1fr; gap: 18px; }
    .live-studio-shell { width: calc(100% - 12px); border-radius: 17px; }
    .live-studio-toolbar { min-height: 122px; padding: 14px; }
    .live-studio-state small { max-width: 84vw; }
    .live-studio-actions { display: grid; grid-template-columns: repeat(3,1fr); }
    .live-studio-actions .btn { min-height: 42px; padding-inline: 8px; font-size: .66rem; }
    .live-studio-frame-wrap { height: 760px; }
    .studio-unavailable { gap: 25px; padding: 18px; }
    .studio-unavailable img { min-height: 320px; }
    .studio-trust { margin-bottom: 76px; }
    .about-introduction-media .rounded-media,.about-oem-grid .rounded-media { min-height: 430px; }
    .origin-card { right: 12px; bottom: 12px; }
    .about-category-grid { grid-template-columns: 1fr; }
    .about-category-card:nth-child(n) { grid-column: auto; min-height: 420px; }
    .engineering-story-media { grid-template-columns: 1fr; }
    .engineering-story-media img,.engineering-story-media img:first-child { height: 270px; grid-row: auto; }
    .about-process,.about-values .feature-grid { grid-template-columns: 1fr; }
    .founder-statement-grid { grid-template-columns: 1fr; gap: 15px; }
    .quote-mark { font-size: 6rem; }
    .founder-principle { grid-column: auto; }
}
/* Winspire footer social links */
.site-footer .footer-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.site-footer .footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transition: 0.25s ease;
}

.site-footer .footer-socials a:hover {
    color: #030711;
    background: var(--ws-accent, #f4c542);
    border-color: var(--ws-accent, #f4c542);
    transform: translateY(-3px);
}

.site-footer .footer-socials svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: currentColor;
}