
  :root{
    --navy-deep:#141B3F;
    --navy:#29357D;
    --orange:#F8981D;
    --orange-dark:#DE7F08;
    --grey:#666366;
    --grey-light:#8A8890;
    --off-white:#F7F7F9;
    --white:#FFFFFF;
    --line:#E4E4E9;
    --max:1180px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Barlow', sans-serif;
    color:var(--navy-deep);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  .lede-mobile{display:none;}
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  .wrap{max-width:var(--max); margin:0 auto; padding:0 24px;}
  .wrap-90{width:90%; max-width:none; margin:0 auto;}
  h1,h2,h3{font-family:'Bebas Neue', sans-serif; letter-spacing:0.5px; line-height:1;}
  .eyebrow{
    font-family:'Barlow Condensed', sans-serif;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2.5px;
    font-size:13px;
    color:var(--orange-dark);
  }
  button, .btn{cursor:pointer; font-family:'Barlow Condensed', sans-serif;}
  :focus-visible{outline:3px solid var(--orange); outline-offset:2px;}
  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
  }

  /* ---------- FULL-SCREEN SECTION SCROLL ---------- */
  @media (min-width:761px) and (min-height:620px){
    .hero,
    .showcase,
    .brands-section,
    .callback-section{
      min-height:100svh;
    }
  }

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

  /* ---------- HEADER ---------- */
  header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:var(--white);
    box-shadow:0 2px 16px rgba(20,27,63,0.08);
    padding:16px 0;
  }
  .header-inner{display:flex; align-items:center; justify-content:space-between; gap:24px;}
  .logo-link img{height:50px; width:auto;}
  nav{display:flex; align-items:center; gap:36px;}
  nav a{
    font-family:'Barlow Condensed', sans-serif;
    font-weight:600; font-size:16px; letter-spacing:0.5px;
    text-transform:uppercase; color:var(--navy-deep);
    position:relative; padding:4px 0;
  }
  nav a::after{
    content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px;
    background:var(--orange); transition:width 0.25s ease;
  }
  nav a:hover::after, nav a.active::after{width:100%;}
  .call-btn{
    display:flex; align-items:center; gap:8px;
    background:var(--orange); color:var(--navy-deep);
    padding:10px 18px; border-radius:3px;
    font-weight:700; font-size:15px; letter-spacing:0.5px;
    text-transform:uppercase;
    transition:background 0.2s ease;
  }
  .call-btn:hover{background:#ffab3d;}
  .menu-toggle{display:none; background:none; border:none; padding:4px;}
  .menu-toggle span{display:block; width:26px; height:3px; background:var(--navy-deep); margin:5px 0; border-radius:2px;}

  /* ---------- SHARED FIXED BACKGROUND ---------- */
  .site-bg{
    position:fixed; inset:0; width:100vw; height:100vh; z-index:-2;
  }
  .site-bg img{width:100%; height:100%; object-fit:cover; object-position:left center; opacity:0.9;}
  .site-overlay{
    position:fixed; inset:0; z-index:-1; pointer-events:none;
    background:
      linear-gradient(0deg, rgba(15,20,50,0.96) 0%, rgba(15,20,50,0.66) 42%, rgba(15,20,50,0.48) 65%, rgba(20,27,63,0.62) 100%),
      linear-gradient(100deg, rgba(20,27,63,0.55) 0%, rgba(20,27,63,0.1) 45%);
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative; height:100svh;
    display:flex; align-items:center;
    padding-top:82px;
    padding-bottom:92px;
    background:transparent;
    overflow:hidden;
  }
  .hero-content{
    position:relative; z-index:2;
    padding:0;
  }
  @keyframes heroSlideIn{
    from{opacity:0; transform:translateY(28px);}
    to{opacity:1; transform:translateY(0);}
  }
  .hero-eyebrow, .hero-title, .hero p.lede, .hero-actions{
    opacity:0;
    transform:translateY(28px);
  }
  .hero-content.in-view .hero-eyebrow,
  .hero-content.in-view .hero-title,
  .hero-content.in-view p.lede,
  .hero-content.in-view .hero-actions{
    animation:heroSlideIn 0.75s cubic-bezier(.2,.7,.3,1) forwards;
  }
  .hero-content.in-view .hero-eyebrow{animation-delay:0.1s;}
  .hero-content.in-view .hero-title{animation-delay:0.25s;}
  .hero-content.in-view p.lede{animation-delay:0.45s;}
  .hero-content.in-view .hero-actions{animation-delay:0.6s;}
  .hero-eyebrow{
    color:var(--orange); font-family:'Barlow Condensed', sans-serif;
    font-weight:700; text-transform:uppercase; letter-spacing:3px;
    font-size:14px; margin-bottom:12px; display:flex; align-items:center; gap:12px;
  }
  .hero-eyebrow::before{content:''; width:36px; height:2px; background:var(--orange);}
  .hero-title{
    color:var(--white);
    font-size:clamp(48px, 7vw, 90px);
    max-width:760px;
  }
  .hero-title em{font-style:normal; color:var(--orange);}
  h2 em{font-style:normal; color:var(--orange);}
  .hero p.lede{
    color:#D8DAEA; font-size:17px; line-height:1.48; max-width:660px;
    margin:18px 0 24px; font-weight:400;
  }
  .hero-actions{display:flex; gap:16px; flex-wrap:wrap;}
  .btn-primary{
    background:var(--orange); color:var(--navy-deep);
    padding:16px 32px; border-radius:3px; border:none;
    font-weight:700; font-size:17px; letter-spacing:0.5px; text-transform:uppercase;
    display:inline-flex; align-items:center; gap:10px;
    transition:transform 0.2s ease, background 0.2s ease;
  }
  .btn-primary:hover{background:#ffab3d; transform:translateY(-2px);}
  .btn-secondary{
    background:transparent; color:var(--white);
    padding:16px 32px; border-radius:3px; border:2px solid rgba(255,255,255,0.55);
    font-weight:700; font-size:17px; letter-spacing:0.5px; text-transform:uppercase;
    transition:border-color 0.2s ease, background 0.2s ease;
  }
  .btn-secondary:hover{border-color:var(--white); background:rgba(255,255,255,0.08);}

  /* ---------- TRUST BAR ---------- */
  .trust-bar{
    background:var(--navy); position:relative; z-index:4;
    padding:64px 0 42px;
    margin-top:-40px;
    clip-path:polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  }
  .trust-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:32px;
  }
  .trust-item{
    display:flex; align-items:flex-start; gap:18px;
    opacity:0; transform:translateY(26px) scale(0.9);
    transition:opacity 0.65s cubic-bezier(.34,1.56,.64,1), transform 0.65s cubic-bezier(.34,1.56,.64,1);
  }
  .trust-item.in-view{opacity:1; transform:translateY(0) scale(1);}
  .trust-item:nth-child(1).in-view{transition-delay:0s;}
  .trust-item:nth-child(2).in-view{transition-delay:0.12s;}
  .trust-item:nth-child(3).in-view{transition-delay:0.24s;}
  .trust-item:nth-child(4).in-view{transition-delay:0.36s;}
  .trust-item .icon{
    flex:none; width:70px; height:70px; border-radius:50%;
    background:rgba(255,255,255,0.14); display:flex; align-items:center; justify-content:center;
    transition:transform 0.35s cubic-bezier(.34,1.56,.64,1), background 0.3s ease;
  }
  .trust-item:hover .icon{transform:scale(1.12) rotate(-6deg); background:rgba(248,152,29,0.28);}
  .trust-item .icon svg{width:34px; height:34px; stroke:var(--white);}
  .trust-item strong{
    display:block; color:var(--orange); font-family:'Barlow Condensed', sans-serif;
    font-weight:700; font-size:17px; text-transform:uppercase; letter-spacing:0.4px;
    margin-top:6px;
  }
  .trust-item span{color:#B7BBDA; font-size:14.5px;}

  /* ---------- SECTION GENERIC ---------- */
  section{padding:96px 0;}
  .section-head{max-width:640px; margin-bottom:56px;}
  .section-head h2{font-size:clamp(36px,5vw,52px); color:var(--navy-deep); margin-top:10px;}
  .section-head p{color:var(--grey); font-size:17px; line-height:1.65; margin-top:16px;}

  /* ---------- ABOUT TEASER ---------- */
  .about-teaser{background:var(--off-white);}
  .about-grid{
    display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
  }
  .eyebrow-lg{font-size:15px; letter-spacing:3px; margin-bottom:6px;}
  .section-h1{
    font-family:'Bebas Neue', sans-serif; color:var(--navy-deep);
    font-size:clamp(32px,4.6vw,48px); line-height:1.08; letter-spacing:0.3px;
    margin:8px 0 22px;
  }
  .about-copy p{color:var(--grey); font-size:16.5px; line-height:1.75; margin-bottom:16px;}
  .link-arrow{
    display:inline-flex; align-items:center; gap:8px; margin-top:8px;
    font-family:'Barlow Condensed', sans-serif; font-weight:700; text-transform:uppercase;
    letter-spacing:0.5px; color:var(--navy); font-size:16px; border-bottom:2px solid var(--orange); padding-bottom:3px;
    transition:gap 0.2s ease;
  }
  .link-arrow:hover{gap:14px;}
  .about-visual{
    position:relative; border-radius:8px; overflow:hidden; aspect-ratio:4/5;
    background:linear-gradient(135deg,var(--navy),var(--navy-deep));
  }
  .about-visual .frame{
    position:absolute; inset:18px; border:2px solid rgba(248,152,29,0.5); border-radius:6px;
  }
  .about-visual-content{
    position:relative; height:100%; display:flex; flex-direction:column; justify-content:flex-end; padding:40px;
  }
  .about-visual-content .big-year{
    font-family:'Bebas Neue', sans-serif; color:rgba(255,255,255,0.12); font-size:140px; position:absolute; top:20px; left:30px; line-height:1;
  }
  .about-visual-content h3{color:var(--white); font-size:30px; margin-bottom:8px;}
  .about-visual-content p{color:#C7CBE8; font-size:14.5px; line-height:1.6;}

  /* ---------- PRODUCTS TEASER ---------- */
  .products-teaser{background:var(--white);}
  .cat-grid{
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  }
  .cat-card{
    position:relative; background:var(--navy-deep); border-radius:8px; overflow:hidden;
    aspect-ratio:3/3.6; padding:24px; display:flex; flex-direction:column; justify-content:flex-end;
    transition:transform 0.25s ease;
  }
  .cat-card:hover{transform:translateY(-6px);}
  .cat-card::before{
    content:''; position:absolute; inset:0;
    background:radial-gradient(circle at 30% 20%, rgba(41,53,125,0.9), rgba(20,27,63,0.98));
  }
  .cat-card .cat-icon{
    position:relative; z-index:2; width:52px; height:52px; border-radius:50%;
    background:rgba(248,152,29,0.15); border:1px solid rgba(248,152,29,0.4);
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  }
  .cat-card .cat-icon svg{width:24px; height:24px; stroke:var(--orange);}
  .cat-card h3{position:relative; z-index:2; color:var(--white); font-size:24px; margin-bottom:6px;}
  .cat-card p{position:relative; z-index:2; color:#AEB3D6; font-size:13.5px; line-height:1.5;}
  .products-cta{display:flex; justify-content:center; margin-top:48px;}
  .btn-dark{
    background:var(--navy-deep); color:var(--white); padding:16px 34px; border-radius:3px;
    font-weight:700; font-size:16px; letter-spacing:0.5px; text-transform:uppercase; border:none;
    display:inline-flex; align-items:center; gap:10px; transition:background 0.2s ease;
  }
  .btn-dark:hover{background:var(--navy);}

  /* ---------- LOCATIONS ---------- */
  .locations{background:var(--off-white);}
  .loc-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
  .loc-card{
    background:var(--white); border:1px solid var(--line); border-radius:8px; padding:36px;
    position:relative; overflow:hidden;
  }
  .loc-card .pin{
    width:46px; height:46px; border-radius:50%; background:var(--orange);
    display:flex; align-items:center; justify-content:center; margin-bottom:20px;
  }
  .loc-card .pin svg{width:22px; height:22px; stroke:var(--white); fill:none;}
  .loc-card h3{font-size:30px; color:var(--navy-deep); margin-bottom:14px;}
  .loc-detail{display:flex; align-items:center; gap:10px; margin-bottom:10px; color:var(--grey); font-size:15.5px;}
  .loc-detail svg{width:16px; height:16px; stroke:var(--navy); flex:none;}
  .loc-detail a{font-weight:600; color:var(--navy-deep);}
  .loc-detail a:hover{color:var(--orange-dark);}

  /* ---------- CTA STRIP ---------- */
  .cta-strip{
    background:linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
    padding:70px 0; text-align:center;
  }
  .cta-strip h2{color:var(--white); font-size:clamp(32px,5vw,48px); margin-bottom:16px;}
  .cta-strip p{color:#C7CBE8; font-size:17px; margin-bottom:32px;}
  .cta-strip .hero-actions{justify-content:center;}

  /* ---------- HERO FOOTER BAR ---------- */
  .hero-footer{
    position:fixed; left:5%; right:5%; bottom:0;
    width:auto; margin:0;
    z-index:90;
    display:flex; align-items:center; justify-content:space-between;
    padding:22px 0 26px;
    color:rgba(255,255,255,0.6);
  }
  @media (min-width:761px) and (min-height:620px){
    .hero,
    .showcase,
    .warehouse-gallery,
    .brands-section,
    .callback-section{
      padding-bottom:90px;
    }
    .warehouse-gallery{
      min-height:100svh;
      padding-top:82px;
    }
    .brands-section{
      min-height:100svh;
      padding-top:82px;
    }
    .callback-section{
      min-height:100svh;
      padding-top:82px;
    }
  }
  .footer-copy{font-size:12.5px; letter-spacing:0.3px; white-space:nowrap;}
  .footer-links{display:flex; align-items:center; gap:26px;}
  .footer-links a{
    font-family:'Barlow Condensed', sans-serif; font-weight:600; text-transform:uppercase;
    letter-spacing:1px; font-size:12.5px; color:rgba(255,255,255,0.6); transition:color 0.2s ease;
  }
  .footer-links a:hover{color:var(--orange);}

  /* ---------- SCROLL CUE ---------- */
  .scroll-cue{
    display:flex; flex-direction:column; align-items:center; gap:8px;
    color:rgba(255,255,255,0.6);
    transition:color 0.25s ease;
  }
  .scroll-cue:hover{color:rgba(255,255,255,0.95);}
  .scroll-cue svg{width:18px; height:30px;}
  .scroll-cue span{
    font-family:'Barlow Condensed', sans-serif; font-weight:600; text-transform:uppercase;
    letter-spacing:2px; font-size:10.5px;
  }
  .scroll-dot{animation:scrollDotMove 1.8s ease-in-out infinite;}
  @keyframes scrollDotMove{
    0%{opacity:1; transform:translateY(0);}
    60%{opacity:0; transform:translateY(14px);}
    61%{opacity:0; transform:translateY(0);}
    100%{opacity:1; transform:translateY(0);}
  }
  .scroll-cue.scroll-up .scroll-dot{animation-name:scrollDotMoveUp;}
  @keyframes scrollDotMoveUp{
    0%{opacity:1; transform:translateY(14px);}
    60%{opacity:0; transform:translateY(0);}
    61%{opacity:0; transform:translateY(14px);}
    100%{opacity:1; transform:translateY(14px);}
  }

  /* ---------- SECTION DOT NAV ---------- */
  .section-dots{
    position:fixed;
    top:50%;
    right:32px;
    z-index:95;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:13px;
    transform:translateY(-50%);
  }
  .section-dot{
    width:5px;
    height:5px;
    border:0;
    border-radius:999px;
    background:rgba(255,255,255,0.34);
    padding:0;
    cursor:pointer;
    position:relative;
    transition:background 0.25s ease, transform 0.25s ease;
  }
  .section-dot::before{
    content:none;
  }
  .section-dot.active{
    background:var(--white);
    transform:scale(1.35);
  }
  .section-dot:hover,
  .section-dot:focus-visible{
    background:var(--orange);
    transform:scale(1.2);
  }

  /* ---------- SHOWCASE / WHY US ---------- */
  .showcase{
    position:relative; min-height:100vh;
    display:flex; align-items:center;
    overflow:hidden;
    background:transparent;
  }
  .showcase-content{
    position:relative; z-index:2; text-align:center; padding:120px 0 90px;
  }
  .showcase-content > .hero-eyebrow,
  .warehouse-content > .hero-eyebrow{
    justify-content:center;
    opacity:0;
    transform:translateY(22px);
    transition:opacity .6s ease,transform .6s ease;
  }
  .showcase-title{
    color:var(--white); font-size:clamp(42px,5.5vw,60px); line-height:1.04;
    max-width:760px; margin-left:auto; margin-right:auto;
    opacity:0; transform:translateY(28px);
    transition:opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.3,1);
  }
  .title-underline{
    width:64px; height:3px; background:var(--orange); margin:26px auto 30px;
    opacity:0; transform:scaleX(0); transform-origin:center;
    transition:opacity 0.5s ease, transform 0.65s cubic-bezier(.2,.7,.3,1);
  }
  .showcase-sub{
    color:#C7CBE8; font-size:17px; line-height:1.65; max-width:640px; margin:0 auto 70px;
    opacity:0; transform:translateY(24px);
    transition:opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.7,.3,1);
  }
  .showcase-icons{
    display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
    max-width:960px; margin:0 auto;
  }
  .showcase-item{
    text-align:center;
    opacity:0; transform:translateY(30px);
    transition:opacity 0.6s ease, transform 0.6s ease;
  }
  .showcase-content.in-view .showcase-title{
    opacity:1; transform:translateY(0); transition-delay:0.08s;
  }
  .showcase-content.in-view > .hero-eyebrow,
  .warehouse-content.in-view > .hero-eyebrow{opacity:1;transform:translateY(0);transition-delay:.04s}
  .showcase-content.in-view .title-underline{
    opacity:1; transform:scaleX(1); transition-delay:0.28s;
  }
  .showcase-content.in-view .showcase-sub{
    opacity:1; transform:translateY(0); transition-delay:0.48s;
  }
  .showcase-content.in-view .showcase-item{opacity:1; transform:translateY(0);}
  .showcase-content.in-view .showcase-item:nth-child(1){transition-delay:0.72s;}
  .showcase-content.in-view .showcase-item:nth-child(2){transition-delay:0.86s;}
  .showcase-content.in-view .showcase-item:nth-child(3){transition-delay:1s;}
  .showcase-content.in-view .showcase-item:nth-child(4){transition-delay:1.14s;}
  .showcase-item .icon-circle{
    width:92px; height:92px; border-radius:50%;
    background:rgba(255,255,255,0.14);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 22px;
  }
  .showcase-item .icon-circle svg{width:40px; height:40px; stroke:var(--white);}
  .showcase-content.in-view .showcase-item .icon-circle{animation:iconPulseIn 0.9s ease forwards;}
  .showcase-content.in-view .showcase-item:nth-child(1) .icon-circle{animation-delay:0.8s;}
  .showcase-content.in-view .showcase-item:nth-child(2) .icon-circle{animation-delay:0.94s;}
  .showcase-content.in-view .showcase-item:nth-child(3) .icon-circle{animation-delay:1.08s;}
  .showcase-content.in-view .showcase-item:nth-child(4) .icon-circle{animation-delay:1.22s;}
  @keyframes iconPulseIn{
    0%{background:rgba(255,255,255,0.14); transform:scale(1);}
    35%{background:var(--orange); transform:scale(1.14);}
    70%{background:rgba(248,152,29,0.35); transform:scale(1.02);}
    100%{background:rgba(255,255,255,0.14); transform:scale(1);}
  }
  .showcase-item h3{
    color:var(--orange); font-family:'Bebas Neue', sans-serif;
    font-size:22px; letter-spacing:0.3px; margin-bottom:8px;
  }
  .showcase-item p{color:#B7BBDA; font-size:14.5px; line-height:1.5;}

  /* ---------- WAREHOUSE GALLERY ---------- */
  .warehouse-gallery{
    position:relative; min-height:100vh;
    display:flex; align-items:center;
    overflow:hidden;
    background:transparent;
  }
  .warehouse-content{
    position:relative; z-index:2;
    text-align:center;
    padding:0;
  }
  .warehouse-title{
    color:var(--white);
    font-size:clamp(42px,5.5vw,60px);
    line-height:1.05;
    max-width:760px; margin-left:auto; margin-right:auto;
    opacity:0; transform:translateY(28px);
    transition:opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.7,.3,1);
  }
  .warehouse-content .title-underline{
    margin:18px auto 24px;
  }
  .warehouse-sub{
    color:#C7CBE8;
    font-size:16px;
    line-height:1.55;
    max-width:700px;
    margin:0 auto 34px;
    opacity:0; transform:translateY(24px);
    transition:opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.7,.3,1);
  }
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    max-width:min(930px, 86vw, calc((100svh - 250px) * 1.95));
    margin:0 auto;
  }
  .gallery-item{
    appearance:none;
    border:1px solid rgba(255,255,255,0.34);
    background:rgba(255,255,255,0.06);
    padding:6px;
    cursor:pointer;
    opacity:0; transform:translateY(30px);
    transition:opacity 0.6s ease, transform 0.6s ease, border-color 0.2s ease, background 0.2s ease;
  }
  .gallery-item:hover,
  .gallery-item:focus-visible{
    border-color:var(--orange);
    background:rgba(248,152,29,0.13);
    transform:translateY(-4px);
  }
  .warehouse-content.in-view .gallery-item:hover,
  .warehouse-content.in-view .gallery-item:focus-visible{
    transform:translateY(-4px);
  }
  .gallery-item img{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
  }
  .warehouse-content.in-view .warehouse-title{
    opacity:1; transform:translateY(0); transition-delay:0.08s;
  }
  .warehouse-content.in-view .title-underline{
    opacity:1; transform:scaleX(1); transition-delay:0.28s;
  }
  .warehouse-content.in-view .warehouse-sub{
    opacity:1; transform:translateY(0); transition-delay:0.48s;
  }
  .warehouse-content.in-view .gallery-item{opacity:1; transform:translateY(0);}
  .warehouse-content.in-view .gallery-item:nth-child(1){transition-delay:0.68s;}
  .warehouse-content.in-view .gallery-item:nth-child(2){transition-delay:0.78s;}
  .warehouse-content.in-view .gallery-item:nth-child(3){transition-delay:0.88s;}
  .warehouse-content.in-view .gallery-item:nth-child(4){transition-delay:0.98s;}
  .warehouse-content.in-view .gallery-item:nth-child(5){transition-delay:1.08s;}
  .warehouse-content.in-view .gallery-item:nth-child(6){transition-delay:1.18s;}

  /* Half-copy, half-carousel warehouse slide */
  .warehouse-content{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    align-items:center;
    gap:clamp(42px,6vw,90px);
    text-align:left;
  }
  .warehouse-copy{max-width:540px;}
  .warehouse-title{max-width:none;margin-left:0;margin-right:0;}
  .warehouse-sub{max-width:520px;margin:0;color:#d1d4e8;}
  .warehouse-slider{
    position:relative;
    width:100%;
    max-width:720px;
    aspect-ratio:4/3;
    justify-self:end;
    border:1px solid rgba(255,255,255,.3);
    background:#0a0e27;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
    overflow:hidden;
  }
  .warehouse-slides{position:absolute;inset:7px;overflow:hidden;}
  .warehouse-slider .gallery-item{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    padding:0;
    border:0;
    opacity:0;
    visibility:hidden;
    transform:scale(1.035);
    transition:opacity .65s ease,transform 1s ease,visibility .65s;
  }
  .warehouse-content.in-view .warehouse-slider .gallery-item{opacity:0;transform:scale(1.035);}
  .warehouse-content.in-view .warehouse-slider .gallery-item.active,
  .warehouse-slider .gallery-item.active{opacity:1;visibility:visible;transform:scale(1);z-index:1;}
  .warehouse-slider .gallery-item:hover,
  .warehouse-slider .gallery-item:focus-visible{transform:scale(1);background:transparent;}
  .warehouse-slider .gallery-item img{width:100%;height:100%;aspect-ratio:auto;object-fit:cover;}
  .gallery-arrow{
    position:absolute;
    z-index:3;
    top:50%;
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:50%;
    background:rgba(10,14,39,.8);
    color:#fff;
    font-size:21px;
    cursor:pointer;
    transform:translateY(-50%);
    transition:.2s ease;
  }
  .gallery-arrow:hover,.gallery-arrow:focus-visible{background:var(--orange);border-color:var(--orange);color:#11152f;}
  .gallery-prev{left:20px}.gallery-next{right:20px}
  .gallery-dots{position:absolute;z-index:3;left:50%;bottom:17px;display:flex;gap:7px;transform:translateX(-50%);}
  .gallery-dots button{width:7px;height:7px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.55);cursor:pointer;transition:.2s ease;}
  .gallery-dots button.active{width:24px;border-radius:8px;background:var(--orange);}

  @media(max-width:760px){
    .warehouse-content{display:flex;flex-direction:column;justify-content:center;gap:22px;text-align:center;}
    .warehouse-copy{max-width:600px;}
    .warehouse-title{margin-left:auto;margin-right:auto;}
    .warehouse-sub{margin:0 auto;}
    .warehouse-slider{width:min(100%,560px);max-height:44svh;justify-self:auto;}
    .gallery-arrow{width:38px;height:38px}.gallery-prev{left:12px}.gallery-next{right:12px}
  }

  /* Refined portrait gallery treatment */
  .warehouse-content{
    grid-template-columns:minmax(360px,.82fr) minmax(620px,1.18fr);
    align-items:start;
    gap:clamp(55px,6vw,110px);
    min-height:calc(100svh - 150px);
  }
  .warehouse-copy{padding-left:clamp(10px,2vw,34px);max-width:570px;}
  .warehouse-copy .hero-eyebrow{display:flex;margin-bottom:14px;}
  .warehouse-title{font-size:clamp(42px,5.5vw,60px);line-height:1.05;}
  .warehouse-title::after{content:none;}
  .warehouse-sub{font-size:16px;line-height:1.55;max-width:520px;}
  .warehouse-brands{margin-top:42px;max-width:570px;}
  .warehouse-brands h3{
    position:relative;
    margin:0 0 18px;
    padding-bottom:13px;
    border-bottom:1px solid rgba(255,255,255,.28);
    color:#fff;
    font:400 25px/1 'Bebas Neue',sans-serif;
    letter-spacing:.8px;
  }
  .warehouse-brands h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-1px;
    width:58px;
    height:2px;
    background:var(--orange);
  }
  .warehouse-brand-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:9px;}
  .warehouse-brand{
    grid-column:span 2;
    min-width:0;
    height:84px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 12px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(255,255,255,.45);
  }
  .warehouse-brand:nth-child(4){grid-column:2/span 2;}
  .warehouse-brand:nth-child(5){grid-column:4/span 2;}
  .warehouse-brand img{display:block;width:100%;height:62px;object-fit:contain;}

  /* Warehouse slide entrance sequence */
  .warehouse-copy .hero-eyebrow,
  .warehouse-title,
  .warehouse-sub,
  .warehouse-brands,
  .warehouse-slider{
    opacity:0;
    transition:opacity .7s ease,transform .78s cubic-bezier(.2,.72,.25,1);
  }
  .warehouse-copy .hero-eyebrow,
  .warehouse-title,
  .warehouse-sub,
  .warehouse-brands{transform:translateY(24px);}
  .warehouse-slider{transform:translateX(46px) scale(.985);}
  .warehouse-brand{opacity:0;transform:translateY(14px) scale(.96);transition:opacity .48s ease,transform .58s cubic-bezier(.2,.72,.25,1);}
  .warehouse-content.in-view .warehouse-copy .hero-eyebrow,
  .warehouse-content.in-view .warehouse-title,
  .warehouse-content.in-view .warehouse-sub,
  .warehouse-content.in-view .warehouse-brands,
  .warehouse-content.in-view .warehouse-slider,
  .warehouse-content.in-view .warehouse-brand{opacity:1;transform:none;}
  .warehouse-content.in-view .warehouse-copy .hero-eyebrow{transition-delay:.05s;}
  .warehouse-content.in-view .warehouse-title{transition-delay:.14s;}
  .warehouse-content.in-view .warehouse-sub{transition-delay:.25s;}
  .warehouse-content.in-view .warehouse-brands{transition-delay:.36s;}
  .warehouse-content.in-view .warehouse-brand:nth-child(1){transition-delay:.43s;}
  .warehouse-content.in-view .warehouse-brand:nth-child(2){transition-delay:.49s;}
  .warehouse-content.in-view .warehouse-brand:nth-child(3){transition-delay:.55s;}
  .warehouse-content.in-view .warehouse-brand:nth-child(4){transition-delay:.61s;}
  .warehouse-content.in-view .warehouse-brand:nth-child(5){transition-delay:.67s;}
  .warehouse-content.in-view .warehouse-slider{transition-delay:.3s;}

  @media(prefers-reduced-motion:reduce){
    .warehouse-copy .hero-eyebrow,.warehouse-title,.warehouse-sub,.warehouse-brands,.warehouse-slider,.warehouse-brand{opacity:1;transform:none;transition:none;}
  }
  .warehouse-slider{
    height:min(68svh,660px);
    max-width:none;
    aspect-ratio:auto;
    overflow:hidden;
    border:0;
    background:transparent;
    box-shadow:none;
  }
  .warehouse-slides{
    inset:0;
    display:flex;
    gap:18px;
    overflow:visible;
    transition:transform .72s cubic-bezier(.22,.7,.25,1);
    will-change:transform;
  }
  .warehouse-slider .gallery-item{
    position:relative;
    inset:auto;
    flex:0 0 61%;
    width:auto;
    height:100%;
    opacity:1;
    visibility:visible;
    transform:none;
    filter:none;
    border:1px solid rgba(255,255,255,.22);
    transition:border-color .2s ease;
  }
  .warehouse-content.in-view .warehouse-slider .gallery-item{opacity:1;visibility:visible;transform:none;filter:none;}
  .warehouse-content.in-view .warehouse-slider .gallery-item.active,
  .warehouse-slider .gallery-item.active{
    opacity:1;
    visibility:visible;
    transform:none;
    filter:none;
  }
  .warehouse-content.in-view .warehouse-slider .gallery-item.next,
  .warehouse-slider .gallery-item.next{
    opacity:1;
    visibility:visible;
    transform:none;
    filter:none;
  }
  .warehouse-slider .gallery-item img{object-fit:cover;object-position:center;}
  .gallery-arrow{
    top:auto;
    bottom:18px;
    width:54px;
    height:54px;
    padding:5px;
    transform:none;
    border:0;
    border-radius:11px;
    background:#fff;
    color:#fff;
    box-shadow:0 8px 24px rgba(0,0,0,.28);
  }
  .gallery-arrow span{display:flex;width:100%;height:100%;align-items:center;justify-content:center;border-radius:50%;background:var(--orange);transition:transform .2s ease,background .2s ease;}
  .gallery-arrow svg{width:25px;height:25px;fill:#fff;}
  .gallery-prev span{transform:rotate(180deg);}
  .gallery-arrow:hover,.gallery-arrow:focus-visible{background:#fff;border-color:transparent;}
  .gallery-next:hover span,.gallery-next:focus-visible span{transform:scale(1.08);background:#ffab36;}
  .gallery-prev:hover span,.gallery-prev:focus-visible span{transform:rotate(180deg) scale(1.08);background:#ffab36;}
  .gallery-prev{left:22px}.gallery-next{left:86px;right:auto;}
  .gallery-count{position:absolute;z-index:4;left:154px;bottom:36px;color:var(--navy);font:700 13px 'Barlow Condensed',sans-serif;letter-spacing:2px;text-shadow:0 1px 2px rgba(255,255,255,.45);}
  .gallery-count span{color:var(--navy);font-size:17px;}

  @media(max-width:1100px) and (min-width:761px){
    .warehouse-content{grid-template-columns:.82fr 1.18fr;gap:34px;}
    .warehouse-copy{padding-left:0;}
    .warehouse-title{font-size:clamp(40px,5vw,52px);}
    .warehouse-sub{font-size:14px;}
    .warehouse-brands{margin-top:28px;}
    .warehouse-brand{height:68px;padding:7px 9px;}
    .warehouse-brand img{height:51px;}
    .warehouse-slider{height:min(62svh,570px);}
  }

  @media(max-width:760px){
    .warehouse-content{min-height:0;gap:18px;align-items:center;}
    .warehouse-copy{padding-left:0;}
    .warehouse-copy .hero-eyebrow{justify-content:center;margin-bottom:10px;}
    .warehouse-title{font-size:clamp(32px,9vw,44px);}
    .warehouse-sub{font-size:13px;line-height:1.45;}
    .warehouse-brands{margin:24px auto 0;max-width:430px;}
    .warehouse-brands h3{font-size:21px;margin-bottom:12px;padding-bottom:10px;}
    .warehouse-brands h3::after{left:50%;width:48px;transform:translateX(-50%);}
    .warehouse-brand-grid{gap:6px;}
    .warehouse-brand{height:45px;padding:5px 7px;}
    .warehouse-brand img{height:33px;}
    .warehouse-slider{width:100%;height:min(48svh,520px);max-height:none;}
    .warehouse-slides{gap:12px;}
    .warehouse-slider .gallery-item{flex-basis:68%;}
    .gallery-arrow{bottom:12px;width:44px;height:44px;padding:4px;border-radius:9px;}
    .gallery-arrow svg{width:20px;height:20px;}
    .gallery-prev{left:12px}.gallery-next{left:64px;}
    .gallery-count{left:120px;bottom:26px;}
  }

  /* Final warehouse positioning and responsive scaling */
  .warehouse-gallery .warehouse-content{
    width:min(90%,1600px);
    min-height:0;
    margin:auto;
    grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
    align-items:center;
  }
  .warehouse-gallery .warehouse-slider{
    height:clamp(430px,64svh,650px);
  }
  .warehouse-gallery .warehouse-brand{
    height:clamp(62px,8svh,84px);
  }
  .warehouse-gallery .warehouse-brand img{
    height:clamp(44px,6svh,62px);
  }

  @media(max-width:900px){
    .warehouse-gallery{
      height:auto;
      min-height:100svh;
      overflow:visible;
      padding:110px 0 90px;
    }
    .warehouse-gallery .warehouse-content{
      width:min(90%,680px);
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:28px;
      margin:auto;
      text-align:center;
    }
    .warehouse-copy{order:1;width:100%;max-width:620px;padding-left:0;}
    .warehouse-slider{order:2;}
    .warehouse-copy .hero-eyebrow{justify-content:center;}
    .warehouse-gallery .warehouse-slider{
      width:min(100%,580px);
      height:auto;
      aspect-ratio:1.15/1;
    }
    .warehouse-gallery .warehouse-brands{margin-left:auto;margin-right:auto;}
  }

  @media(max-width:520px){
    .warehouse-gallery{padding-top:104px;padding-bottom:82px;}
    .warehouse-gallery .warehouse-content{width:92%;gap:22px;}
    .warehouse-gallery .warehouse-slider{width:100%;aspect-ratio:1/1.05;}
    .warehouse-gallery .warehouse-brand{height:48px;padding:5px 6px;}
    .warehouse-gallery .warehouse-brand img{height:35px;}
  }

  /* ---------- OUR BRANDS ---------- */
  .brands-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:transparent;
  }
  .brands-content{
    position:relative;
    z-index:2;
    text-align:center;
    padding:100px 0 90px;
  }
  .brands-content > .hero-eyebrow{
    justify-content:center;
    opacity:0;
    transform:translateY(22px);
    transition:opacity .6s ease,transform .6s ease;
  }
  .brands-title{
    color:var(--white);
    font-size:clamp(42px,5.5vw,60px);
    line-height:1.05;
    max-width:760px;
    margin:0 auto;
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.3,1);
  }
  .brands-title::after{
    content:'';
    display:block;
    width:64px;
    height:3px;
    margin:22px auto 25px;
    background:var(--orange);
  }
  .brands-sub{
    color:#C7CBE8;
    font-size:16px;
    line-height:1.55;
    max-width:720px;
    margin:0 auto 42px;
    opacity:0;
    transform:translateY(24px);
    transition:opacity .65s ease,transform .65s cubic-bezier(.2,.7,.3,1);
  }
  .brands-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:16px;
    max-width:1100px;
    margin:0 auto;
  }
  .brand-card{
    min-height:132px;
    padding:22px 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(255,255,255,.5);
    box-shadow:0 14px 34px rgba(5,9,31,.22);
    opacity:0;
    transform:translateY(30px);
    transition:opacity .6s ease,transform .6s ease,border-color .2s ease;
  }
  .brand-card:hover{border-color:var(--orange);transform:translateY(-4px);}
  .brand-card img{width:100%;max-width:210px;height:78px;object-fit:contain;}
  .brands-content.in-view > .hero-eyebrow,
  .brands-content.in-view .brands-title,
  .brands-content.in-view .brands-sub,
  .brands-content.in-view .brand-card{opacity:1;transform:translateY(0);}
  .brands-content.in-view > .hero-eyebrow{transition-delay:.04s;}
  .brands-content.in-view .brands-title{transition-delay:.08s;}
  .brands-content.in-view .brands-sub{transition-delay:.34s;}
  .brands-content.in-view .brand-card:nth-child(1){transition-delay:.56s;}
  .brands-content.in-view .brand-card:nth-child(2){transition-delay:.68s;}
  .brands-content.in-view .brand-card:nth-child(3){transition-delay:.80s;}
  .brands-content.in-view .brand-card:nth-child(4){transition-delay:.92s;}
  .brands-content.in-view .brand-card:nth-child(5){transition-delay:1.04s;}

  @media (min-width:761px) and (max-height:760px){
    .warehouse-title{font-size:clamp(30px,4vw,44px);}
    .warehouse-content .title-underline{margin:14px auto 18px;}
    .warehouse-sub{
      font-size:15px;
      line-height:1.45;
      max-width:680px;
      margin-bottom:22px;
    }
    .gallery-grid{
      gap:12px;
      max-width:min(820px, 82vw, calc((100svh - 230px) * 1.9));
    }
    .gallery-item{padding:5px;}
  }

  @media (min-width:761px) and (max-height:680px){
    .warehouse-title{font-size:clamp(28px,3.6vw,38px);}
    .warehouse-sub{
      font-size:14px;
      line-height:1.4;
      max-width:640px;
      margin-bottom:18px;
    }
    .gallery-grid{
      gap:10px;
      max-width:min(740px, 78vw, calc((100svh - 210px) * 1.85));
    }
  }
  .lightbox{
    position:fixed;
    inset:0;
    z-index:999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:34px;
    opacity:0;
    pointer-events:none;
    transition:opacity 0.52s ease;
  }
  .lightbox.open{
    opacity:1;
    pointer-events:auto;
  }
  .lightbox-backdrop{
    position:absolute;
    inset:0;
    border:0;
    background:rgba(5,8,24,0.9);
    cursor:zoom-out;
    opacity:0;
    transition:opacity 0.44s ease;
  }
  .lightbox-image{
    position:relative;
    z-index:2;
    display:block;
    max-width:min(1120px,92vw);
    max-height:86vh;
    object-fit:contain;
    border:1px solid rgba(255,255,255,0.22);
    box-shadow:0 24px 80px rgba(0,0,0,0.55);
    opacity:0;
    transform:translateY(18px) scale(0.88);
    transition:
      opacity 0.34s ease,
      transform 0.52s cubic-bezier(.16, 1, .3, 1);
    will-change:opacity, transform;
  }
  .lightbox.open .lightbox-backdrop{
    opacity:1;
  }
  .lightbox.open .lightbox-image{
    opacity:1;
    transform:translateY(0) scale(1);
  }
  .lightbox-close{
    position:fixed;
    z-index:3;
    top:22px;
    right:28px;
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,0.4);
    background:rgba(15,20,50,0.82);
    color:var(--white);
    font-size:34px;
    line-height:38px;
    cursor:pointer;
    transition:background 0.2s ease, border-color 0.2s ease;
  }
  .lightbox-close:hover,
  .lightbox-close:focus-visible{
    background:var(--orange);
    border-color:var(--orange);
    color:var(--navy-deep);
  }
  body.lightbox-active{overflow:hidden;}

  /* ---------- BOOK A CALL BACK ---------- */
  .callback-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:transparent;
  }
  .callback-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:minmax(280px, 0.92fr) minmax(360px, 1.08fr);
    align-items:stretch;
    max-width:1080px;
    gap:0;
    opacity:0;
    transform:translateY(32px);
    transition:opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.7,.3,1);
  }
  .callback-content.in-view{
    opacity:1;
    transform:translateY(0);
  }
  .callback-content.in-view .title-underline{
    opacity:1;
    transform:scaleX(1);
    transition-delay:0.2s;
  }
  .callback-visual{
    min-height:520px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.22);
    border-right:0;
    background:rgba(255,255,255,0.08);
  }
  .callback-visual img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:scale(1.04);
  }
  .callback-panel{
    border:1px solid rgba(255,255,255,0.24);
    background:rgba(10,14,39,0.72);
    backdrop-filter:blur(10px);
    padding:46px;
    text-align:left;
    box-shadow:0 24px 80px rgba(0,0,0,0.28);
  }
  .callback-eyebrow{
    color:var(--orange);
    font-family:'Barlow Condensed', sans-serif;
    font-size:14px;
    font-weight:700;
    letter-spacing:2.4px;
    text-transform:uppercase;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    gap:12px;
  }
  .callback-eyebrow::before{content:'';width:36px;height:2px;background:var(--orange);flex:0 0 auto}
  .callback-title{
    color:var(--white);
    font-size:clamp(42px,5.5vw,60px);
    line-height:1;
  }
  .callback-panel .title-underline{
    margin:18px 0 26px;
  }
  .callback-sub{
    color:#C7CBE8;
    font-size:15.5px;
    line-height:1.55;
    margin-bottom:26px;
  }
  .callback-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .form-field{
    display:flex;
    flex-direction:column;
    gap:7px;
  }
  .form-field:nth-child(3),
  .form-field:nth-child(4){
    grid-column:1 / -1;
  }
  .form-field label{
    color:rgba(255,255,255,0.74);
    font-family:'Barlow Condensed', sans-serif;
    font-size:14px;
    font-weight:600;
    letter-spacing:0.8px;
    text-transform:uppercase;
  }
  .form-field input,
  .form-field textarea{
    width:100%;
    border:1px solid rgba(255,255,255,0.24);
    background:rgba(255,255,255,0.08);
    color:var(--white);
    font:inherit;
    padding:13px 14px;
    border-radius:2px;
    outline:none;
    transition:border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .form-field textarea{
    resize:vertical;
    min-height:104px;
  }
  .form-field input:focus,
  .form-field textarea:focus{
    border-color:var(--orange);
    background:rgba(255,255,255,0.12);
    box-shadow:0 0 0 3px rgba(248,152,29,0.16);
  }
  .callback-submit{
    grid-column:1 / -1;
    justify-content:center;
    width:fit-content;
    margin-top:4px;
  }

  @media (min-width:761px) and (max-height:760px){
    .callback-content{
      max-width:980px;
      grid-template-columns:minmax(260px, 0.88fr) minmax(340px, 1.12fr);
    }
    .callback-visual{min-height:470px;}
    .callback-panel{padding:34px;}
    .callback-title{font-size:clamp(30px,4vw,44px);}
    .callback-panel .title-underline{margin:14px 0 20px;}
    .callback-sub{font-size:14.5px; line-height:1.45; margin-bottom:20px;}
    .callback-form{gap:12px;}
    .form-field input,
    .form-field textarea{padding:11px 12px;}
    .form-field textarea{min-height:84px;}
  }

  @media (min-width:761px) and (max-height:680px){
    .callback-content{max-width:900px;}
    .callback-visual{min-height:410px;}
    .callback-panel{padding:28px;}
    .callback-title{font-size:clamp(28px,3.5vw,38px);}
    .callback-panel .title-underline{margin:12px 0 18px;}
    .callback-sub{margin-bottom:16px;}
    .form-field textarea{min-height:72px;}
  }

  /* ---------- INNER PAGE HERO ---------- */
  .page-hero{
    position:relative; padding:170px 0 80px;
    background:linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 100%);
    overflow:hidden;
  }
  .page-hero::before{
    content:''; position:absolute; top:-40%; right:-10%; width:520px; height:520px;
    border-radius:50%; background:radial-gradient(circle, rgba(248,152,29,0.14), transparent 70%);
  }
  .page-hero .wrap{position:relative; z-index:2;}
  .breadcrumb{
    font-family:'Barlow Condensed', sans-serif; font-weight:600; font-size:14px;
    letter-spacing:0.5px; color:#9FA4CC; margin-bottom:18px; text-transform:uppercase;
  }
  .breadcrumb a:hover{color:var(--orange);}
  .page-hero h1{color:var(--white); font-size:clamp(44px,7vw,76px); max-width:760px;}
  .page-hero p.lede{color:#D8DAEA; font-size:18px; max-width:560px; margin-top:20px; line-height:1.6;}

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    .trust-grid{grid-template-columns:repeat(2,1fr); row-gap:22px;}
    .about-grid{grid-template-columns:1fr; gap:40px;}
    .about-visual{order:-1; aspect-ratio:16/9;}
    .cat-grid{grid-template-columns:repeat(2,1fr);}
    .gallery-grid{grid-template-columns:repeat(2,1fr);}
    .callback-content{grid-template-columns:1fr; max-width:760px;}
    .callback-visual{
      min-height:320px;
      border-right:1px solid rgba(255,255,255,0.22);
      border-bottom:0;
    }
    .loc-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr; row-gap:32px;}
  }
  @media (max-width:760px){
    html{scroll-snap-type:y mandatory; scroll-padding-top:74px;}
    body{scroll-snap-type:y mandatory;}
    .hero,
    .showcase,
    .warehouse-gallery,
    .brands-section,
    .callback-section{scroll-snap-align:start; scroll-snap-stop:always;}
    nav{
      position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px;
      background:var(--navy-deep); flex-direction:column; align-items:flex-start;
      padding:100px 32px 32px; gap:26px;
      transform:translateX(100%); transition:transform 0.3s ease;
      box-shadow:-10px 0 40px rgba(0,0,0,0.3);
    }
    nav.open{transform:translateX(0);}
    nav a{font-size:20px; color:var(--white);}
    .menu-toggle{display:block;margin-left:16px;flex:0 0 auto;}
    .call-btn span{display:none;}
    .site-bg img{object-position:center center;}
    .site-overlay{
      background:
        linear-gradient(0deg, rgba(15,20,50,0.96) 0%, rgba(15,20,50,0.78) 48%, rgba(20,27,63,0.68) 100%),
        linear-gradient(100deg, rgba(20,27,63,0.44) 0%, rgba(20,27,63,0.18) 100%);
    }
    .hero{
      height:100svh;
      min-height:100svh;
      display:flex;
      padding:92px 0 0;
      overflow:hidden;
    }
    .hero-content{padding:18px 0 142px; margin:auto;}
    .hero .lede-desktop{display:none !important;}
    .hero .lede-mobile{display:block !important;}
    .hero-eyebrow{font-size:13px; letter-spacing:2.4px; margin-bottom:14px;}
    .hero-eyebrow::before{width:28px;}
    .hero-title{font-size:clamp(40px, 12.5vw, 58px); max-width:100%; line-height:.96;}
    .hero p.lede{
      font-size:15.5px;
      line-height:1.58;
      max-width:100%;
      margin:18px 0 24px;
    }
    .hero-actions{gap:12px;}
    .btn-primary,
    .btn-secondary{
      width:100%;
      justify-content:center;
      padding:15px 22px;
      font-size:16px;
    }
    .showcase,
    .warehouse-gallery,
    .brands-section,
    .callback-section{
      min-height:auto;
      display:block;
      overflow:visible;
    }
    .showcase,
    .warehouse-gallery,
    .brands-section,
    .callback-section{min-height:100svh; height:100svh; display:flex; overflow:hidden; padding:92px 0 20px;}
    .showcase-icons{grid-template-columns:1fr 1fr; gap:22px 12px;}
    .showcase-content{padding:10px 0 18px; margin:auto;}
    .showcase-title{font-size:clamp(32px,9vw,44px);}
    .showcase-content .title-underline{margin:15px auto 17px;}
    .showcase-sub{font-size:13.5px; line-height:1.4; margin-bottom:24px;}
    .showcase-item .icon-circle{width:60px; height:60px; margin-bottom:10px;}
    .showcase-item .icon-circle svg{width:28px; height:28px;}
    .showcase-item h3{font-size:17px; margin-bottom:4px;}
    .showcase-item p{font-size:11.5px; line-height:1.3;}
    .warehouse-content{padding:10px 0 18px; margin:auto;}
    .warehouse-title{font-size:clamp(32px,9vw,44px);}
    .warehouse-content .title-underline{margin:13px auto 15px;}
    .warehouse-sub{font-size:13px; line-height:1.4; margin-bottom:18px;}
    .gallery-grid{grid-template-columns:repeat(2,1fr); gap:8px;}
    .gallery-item{padding:3px;}
    .brands-content{padding:10px 0 18px;margin:auto;}
    .brands-title{font-size:clamp(32px,9vw,44px);}
    .brands-title::after{width:54px;margin:13px auto 15px;}
    .brands-sub{font-size:13px;line-height:1.4;margin-bottom:22px;}
    .brands-grid{grid-template-columns:repeat(2,1fr);gap:9px;max-width:520px;}
    .brand-card{min-height:88px;padding:12px 14px;}
    .brand-card:last-child{grid-column:1 / -1;width:calc(50% - 5px);justify-self:center;}
    .brand-card img{height:58px;max-width:185px;}
    .callback-section{padding-bottom:24px;}
    .callback-content{
      max-width:none;
      opacity:1;
      transform:none;
    }
    .callback-visual{display:none;}
    .callback-panel{padding:20px 18px; margin:auto 0;}
    .callback-eyebrow{font-size:11px; margin-bottom:5px;}
    .callback-title{font-size:clamp(30px,9vw,40px);}
    .callback-panel .title-underline{margin:9px 0 12px;}
    .callback-sub{font-size:12.5px; line-height:1.38; margin-bottom:12px;}
    .callback-form{grid-template-columns:1fr 1fr; gap:8px 10px;}
    .form-field:nth-child(3),
    .form-field:nth-child(4){grid-column:1 / -1;}
    .form-field{gap:4px;}
    .form-field label{font-size:11px;}
    .form-field input,
    .form-field textarea{padding:8px 9px;}
    .form-field textarea{min-height:52px;}
    .callback-submit{width:100%;}
    .lightbox{padding:18px;}
    .lightbox-image{max-width:94vw; max-height:78vh;}
    .lightbox-close{top:14px; right:14px; width:40px; height:40px; font-size:30px; line-height:34px;}
    .hero-footer{
      position:absolute; left:6%; right:6%; bottom:8px; width:auto; margin:0;
      flex-direction:row; gap:10px; padding:10px 0;
      background:transparent;
    }
    .hero-footer .scroll-cue{gap:4px;}
    .hero-footer .scroll-cue svg{width:15px; height:25px;}
    .hero-footer .scroll-cue span{font-size:8px; letter-spacing:1.3px;}
    .footer-copy{font-size:9px;}
    .footer-links{gap:10px;}
    .footer-links a{font-size:9px; letter-spacing:.5px;}
    .section-dots{display:none;}
    .footer-links{gap:18px;}
    .hero p.lede{font-size:17px;}
    section{padding:72px 0;}
    .cat-grid{grid-template-columns:1fr 1fr;}
    .footer-grid{grid-template-columns:1fr; text-align:left;}
    .footer-bottom{flex-direction:column; align-items:flex-start;}
  }
  @media (max-width:480px){
    .cat-grid{grid-template-columns:1fr;}
    .wrap-90{width:88%;}
    .header-inner{height:74px;}
    .logo-link img{height:48px;}
    .hero{padding-top:106px;}
    .hero-title{font-size:clamp(38px, 12vw, 50px);}
    .hero p.lede{font-size:13px; line-height:1.45;}
    .showcase-icons{grid-template-columns:1fr 1fr; gap:20px 10px;}
    .brands-sub{font-size:12.5px;margin-bottom:18px;}
    .brand-card{min-height:78px;padding:9px 12px;}
    .brand-card img{height:50px;}
    .callback-visual{min-height:200px;}
    .callback-panel{padding:24px 18px;}
    .footer-copy{white-space:normal; text-align:left; max-width:95px;}
    .footer-links{flex-wrap:wrap; justify-content:flex-end; max-width:110px;}
  }

  /* Keep the callback panel clear of the fixed footer on compact desktop screens. */
  @media (min-width:761px) and (max-width:1180px){
    .callback-section{
      padding:92px 0 96px;
    }
    .callback-content{
      width:88%;
      max-width:900px;
      grid-template-columns:minmax(220px,0.78fr) minmax(430px,1.22fr);
    }
    .callback-visual{
      min-height:480px;
      border-right:0;
      border-bottom:1px solid rgba(255,255,255,0.22);
    }
    .callback-panel{padding:26px 28px;}
    .callback-title{font-size:clamp(32px,4vw,42px);}
    .callback-panel .title-underline{margin:12px 0 17px;}
    .callback-sub{font-size:14px; line-height:1.4; margin-bottom:16px;}
    .callback-form{gap:10px 12px;}
    .form-field{gap:5px;}
    .form-field input,
    .form-field textarea{padding:9px 11px;}
    .form-field textarea{min-height:66px;}
    .callback-submit{width:100%; margin-top:2px;}
  }

  @media (min-width:761px) and (max-width:880px){
    .callback-content{
      width:92%;
      grid-template-columns:minmax(190px,0.7fr) minmax(400px,1.3fr);
    }
    .callback-panel{padding:24px;}
  }

  @media (min-width:761px) and (max-height:700px){
    .callback-section{padding-top:82px; padding-bottom:82px;}
    .callback-content{max-width:820px;}
    .callback-visual{min-height:400px;}
    .callback-panel{padding:20px 24px;}
    .callback-eyebrow{margin-bottom:5px;}
    .callback-title{font-size:34px;}
    .callback-panel .title-underline{margin:8px 0 12px;}
    .callback-sub{font-size:13px; margin-bottom:10px;}
    .callback-form{gap:7px 10px;}
    .form-field input,
    .form-field textarea{padding:7px 9px;}
    .form-field textarea{min-height:50px;}
    .callback-submit{padding:9px 16px;}
  }

  .mobile-final-footer{display:none;}

  @media(max-width:760px){
    html,
    body{
      width:100%;
      max-width:100%;
      overflow-x:hidden!important;
      overscroll-behavior-x:none;
      scroll-snap-type:none!important;
    }
    body{touch-action:pan-y;}
    html{scroll-padding-top:106px;}
    .hero,
    .showcase,
    .warehouse-gallery,
    .brands-section,
    .callback-section{
      scroll-snap-align:none!important;
      scroll-snap-stop:normal!important;
    }
    .warehouse-slider,
    .warehouse-content.in-view .warehouse-slider{
      transform:none!important;
    }
    body>header,
    header#siteHeader{
      position:sticky;
      top:0;
      width:100%;
      height:106px;
      min-height:106px;
      display:flex;
      align-items:center;
      padding:0;
      transform:none;
      -webkit-transform:none;
    }
    header .header-inner{
      width:100%;
      height:106px;
      min-height:106px;
      padding:0 20px;
      gap:12px;
      align-items:center;
      transform:none;
      -webkit-transform:none;
    }
    header .logo-link{min-width:0;flex:1 1 auto;}
    header .logo-link img{width:auto;height:auto;max-height:58px;max-width:calc(100vw - 104px);}
    header .menu-toggle{
      position:relative;
      z-index:1002;
      display:block;
      flex:0 0 44px;
      width:44px;
      height:44px;
      margin:0 2px 0 auto;
      padding:8px;
    }
    header .menu-toggle span{
      width:28px;
      height:3px;
      margin:5px 0;
      transform-origin:center;
      transition:transform .25s ease,opacity .2s ease,background .2s ease;
    }
    header .menu-toggle[aria-expanded="true"] span{background:#fff;}
    header .menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(8px) rotate(45deg);}
    header .menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
    header .menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
    header nav{z-index:1000;}

    body:not(.about-page):not(.products-page):not(.contact-page)>.hero{
      height:calc(100svh - 106px);
      min-height:calc(100svh - 106px);
      padding:0 0 70px;
    }
    body:not(.about-page):not(.products-page):not(.contact-page)>.hero>.hero-content{
      padding:0;
    }

    .callback-section,
    .about-slide:last-of-type,
    .contact-slide:last-of-type{
      position:relative;
      height:auto!important;
      min-height:calc(100dvh - 106px)!important;
      display:flex!important;
      flex-direction:column!important;
      justify-content:center;
      gap:22px;
      padding-bottom:28px!important;
      scroll-snap-stop:normal!important;
    }

    body:not(.about-page):not(.products-page):not(.contact-page) .callback-section{
      height:calc(var(--mobile-visible-height, 100dvh) - 106px)!important;
      min-height:calc(var(--mobile-visible-height, 100dvh) - 106px)!important;
      display:flex!important;
      flex-direction:column!important;
      justify-content:center;
      gap:0;
      padding:0 0 110px!important;
      overflow:visible;
    }
    body:not(.about-page):not(.products-page):not(.contact-page) .callback-content{
      position:relative;
      top:auto!important;
      flex:0 0 auto;
      margin:auto;
    }
    body:not(.about-page):not(.products-page):not(.contact-page) .callback-section .mobile-final-footer{
      opacity:0;
      visibility:hidden;
      pointer-events:none;
    }
    body.mobile-final-active:not(.about-page):not(.products-page):not(.contact-page) .callback-section .mobile-final-footer{
      position:fixed;
      left:6%;
      right:6%;
      bottom:max(56px, calc(env(safe-area-inset-bottom) + 20px));
      top:auto!important;
      width:auto;
      margin:0;
      z-index:96;
      opacity:1;
      visibility:visible;
      pointer-events:auto;
    }
    body.mobile-final-active:not(.about-page):not(.products-page):not(.contact-page) .callback-content{
      position:fixed;
      left:6%;
      right:6%;
      top:calc(50% + 8px)!important;
      width:auto;
      max-width:none;
      margin:0;
      z-index:95;
      transform:translateY(-50%)!important;
      transition:none!important;
    }

    .mobile-final-footer{
      position:static;
      z-index:8;
      width:88%;
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      color:#c7cbe8;
    }
    .mobile-final-copy{font-size:11px;line-height:1.3;letter-spacing:.2px;}
    .mobile-final-socials{display:flex;align-items:center;gap:14px;}
    .mobile-final-socials a{
      width:34px;
      height:34px;
      display:flex;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(255,255,255,.35);
      border-radius:50%;
      color:#fff;
    }
    .mobile-final-socials svg{width:17px;height:17px;fill:currentColor;}
    body.mobile-final-active .hero-footer{opacity:0;visibility:hidden;pointer-events:none;}
  }


  /* Keep the warehouse stack fluid after the general mobile slide rules. */
  @media(max-width:900px){
    body .warehouse-gallery{
      height:auto;
      min-height:100svh;
      display:flex;
      overflow:visible;
      padding:110px 0 90px;
    }
    body .warehouse-gallery .warehouse-content{
      width:min(90%,680px);
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:28px;
      margin:auto;
    }
  }

  @media(max-width:520px){
    body .warehouse-gallery{padding:104px 0 82px;}
    body .warehouse-gallery .warehouse-content{width:92%;gap:22px;}
  }
