
:root {
    --dark: #1f2426;
    --body-bg-dark: #000;
    --sans: "MarkBook", Arial, sans-serif;
    --transparent: transparent;
    --white-no-change: #fff;
    --white: #fff;
    --serif: "MarkLight", "Playfair Display", serif;
    --menu-bg: rgba(31, 36, 38, 0.9);
    --body-bg: #f8f9f9;
    --dark-no-change: #1f2426;
    --navbar-light: rgba(248, 249, 249, 0.9);
    --mobile-navbar-bg-light: #1f2426;
    --container: 1400px;
    --text-soft: rgba(255,255,255,0.72);
    --line: rgba(255,255,255,0.12);
  }
  
  html {
    height: 100%;
    scroll-behavior: smooth;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body.business-units-page {
    margin: 0;
    min-height: 100%;
    background: #000;
    color: #fff;
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  body.business-units-page img {
    max-width: 100%;
    display: block;
  }
  
  body.business-units-page a {
    color: inherit;
    text-decoration: none;
  }
  
  body.business-units-page ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .bu-container {
    width: min(92%, var(--container));
    margin: 0 auto;
  }
  
  /* NAVBAR */
  .navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    pointer-events: none;
  }
  
  .navbar-inner,
  .navbar-inner-mobile {
    pointer-events: auto;
  }
  
  .navbar-inner {
    display: block;
    padding: 22px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
  }
  
  .navbar.scrolled .navbar-inner {
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(10px);
    padding: 16px 0;
  }
  
  .navbar-wrapper,
  .navbar-wrapper-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .nav-menu-wrapper {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
  }
  
  .nav-menu-flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .div-block-10,
  .div-block-11 {
    display: flex;
    align-items: center;
  }
  
  .logo-light,
  .image-3 {
    width: 84px;
    height: auto;
    display: block;
  }
  
  .nav-menu2 {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .nav-link,
  .nav-link-mobile {
    position: relative;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    text-transform: lowercase;
    transition: opacity 0.25s ease;
  }
  
  .nav-link:hover,
  .nav-link-mobile:hover {
    opacity: 0.72;
  }
  
  .nav-link.w--current::after,
  .nav-link-mobile.w--current::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: #fff;
  }
  
  .navbar-inner-mobile {
    display: none;
    background: rgba(0, 0, 0, 0.82);
    transition: top 0.3s ease;
  }
  
  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .burger-line {
    width: 24px;
    height: 2px;
    background: #fff;
  }
  
  .nav-menu-wrapper-mobile {
    display: none;
    padding: 10px 0 24px;
  }
  
  .nav-menu-wrapper-mobile.open {
    display: block;
  }
  
  .nav-menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  @media (max-width: 991px) {
    .navbar-inner {
      display: none;
    }
  
    .navbar-inner-mobile {
      display: block;
      position: relative;
      top: 0;
      padding: 18px 0;
    }
  }
  
  /* HERO / INTRO GRID */
  .bu-hero {
    position: relative;
    padding: 140px 0 70px;
    background: #000;
  }
  
  .bu-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .bu-product-card {
    display: block;
  }
  
  .bu-product-media {
    position: relative;
    aspect-ratio: 4 / 5.2;
    overflow: hidden;
    background: #111;
  }
  
  .bu-product-video {
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  
  .bu-product-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  
  .bu-product-thumb {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.55s ease, transform 0.7s ease;
  }
  
  .bu-product-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
    transition: background 0.3s ease;
  }
  
  .bu-product-title {
    margin: 18px 0 0;
    font-size: clamp(18px, 1.2vw, 24px);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  
  .bu-product-card:hover .bu-product-thumb {
    opacity: 0.12;
    transform: scale(1.03);
  }
  
  .bu-product-card:hover .bu-product-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.38), rgba(0,0,0,0.04));
  }
  
  /* PRODUCT SECTIONS */
  .product-section {
    position: relative;
    padding: 100px 0;
    background: #000;
    border-top: 1px solid var(--line);
  }
  
  .product-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 48px;
    align-items: start;
  }
  
  .product-copy-top {
    margin-bottom: 26px;
  }
  
  .product-numbers {
    margin-bottom: 14px;
    color: var(--text-soft);
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  .product-heading {
    margin: 0 0 20px;
    font-size: clamp(36px, 4vw, 72px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.03em;
  }
  
  .product-description {
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.65;
    max-width: 680px;
  }
  
  .product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .gallery-column {
    display: grid;
    gap: 18px;
  }
  
  .media-card {
    position: relative;
    overflow: hidden;
    background: #111;
  }
  
  .media-card img,
  .media-card iframe {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .media-card img {
    object-fit: cover;
  }
  
  .media-card.video-card {
    min-height: 240px;
  }
  
  .media-card.video-card iframe {
    border: 0;
  }
  
  .media-card.tall {
    min-height: 460px;
  }
  
  .media-card.medium {
    min-height: 300px;
  }
  
  .media-card.short {
    min-height: 220px;
  }
  
  .product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
  
  .product-list-grid li {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  /* FOOTER */
  .bu-footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--line);
    background: #000;
  }
  
  .bu-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
    align-items: start;
  }
  
  .bu-footer-brand-text {
    margin-top: 20px;
    max-width: 360px;
    color: var(--text-soft);
    line-height: 1.7;
  }
  
  .bu-footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .bu-footer h6 {
    margin: 0 0 16px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
  }
  
  .bu-footer-links {
    display: grid;
    gap: 10px;
  }
  
  .bu-footer-links a,
  .bu-footer-links span {
    color: var(--text-soft);
    line-height: 1.6;
  }
  
  .bu-footer-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    transition: background 0.25s ease, border-color 0.25s ease;
  }
  
  .bu-footer-button:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
  }
  
  .bu-footer-bottom {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
    font-size: 14px;
  }
  
  /* COOKIE MODAL */
  #cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.82);
    opacity: 1;
    transition: opacity 0.25s ease;
  }
  
  .cookie-box {
    width: min(100%, 560px);
    padding: 34px 28px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
  }
  
  .cookie-box img {
    width: 60px;
    margin: 0 auto 18px;
  }
  
  .cookie-box p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
  }
  
  .cookie-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
  }
  
  .cookie-btn {
    display: inline-block;
    min-width: 120px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
  }
  
  .cookie-btn.accept {
    background: #fff;
    color: #000;
  }
  
  .cookie-btn.decline {
    background: transparent;
  }
  
  /* UTIL */
  .fade-bottom-dark {
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
  }
  
  /* RESPONSIVE */
  @media (max-width: 1199px) {
    .bu-products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .product-layout {
      grid-template-columns: 1fr;
    }
  
    .product-gallery {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .product-list-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .bu-footer-top {
      grid-template-columns: 1fr;
    }
  
    .bu-footer-widgets {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 767px) {
    .bu-hero {
      padding: 110px 0 50px;
    }
  
    .bu-products-grid,
    .product-gallery,
    .product-list-grid,
    .bu-footer-widgets {
      grid-template-columns: 1fr;
    }
  
    .nav-link-mobile.w--current::after {
      bottom: -6px;
    }
  
    .product-section {
      padding: 72px 0;
    }
  
    .product-description {
      font-size: 16px;
    }
  
    .cookie-actions {
      flex-direction: column;
    }
  }