
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --white: #ffffff; --navy: #1A3C5E; --blue: #2E8BC0;
      --navy-dark: #0d2133; --off: #f8f9fb; --nav-h: 128px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', sans-serif; color: var(--navy); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

    /* ── NAV ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
      background: rgba(255,255,255,0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 24px rgba(26,60,94,0.07); z-index: 1000;
      display: flex; align-items: center; justify-content: space-between; padding: 0 48px;
      transition: box-shadow 0.3s ease;
    }
    .nav.scrolled { box-shadow: 0 2px 36px rgba(26,60,94,0.13); }
    .nav-logo { text-decoration: none; user-select: none; flex-shrink: 0; }
    .nav-logo-img { height: 120px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a { font-size: 0.78rem; font-weight: 500; color: var(--navy); text-decoration: none; letter-spacing: 0.07em; text-transform: uppercase; position: relative; transition: color 0.2s ease; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--blue); transition: width 0.25s ease; }
    .nav-links a:hover { color: var(--blue); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: var(--blue); }
    .nav-links a.active::after { width: 100%; }
    .lang-switch { display: flex; align-items: center; gap: 4px; margin-left: 20px; }
    .lang-btn { background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 700; color: rgba(26,60,94,0.35); letter-spacing: 0.06em; padding: 5px 3px; transition: color 0.2s; }
    .lang-btn:hover, .lang-btn.active { color: var(--blue); }
    .lang-sep { font-size: 0.55rem; color: rgba(26,60,94,0.18); user-select: none; }
    .hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 10px; }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: center; }
    .hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .mobile-menu { position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(255,255,255,0.99); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); z-index: 999; display: flex; flex-direction: column; max-height: 0; overflow: hidden; transition: max-height 0.38s ease, box-shadow 0.38s ease; }
    .mobile-menu.open {max-height: calc(100vh - var(--nav-h)); min-height: calc(100vh - var(--nav-h)); height: calc(100vh - var(--nav-h)); box-shadow: 0 16px 40px rgba(26,60,94,0.12); overflow-y: auto; -webkit-overflow-scrolling: touch; background: #ffffff;}
    /* Mobile menu — track nav height when scrolled */
    .mobile-menu{transition:max-height 0.38s ease,box-shadow 0.38s ease,top 0.35s ease}
    .nav.scrolled ~ .mobile-menu{top:56px}

    .mobile-menu a { font-size: 0.9rem; font-weight: 500; color: var(--navy); text-decoration: none; text-transform: uppercase; letter-spacing: 0.09em; padding: 16px 28px; border-bottom: 1px solid rgba(26,60,94,0.07); transition: color 0.2s ease, background 0.2s ease; }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--blue); background: rgba(46,139,192,0.04); }

    /* ── BRANDS PAGE HERO ── */
    .brands-hero {
      padding-top: calc(var(--nav-h) + 80px);
      padding-bottom: 64px;
      text-align: center;
      background: var(--white);
      border-bottom: 1px solid rgba(26,60,94,0.07);
    }
    .brands-title-wrap {
      display: inline-flex; flex-direction: column; align-items: center;
    }
    .brands-big {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3.5rem, 8vw, 6rem);
      font-weight: 700; color: var(--navy);
      letter-spacing: -0.02em; line-height: 1;
      display: block;
    }
    .brands-sub {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(0.95rem, 2vw, 1.15rem);
      font-weight: 400; color: #7a8fa3;
      letter-spacing: 0.04em; margin-top: 10px;
      display: block;
    }

    /* ── BRANDS GRID ── */
    .brands-section {
      padding: 72px 48px 96px;
      background: var(--white);
    }
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .brand-card {
      display: flex; flex-direction: column; align-items: center; gap: 14px;
      padding: 28px 16px 22px;
      background: var(--off);
      border: 1.5px solid rgba(26,60,94,0.09);
      border-radius: 6px;
      text-decoration: none;
      color: var(--navy);
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
    }
    .brand-card:hover {
      border-color: rgba(46,139,192,0.4);
      box-shadow: 0 6px 28px rgba(46,139,192,0.13);
      transform: translateY(-4px);
      background: var(--white);
    }
    .brand-card-logo {
      width: 100%; height: 60px;
      display: flex; align-items: center; justify-content: center;
    }
    .brand-card-logo img {
      max-width: 120px; max-height: 52px;
      width: auto; height: auto;
      object-fit: contain;
      filter: saturate(0.8) contrast(1.05);
      transition: filter 0.25s;
    }
    .brand-card:hover .brand-card-logo img { filter: saturate(1) contrast(1.05); }
    .brand-card-logo .brand-text-fallback {
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      color: var(--navy); letter-spacing: 0.08em;
      text-align: center; line-height: 1.3;
    }
    .brand-card-name {
      font-size: 0.75rem; font-weight: 600;
      color: #8a9ab0; letter-spacing: 0.08em;
      text-transform: uppercase; text-align: center;
      transition: color 0.25s;
    }
    .brand-card:hover .brand-card-name { color: var(--blue); }

    /* ── CATEGORY LABELS ── */
    .brands-category-label {
      grid-column: 1 / -1;
      font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--blue); padding: 24px 0 4px;
      border-bottom: 1px solid rgba(26,60,94,0.08);
      margin-bottom: 4px;
    }
    .brands-category-label:first-child { padding-top: 0; }

    /* ── BACK BUTTON ── */
    .brands-back {
      text-align: center;
      padding: 0 48px 96px;
      background: var(--white);
    }
    .back-btn {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Outfit', sans-serif; font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--navy); border: 1.5px solid rgba(26,60,94,0.25);
      padding: 14px 40px; border-radius: 2px; text-decoration: none;
      transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
    }
    .back-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-2px); }
    .back-btn svg { width: 15px; height: 15px; }

    /* ── FOOTER ── */
    .footer { background: var(--navy-dark); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .footer-left { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.1em; }
    .footer-left span { display: block; font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.06em; color: rgba(255,255,255,0.35); margin-top: 4px; }
    .footer-center { display: flex; gap: 20px; align-items: center; }
    .footer-social { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; }
    .footer-social:hover { border-color: rgba(255,255,255,0.4); color: var(--white); background: rgba(255,255,255,0.08); }
    .footer-social svg { width: 18px; height: 18px; }
    .footer-right { display: flex; gap: 24px; flex-wrap: wrap; }
    .footer-right a { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
    .footer-right a:hover { color: rgba(255,255,255,0.85); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .brands-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 900px) {
      .nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .brands-hero { padding: calc(var(--nav-h) + 48px) 24px 48px; }
      .brands-section { padding: 48px 24px 64px; }
      .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
      .brands-back { padding: 0 24px 64px; }
      .footer { flex-direction: column; align-items: center; text-align: center; padding: 40px 24px; gap: 28px; }
    }
    @media (max-width: 600px) {
      .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .nav { padding: 0 16px; }
    }
  
    /* ── Footer mobile grid (3+3 centred) ── */
    @media (max-width: 640px){
      .footer-right{
        display:grid;
        grid-template-columns:repeat(3,auto);
        gap:12px 22px;
        justify-content:center;
        width:auto;
        max-width:340px;
        margin:0 auto;
      }
      .footer-right a{ font-size:0.72rem; padding:0; }
    }

body.menu-open{overflow:hidden;position:fixed;left:0;right:0;width:100%}
