
  :root {
    --navy: #0a0f1e;
    --navy2: #111827;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --green: #1a7a4a;
    --green-light: #22a663;
    --orange: #e07b2a;
    --white: #f5f5f0;
    --gray: #8a8f9e;
    --border: rgba(201,168,76,0.18);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    cursor: none;
    overflow-x: hidden;
  }

  /* Custom cursor */
  #cursor {
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  }
  #cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.5);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.25s ease, width 0.3s ease, height 0.3s ease;
  }
  body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 20px; height: 20px; background: var(--orange); }
  body:has(a:hover) #cursor-ring, body:has(button:hover) #cursor-ring { width: 60px; height: 60px; }

  /* Scrollbar */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    transition: background 0.4s, padding 0.4s;
  }
  nav.scrolled {
    background: rgba(10,15,30,0.95);
    backdrop-filter: blur(12px);
    padding: 14px 60px;
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--gold);
    text-decoration: none;
  }
  .nav-logo span { color: var(--white); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(245,245,240,0.7); text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: var(--navy); background: var(--gold);
    padding: 10px 24px; text-decoration: none;
    border: none; cursor: none;
    transition: background 0.3s, transform 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* LANG SWITCHER */
  .lang-switcher {
    display: flex; gap: 6px; align-items: center;
    font-size: 11px; letter-spacing: 1px;
  }
  .lang-switcher span {
    color: rgba(245,245,240,0.4);
    padding: 4px 8px; cursor: none;
    transition: color 0.3s;
  }
  .lang-switcher span.active { color: var(--gold); border-bottom: 1px solid var(--gold); }
  .lang-switcher span:hover { color: var(--white); }
  .lang-div { color: rgba(245,245,240,0.2); }

  /* ══════════════════════════════════════════
     HERO  —  flex-column, zero overlap guaranteed
     ══════════════════════════════════════════ */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* ── absolute layers (slides + deco) ── */
  .hero-slides,
  .hero-grid,
  .light-beams,
  .hero-slide-caption,
  .hero-progress { position: absolute; }

  .hero-slides { inset: 0; z-index: 0; }
  .hero-grid   { inset: 0; z-index: 1; pointer-events: none;
    background-image:
      linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridPan 20s linear infinite; }
  @keyframes gridPan { from{transform:translateY(0)} to{transform:translateY(80px)} }

  .light-beams { inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
  .beam {
    position: absolute; width: 2px; height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.10), transparent);
    animation: beamSlide 6s ease-in-out infinite;
  }
  .beam:nth-child(1){left:20%;animation-delay:0s}
  .beam:nth-child(2){left:55%;animation-delay:2s}
  .beam:nth-child(3){left:82%;animation-delay:4s}
  @keyframes beamSlide{0%,100%{opacity:0;transform:skewX(-10deg)}50%{opacity:1}}

  /* slides */
  .hero-slide { position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1); will-change: opacity; }
  .hero-slide.active { opacity: 1; }
  .hero-slide-img { position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.08); transition: transform 7s ease; }
  .hero-slide.active .hero-slide-img { transform: scale(1); }

  /* Ken Burns zoom-out pada <img> di setiap slide aktif */
  @keyframes kenBurnsOut {
    from { transform: scale(1.12); }
    to   { transform: scale(1.0); }
  }
  .hero-slide img {
    transform-origin: center center;
  }
  .hero-slide.active img {
    animation: kenBurnsOut 6s ease forwards;
  }

  .hs-1 { background: url('https://images.unsplash.com/photo-1600210492493-0946911123ea?w=1920&q=80') center/cover no-repeat; }
  .hs-2 { background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1920&q=80') center/cover no-repeat; }
  .hs-3 { background: url('https://images.unsplash.com/photo-1551038247-3d9af20df552?w=1920&q=80') center/cover no-repeat; }
  .hs-4 { background: url('https://images.unsplash.com/photo-1578683010236-d716f9a3f461?w=1920&q=80') center/cover no-repeat; }
  .hs-5 { background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1920&q=80') center/cover no-repeat; }
  .hs-6 { background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?w=1920&q=80') center/cover no-repeat; }
  .hs-7 { background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&q=80') center/cover no-repeat; }
  .hs-8 { background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1920&q=80') center/cover no-repeat; }
  .hs-9 { background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80') center/cover no-repeat; }
  .hs-10 { background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1920&q=80') center/cover no-repeat; }
  .hs-11 { background: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1920&q=80') center/cover no-repeat; }
  .hs-12 { background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80') center/cover no-repeat; }
  .hs-13 { background: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1920&q=80') center/cover no-repeat; }
  .hs-14 { background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920&q=80') center/cover no-repeat; }
  .hs-15 { background: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1920&q=80') center/cover no-repeat; }
  .hero-slide::after { content:''; position:absolute; inset:0;
    background: rgba(10,15,30,0.55); }

  /* ── 15 Hero Slides — Lighting & Architecture themed ──
     Ganti URL di Joomla Administrator > Media Manager
  */
  /* Luxury interior living room warm lighting */
  /* Modern minimalist interior bright */
  /* Hotel lobby dramatic lighting */
  /* Luxury hotel room warm glow */
  /* Contemporary sofa living room */
  /* Restaurant dining ambient light */
  /* Fine dining restaurant warm */
  /* Corporate office open space */
  /* Modern office building interior */
  /* High-rise building exterior night */
  /* Apartment building facade lit */
  /* Bedroom elegant lighting */
  /* Modern kitchen pendant lights */
  /* Retail store interior bright */
  /* Industrial warehouse lighting */

  /* slide caption */
  .hero-slide-caption {
    right: 60px; top: 50%; transform: translateY(-50%);
    z-index: 3; text-align: right;
    opacity: 0; animation: fadeLeft 1s 1.2s forwards;
  }
  .slide-caption-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 90px; line-height: 1;
    color: rgba(201,168,76,0.07); letter-spacing: -4px;
  }
  .slide-caption-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-style: italic;
    color: rgba(245,245,240,0.45); margin-top: -18px;
  }
  .slide-caption-loc {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-top: 6px;
  }

  /* progress */
  .hero-progress {
    bottom: 0; left: 0; height: 2px; z-index: 5;
    background: var(--gold); width: 0%; transition: width linear;
  }

  /* ── flex rows ── */
  .hero-nav-spacer { flex: 0 0 72px; position: relative; z-index: 3; }

  .hero-content {
    flex: 1 1 auto;
    min-height: 0;
    position: relative; z-index: 3;
    padding: 24px 64px 16px;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 820px;
    /* Pastikan konten tidak terdesak hero-bottom-bar */
    overflow: visible;
  }

  .hero-bottom-bar {
    flex: 0 0 56px;           /* fixed height strip di bawah */
    position: relative; z-index: 3;
    display: flex; align-items: center; justify-content: flex-end;
    padding: 0 64px;
    background: transparent;
  }

  /* ── hero-content children ── */
  .hero-eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
    display: flex; align-items: center; gap: 14px;
    opacity: 0; animation: fadeUp 1s 0.3s forwards;
  }
  .hero-eyebrow::before { content:''; width:36px; height:1px; background:var(--gold); }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(34px, 4.2vw, 74px);
    line-height: 0.95; letter-spacing: 2px;
    margin-bottom: 14px;
    opacity: 0; animation: fadeUp 1s 0.5s forwards;
  }
  .hero-title em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); display: block; }

  .hero-desc {
    font-size: 14px; line-height: 1.75; color: rgba(245,245,240,0.7);
    max-width: 440px; margin-bottom: 18px;
    opacity: 0; animation: fadeUp 1s 0.7s forwards;
  }

  .hero-actions {
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 1s 0.9s forwards;
    margin-top: 8px;
    position: relative; z-index: 10;
    row-gap: 10px;
  }

  /* ── bottom bar children ── */
    .hero-stats {
    display: flex; gap: 20px; flex-wrap: wrap;
    margin-bottom: 20px;
    opacity: 0; animation: fadeUp 1s 1.0s forwards;
  }
  .stat { border-left: 2px solid var(--gold); padding-left: 12px; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; color: var(--gold); line-height: 1;
  }
  .stat-label { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
  .stat { border-left: 2px solid var(--gold); padding-left: 12px; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; color: var(--gold); line-height: 1;
  }
  .stat-label { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }

  
  .hero-scroll span { font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }
  
  @keyframes scrollPulse{0%,100%{transform:scaleY(1);opacity:1}50%{transform:scaleY(0.6);opacity:0.4}}

  .hero-controls {
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
    opacity: 0; animation: fadeIn 1s 1.4s forwards;
    position: relative; z-index: 3;
  }
  .hero-prev, .hero-next {
    width: 34px; height: 34px; border: 1px solid rgba(201,168,76,0.4);
    background: rgba(10,15,30,0.5); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 13px;
    cursor: none; transition: all 0.3s; flex-shrink: 0;
  }
  .hero-prev:hover,.hero-next:hover{background:var(--gold);color:var(--navy);border-color:var(--gold)}
  .hero-dots { display: flex; gap: 5px; align-items: center; position: relative; z-index: 3; }
  .hero-dot {
    width: 10px; height: 2px; background: rgba(245,245,240,0.25);
    cursor: none; transition: all 0.4s; flex-shrink: 0;
  }
  .hero-dot.active { width: 22px; background: var(--gold); }

  /* keyframes */
  @keyframes fadeUp  { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
  @keyframes fadeLeft{ from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:translateX(0)} }
  @keyframes fadeIn  { from{opacity:0} to{opacity:1} }

  /* ── responsive ── */
  @media (min-width: 1200px) {
    .hero-content { padding: 32px 72px 20px; max-width: 900px; }
    .hero-bottom-bar { padding: 0 72px; }
  }

  @media (max-width: 1100px) {
    .hero-content     { padding: 20px 48px 12px; }
    .hero-bottom-bar  { padding: 0 48px; }
    .hero-slide-caption { right: 32px; }
  }
  @media (max-width: 860px) {
    .hero-content     { padding: 16px 28px 10px; }
    .hero-bottom-bar  { padding: 0 28px; flex: 0 0 48px; }
    .hero-slide-caption { display: none; }
    .hero-stats { gap: 16px; }
    .stat-num   { font-size: 20px; }
  }
  @media (max-width: 560px) {
    .hero-nav-spacer  { flex: 0 0 56px; }
    .hero-content     { padding: 12px 20px 8px; }
    .hero-bottom-bar  { padding: 0 20px; flex: 0 0 44px; }
    .hero-stats       { display: none; }
    .hero-dots        { display: none; }
  }

  /* MARQUEE */
  .marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden; padding: 18px 0;
    background: rgba(201,168,76,0.03);
  }
  .marquee-track {
    display: flex; gap: 60px; animation: marqueeRun 20s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gray); display: flex; align-items: center; gap: 20px;
    flex-shrink: 0;
  }
  .marquee-item .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
  @keyframes marqueeRun { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SECTIONS COMMON */
  section { padding: 120px 60px; }
  .section-eyebrow {
    font-size: 10px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1; letter-spacing: 1px;
    margin-bottom: 24px;
  }
  .section-desc { font-size: 15px; line-height: 1.8; color: rgba(245,245,240,0.6); max-width: 520px; }

  /* ABOUT */
  .about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual {
    position: relative; aspect-ratio: 4/5;
    background: var(--navy2);
    overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, transparent 60%);
  }
  .about-visual-inner {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(160deg, #0d1a2e, #111827);
  }
  .about-light-icon {
    font-size: 120px; opacity: 0.15; filter: sepia(1) saturate(3);
  }
  .about-badge {
    position: absolute; bottom: 30px; left: 30px;
    background: var(--gold); color: var(--navy);
    padding: 16px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px; letter-spacing: 2px;
  }
  .about-badge strong { display: block; font-size: 40px; line-height: 1; }
  .about-border-accent {
    position: absolute; top: -12px; right: -12px;
    width: 60%; height: 60%;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  }
  .about-content .section-desc { margin-bottom: 40px; }
  .pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
  .pillar {
    padding: 20px; border: 1px solid var(--border);
    transition: border-color 0.3s, background 0.3s;
  }
  .pillar:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
  .pillar-icon { font-size: 24px; margin-bottom: 10px; }
  .pillar-title { font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 6px; }
  .pillar-text { font-size: 12px; color: var(--gray); line-height: 1.6; }

  /* PRODUCTS */
  .products-section { background: var(--navy2); }
  .products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .product-card {
    position: relative;
    color: var(--white); text-decoration: none; aspect-ratio: 3/4;
    overflow: hidden; cursor: none;
    background: var(--navy);
  }
  .product-card-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
  }
  .product-card:hover .product-card-bg { transform: scale(1.05); }
  .pc-1 { background: linear-gradient(160deg, #0d2236, #091520); }
  .pc-2 { background: linear-gradient(160deg, #1a2e15, #0d1a0a); }
  .pc-3 { background: linear-gradient(160deg, #2e1a06, #1a0e02); }
  .pc-4 { background: linear-gradient(160deg, #0e1a2e, #080f1a); }
  .pc-5 { background: linear-gradient(160deg, #2e200d, #1a1208); }
  .pc-6 { background: linear-gradient(160deg, #1a0d2e, #0d0818); }
  .product-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  }
  .product-card-icon {
    position: absolute; top: 30px; left: 30px;
    font-size: 36px; opacity: 0.3;
    transition: opacity 0.3s, transform 0.3s;
  }
  .product-card:hover .product-card-icon { opacity: 0.7; transform: scale(1.1); }
  .product-card-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 30px;
    transform: translateY(10px);
    transition: transform 0.4s;
  }
  .product-card:hover .product-card-content { transform: translateY(0); }
  .product-card-label {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
  }
  .product-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700; margin-bottom: 12px;
  }
  .product-card-desc {
    font-size: 12px; color: rgba(245,245,240,0.6); line-height: 1.6;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .product-card:hover .product-card-desc { max-height: 80px; }
  .product-card-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-top: 12px;
    opacity: 0; transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .product-card:hover .product-card-arrow { opacity: 1; transform: translateX(0); }

  /* PROJECTS */
  .projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
  .projects-filter {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px;
  }
  .filter-btn {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    padding: 8px 18px; border: 1px solid var(--border);
    background: none; color: var(--gray);
    cursor: none; transition: all 0.3s;
  }
  .filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
  .projects-masonry {
    display: grid; grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 4px;
  }
  .proj {
    position: relative; overflow: hidden; cursor: none;
    color: var(--white); text-decoration: none;
    background: var(--navy2);
  }
  .proj-1 { grid-column: span 7; grid-row: span 2; aspect-ratio: auto; min-height: 400px; }
  .proj-2 { grid-column: span 5; min-height: 196px; }
  .proj-3 { grid-column: span 5; min-height: 196px; }
  .proj-4 { grid-column: span 4; min-height: 250px; }
  .proj-5 { grid-column: span 4; min-height: 250px; }
  .proj-6 { grid-column: span 4; min-height: 250px; }
  .proj-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d1a2e, #111827);
    transition: transform 0.5s ease;
    display: flex; align-items: center; justify-content: center;
  }
  .proj:hover .proj-bg { transform: scale(1.04); }
  .proj-icon { font-size: 48px; opacity: 0.1; }
  .proj-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  }
  .proj-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px;
  }
  .proj-cat { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--green-light); margin-bottom: 6px; }
  .proj-name, .proj-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
  .proj-loc, .proj-meta { font-size: 11px; color: var(--gray); margin-top: 4px; }
  .proj:hover .proj-overlay { background: linear-gradient(to top, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.3) 50%); }

  /* NEWS */
  .news-section { background: var(--navy2); }
  .news-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2px; margin-top: 60px; }
  .news-card { position: relative; overflow: hidden; cursor: none; display: flex; align-items: stretch; background: var(--navy); border: 1px solid var(--border); transition: border-color 0.3s, background 0.3s; }
  .news-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.03); }
  .news-card-thumb { flex: 0 0 150px; width: 150px; min-height: 100%; overflow: hidden; display: block; border-right: 1px solid var(--border); }
  .news-card-thumb img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; display: block; transition: transform .5s ease; }
  .news-card:hover .news-card-thumb img { transform: scale(1.04); }
  .news-card-inner {
    height: 100%; padding: 40px;
    background: transparent;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 340px;
  }
  .news-card-date { font-size: 10px; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px; }
  .news-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; line-height: 1.4; font-weight: 700;
    margin-bottom: 16px;
  }
  .news-card-excerpt { font-size: 13px; color: var(--gray); line-height: 1.7; flex: 1; }
  .news-card-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); text-decoration: none; margin-top: 24px;
    transition: gap 0.3s;
  }
  .news-card:hover .news-card-link { gap: 14px; }
  .news-card.featured .news-card-inner { padding: 50px; }
  .news-card.featured .news-card-title { font-size: 30px; }


  /* v2.3.6.52 — automatic/manual card text contrast */
  .product-card.text-light, .proj.text-light { color: #f5f5f0; }
  .product-card.text-dark, .proj.text-dark { color: #07111f; }
  .product-card.text-dark .product-card-overlay { background: linear-gradient(to top, rgba(255,255,255,.94) 0%, rgba(255,255,255,.50) 45%, transparent 72%); }
  .proj.text-dark .proj-overlay { background: linear-gradient(to top, rgba(255,255,255,.94) 0%, rgba(255,255,255,.45) 48%, transparent 72%); }
  .product-card.text-dark .product-card-label, .product-card.text-dark .product-card-arrow, .proj.text-dark .proj-cat { color: #735800; }
  .product-card.text-dark .product-card-desc, .proj.text-dark .proj-meta, .proj.text-dark .proj-loc { color: rgba(7,17,31,.72); }
  .product-card.text-light .product-card-title, .product-card.text-light .product-card-desc, .proj.text-light .proj-title, .proj.text-light .proj-name, .proj.text-light .proj-meta, .proj.text-light .proj-loc { text-shadow: 0 2px 12px rgba(0,0,0,.7); }
  .news-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

  /* CONTACT STRIP */
  .contact-strip {
    background: var(--gold);
    padding: 80px 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .contact-strip-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--navy); letter-spacing: 2px; line-height: 1;
  }
  .contact-strip-title em { color: var(--navy2); font-style: normal; }
  
  /* ── BUTTONS ── */
  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: background .3s, transform .2s;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }
  .btn-outline {
    display: inline-block;
    border: 1px solid rgba(201,168,76,.5);
    color: var(--gold);
    padding: 14px 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    cursor: none;
    transition: all .3s;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,.1);
    transform: translateY(-2px);
  }

  .btn-dark {
    font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    background: var(--navy); color: var(--gold);
    padding: 16px 36px; text-decoration: none;
    transition: all 0.3s; cursor: none; white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-dark:hover { background: var(--navy2); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: #060b14;
    padding: 80px 60px 40px;
    border-top: 1px solid var(--border);
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
  .footer-brand .nav-logo { display: block; margin-bottom: 20px; font-size: 32px; }
  .footer-tagline { font-size: 13px; color: var(--gray); line-height: 1.7; max-width: 260px; margin-bottom: 30px; }
  .footer-social { display: flex; gap: 14px; }
  .social-btn {
    width: 38px; height: 38px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--gray); text-decoration: none;
    transition: all 0.3s; cursor: none;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col h4 {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 12px; }
  .footer-col ul a {
    font-size: 13px; color: var(--gray); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-col ul a:hover { color: var(--white); }
  .footer-contact-item { font-size: 13px; color: var(--gray); margin-bottom: 12px; line-height: 1.6; }
  .footer-contact-item strong { color: rgba(245,245,240,0.8); display: block; font-weight: 500; margin-bottom: 2px; }
  .footer-bottom {
    padding-top: 40px; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 12px; color: rgba(245,245,240,0.3); }
  .footer-bottom a { color: var(--gold); text-decoration: none; }
  .footer-credit { font-size: 11px; color: rgba(245,245,240,0.2); letter-spacing: 1px; }
  .footer-credit span { color: var(--gold); font-weight: 600; }

  /* CLIENTS SECTION */
  .clients-section { padding: 100px 60px; background: var(--navy2); }
  .clients-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 16px;
  }
  .clients-sub {
    font-size: 14px; color: var(--gray); line-height: 1.7;
    max-width: 500px; margin-bottom: 56px;
  }

  /* Toggle */
  
  
  
  
  
  

  /* Track */
  .clients-track-wrap {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    mask: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    margin-bottom: 4px;
    padding: 6px 0;
  }
  .clients-track {
    display: flex; gap: 16px;
    width: max-content;
    animation: slideLeft 35s linear infinite;
  }
  .clients-track-rev { animation: slideRight 35s linear infinite; }
  @keyframes slideLeft  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes slideRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
  .clients-track-wrap:hover .clients-track,
  .clients-track-wrap:hover .clients-track-rev { animation-play-state: paused; }

  /* Logo card */
  .clogo { flex-shrink: 0; }
  .clogo-box {
    width: 160px; height: 80px;
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 4px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
    cursor: none;
  }
  .clogo-box:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-3px); }
  .clogo-abbr {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; letter-spacing: 2px;
    color: var(--c);
    transition: filter 0.4s, color 0.4s;
  }
  .clogo-name {
    font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--gray);
    transition: color 0.4s;
  }

  /* Grey mode */
  .clients-section.mode-grey .clogo-abbr { filter: grayscale(1); color: rgba(245,245,240,0.35) !important; }
  .clients-section.mode-grey .clogo-box { border-color: rgba(255,255,255,0.06); }
  .clients-section.mode-grey .clogo-box:hover { border-color: var(--gold); }
  .clients-section.mode-grey .clogo-abbr { filter: grayscale(1) brightness(0.8); }

  /* Count bar */
  .clients-count {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; margin-top: 60px;
    padding: 40px; border: 1px solid var(--border);
    background: rgba(201,168,76,0.03);
  }
  .cc-item { text-align: center; }
  .cc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; color: var(--gold); display: block; line-height: 1;
  }
  .cc-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
  .cc-div { width: 1px; height: 60px; background: var(--border); }

  /* WHATSAPP FLOAT */
  .wa-float {
    position: fixed; bottom: 32px; right: 32px; z-index: 900;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center; justify-content: center;
    font-size: 24px; text-decoration: none; color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 3s ease-in-out infinite;
  }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); animation: none; }
  @keyframes waPulse {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
  }

  /* REVEAL ANIMATION */
  .reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1200px) {
    .hero-content { padding: 24px 48px; }
    .hero-bottom-bar { padding: 14px 48px 20px; }
    .hero-slide-caption { right: 40px; }
  }

  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 12px 24px; }
    .nav-links, .nav-cta { display: none; }
    section { padding: 80px 24px; }

    .hero-nav-spacer { flex: 0 0 64px; }
    .hero-content { padding: 20px 24px; }
    .hero-bottom-bar { padding: 12px 24px 16px; }
    .hero-stats { gap: 16px; }
    .stat-num { font-size: 22px; }
    .hero-slide-caption { display: none; }
    

    .about-section { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .product-card:nth-child(n+5) { display: none; }
    .projects-masonry { grid-template-columns: 1fr 1fr; }
    .proj-1 { grid-column: span 2; }
    .proj-2, .proj-3 { grid-column: span 1; }
    .proj-4, .proj-5, .proj-6 { grid-column: span 1; }
    .news-grid { grid-template-columns: 1fr; }
    .news-card-thumb { flex-basis: 210px; width: 210px; }
    .contact-strip { flex-direction: column; gap: 30px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .clients-header { flex-direction: column; gap: 20px; }
    
    .clients-count { flex-direction: column; gap: 20px; }
    .cc-div { width: 60px; height: 1px; }
  }

  @media (max-width: 560px) {
    .hero-nav-spacer { flex: 0 0 56px; }
    .hero-content { padding: 16px 20px; }
    .hero-bottom-bar { padding: 10px 20px 14px; }
    .hero-stats { gap: 12px; }
    .stat-num { font-size: 20px; }
    .stat-label { display: none; }
    .hero-dots { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .news-card { flex-direction: column; }
    .news-card-thumb { width: 100%; flex-basis: auto; min-height: 0; border-right: 0; border-bottom: 1px solid var(--border); aspect-ratio: 16 / 9; }
    .news-card-thumb img { min-height: 0; height: 100%; }
    .news-card-inner, .news-card.featured .news-card-inner { padding: 28px; min-height: 0; }
    .projects-masonry { grid-template-columns: 1fr; }
    .proj-1, .proj-2, .proj-3, .proj-4, .proj-5, .proj-6 { grid-column: span 1; min-height: 220px; }
    .footer-grid { grid-template-columns: 1fr; }
  }

  


  /* ======= HAMBURGER MOBILE MENU ======= */
  .nav-hamburger-wrap{display:none;position:relative;flex-shrink:0}
  .nav-hamburger{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:5px;width:32px;height:32px;background:none;border:1px solid rgba(201,168,76,.4);padding:0;cursor:pointer;transition:border-color .3s}
  .nav-hamburger:hover{border-color:var(--gold)}
  .nav-hamburger span{display:block;width:16px;height:1.5px;background:var(--gold);transition:all .3s}
  .nav-logo-img{height:32px;width:auto;display:inline-block;vertical-align:middle;margin-right:8px;object-fit:contain}
  .nav-drop{position:fixed;top:58px;right:16px;width:200px;background:rgba(10,15,30,.97);border:1px solid rgba(201,168,76,.2);backdrop-filter:blur(20px);z-index:2000;opacity:0;pointer-events:none;transform:translateY(-8px);transition:opacity .2s,transform .2s}
  .nav-drop.show{opacity:1;pointer-events:auto;transform:translateY(0)}
  .nav-drop ul{list-style:none;padding:6px 0;margin:0}
  .nav-drop li{border-bottom:1px solid rgba(201,168,76,.07)}
  .nav-drop li:last-child{border-bottom:none}
  .nav-drop a{display:block;font-size:10px;letter-spacing:2px;text-transform:uppercase;color:rgba(245,245,240,.65);padding:12px 20px;text-decoration:none;transition:all .2s}
  .nav-drop a:hover,.nav-drop a.active{color:var(--gold);background:rgba(201,168,76,.05);padding-left:28px}
  .nav-drop-cta{color:var(--gold) !important;font-weight:600 !important;border-top:1px solid rgba(201,168,76,.15) !important}
  @media(max-width:900px){
    .nav-links{display:none !important}
    .nav-cta{display:none !important}
    .lang-switcher{display:none !important}
    .nav-hamburger-wrap{display:block !important}
    nav{padding:14px 20px !important}
    nav.scrolled{padding:10px 20px !important}
  }
  @media(max-width:560px){
    .nav-logo{font-size:20px !important}
  }
  /* ======= END HAMBURGER ======= */


  /* Footer brand name */
  .footer-brand-name {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
  }

/* Dynamic client logos */
.clogo a{display:block;color:inherit;text-decoration:none}.clogo-image{display:block;max-width:128px;max-height:50px;width:auto;height:auto;object-fit:contain}.clogo-box{overflow:hidden}

/* v2.3.6.1 — approved hero brightness: navy overlay 42% */
.hero-slide::after { background: rgba(10,15,30,var(--tde-hero-overlay,0.42)); }
