 :root {
      --bg: #0d0d0d;
      --bg-secondary: #111111;
      --bg-card: #161616;
      --fg: #f5f0e8;
      --fg-muted: #9a9080;
      --gold: #f0a500;
      --gold-light: #ffc940;
      --gold-dark: #c07800;
      --blue-accent: #1a3a5c;
      --border: #2a2520;
      --border-gold: rgba(240, 165, 0, 0.3);
      --nav-bg: rgba(13, 13, 13, 0.95);
    }
    [data-theme="light"] {
      --bg: #f2ede4;
      --bg-secondary: #e8e0d0;
      --bg-card: #ffffff;
      --fg: #1a1410;
      --fg-muted: #6b5f50;
      --gold: #c07800;
      --gold-light: #d99000;
      --gold-dark: #8a5500;
      --blue-accent: #1a3a5c;
      --border: #d4c8b8;
      --border-gold: rgba(192, 120, 0, 0.3);
      --nav-bg: rgba(242, 237, 228, 0.95);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background-color: var(--bg);
      color: var(--fg);
      overflow-x: hidden;
      transition: background-color 0.3s, color 0.3s;
    }
    h1, h2, h3, h4, h5 { font-family: 'Barlow Condensed', sans-serif; color: var(--fg); }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--nav-bg);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    .nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-text { display: flex; flex-direction: column; }
    .nav-logo-sub { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; }
    .nav-logo-main { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: var(--fg); letter-spacing: 0.05em; line-height: 1; }
    .nav-links { display: flex; align-items: center; gap: 2rem; }
    .nav-link { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
    .nav-link:hover { color: var(--gold); }
    .nav-cta { background: var(--gold); color: #000; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.6rem 1.4rem; text-decoration: none; transition: all 0.2s; }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* Theme toggle */
    .theme-btn { background: none; border: 1px solid var(--border); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--fg-muted); transition: all 0.2s; }
    .theme-btn:hover { border-color: var(--gold); color: var(--gold); }
    .icon-sun { display: none; }
    .icon-moon { display: block; }
    [data-theme="light"] .icon-sun { display: block; }
    [data-theme="light"] .icon-moon { display: none; }

    /* Mobile button container */
    .mob-btn { display: none; background: none; border: none; padding: 0; color: var(--fg); cursor: pointer; align-items: center; gap: 0.5rem; transition: all 0.2s; }
    
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .mob-btn { display: flex; }
    }

    /* ══════════════════════════════════════════
       MOBILE MENU — Landing Page Layout
       (colors kept in Lumen Gen gold theme)
    ══════════════════════════════════════════ */

    /* Overlay */
    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 200;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .mobile-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Panel */
    .mobile-menu {
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      background: var(--bg-card);
      border-left: 1px solid var(--border-gold);
      position: fixed;
      top: 0;
      bottom: 0;
      right: 0;
      width: 300px;
      max-width: 85vw;
      z-index: 210;
      padding: 0;
      display: flex;
      flex-direction: column;
    }
    .mobile-menu.open { transform: translateX(0); }

    /* Header */
    .mob-header {
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--bg-secondary);
    }
    .mob-brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .mob-brand-text { display: flex; flex-direction: column; }
    .mob-brand-main {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--fg);
      line-height: 1;
    }
    .mob-brand-sub {
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--gold);
      font-weight: 600;
      margin-top: 1px;
    }
    .mob-close {
      background: var(--bg);
      border: 1px solid var(--border);
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--fg-muted);
      transition: all 0.2s;
      flex-shrink: 0;
    }
    .mob-close:hover { background: var(--gold); border-color: var(--gold); color: #000; }

    /* Body */
    .mob-body {
      flex: 1;
      overflow-y: auto;
      padding: 1.5rem;
    }

    /* Nav links */
    .mob-nav { display: flex; flex-direction: column; }
    .mob-nav-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--fg-muted);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
      transition: all 0.25s ease;
      /* Staggered slide-in animation */
      opacity: 0;
      transform: translateX(20px);
    }
    .mobile-menu.open .mob-nav-link {
      opacity: 1;
      transform: translateX(0);
    }
    .mob-nav-link:nth-child(1) { transition: color 0.25s ease, opacity 0.4s 0.1s ease, transform 0.4s 0.1s ease; }
    .mob-nav-link:nth-child(2) { transition: color 0.25s ease, opacity 0.4s 0.15s ease, transform 0.4s 0.15s ease; }
    .mob-nav-link:nth-child(3) { transition: color 0.25s ease, opacity 0.4s 0.2s ease, transform 0.4s 0.2s ease; }
    .mob-nav-link:nth-child(4) { transition: color 0.25s ease, opacity 0.4s 0.25s ease, transform 0.4s 0.25s ease; }
    .mob-nav-link:nth-child(5) { transition: color 0.25s ease, opacity 0.4s 0.3s ease, transform 0.4s 0.3s ease; }
     .mob-nav-link:nth-child(6) { transition: color 0.25s ease, opacity 0.4s 0.3s ease, transform 0.4s 0.3s ease; }
    .mob-nav-link:last-child { border-bottom: none; }
    .mob-nav-link:hover { color: var(--gold); }
    .mob-nav-link svg { flex-shrink: 0; width: 18px; height: 18px; }

    /* Quick links (other Lumen Group subsidiaries) */
    .mob-quick-section {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .mob-quick-label {
      font-size: 0.62rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--fg-muted);
      opacity: 0.7;
      margin-bottom: 0.75rem;
    }
    .mob-quick-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem;
      margin-bottom: 0.5rem;
      border-radius: 2px;
      text-decoration: none;
      border: 1px solid transparent;
      transition: all 0.2s;
    }
    .mob-quick-item:hover { border-color: var(--border-gold); }
    .mob-quick-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .mob-quick-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.1;
    }
    .mob-quick-sub { font-size: 0.7rem; color: var(--fg-muted); margin-top: 0.1rem; }

    /* Theme row */
    .mob-theme-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .mob-theme-label {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--fg-muted);
    }

    /* Footer */
    .mob-footer {
      padding: 1.25rem 1.5rem;
      border-top: 1px solid var(--border);
      background: var(--bg-secondary);
    }
    .mob-cta {
      background: var(--gold);
      color: #000;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 0.9rem 1rem;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s;
      display: block;
      width: 100%;
    }
    .mob-cta:hover { background: var(--gold-light); }

    /* ── SCROLL OFFSET (fixed nav = 68px) ── */
    section[id], div[id] { scroll-margin-top: 68px; }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding-top: 68px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.2) 100%);
    }
    [data-theme="light"] .hero-overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.15) 100%);
    }
    .hero-content { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem 5rem; }
    .hero-tag { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--gold); padding: 0.3rem 0.8rem; margin-bottom: 1.5rem; }
    .hero-tag-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
    .hero-tag-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-weight: 600; }
    .hero-title { font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase; color: #fff; margin-bottom: 0.5rem; }
    .hero-title span { color: var(--gold); }
    .hero-tagline { font-size: clamp(1rem, 2vw, 1.3rem); color: rgba(255,255,255,0.7); margin-bottom: 2rem; font-weight: 300; max-width: 600px; border-left: 3px solid var(--gold); padding-left: 1rem; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
    .btn-gold { background: var(--gold); color: #000; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.85rem 2rem; text-decoration: none; transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.5rem; }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,0.3); }
    .btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.85rem 2rem; text-decoration: none; transition: all 0.25s; }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); max-width: 700px; }
    @media (max-width: 640px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
    .hero-stat { background: rgba(0,0,0,0.6); padding: 1.25rem 1rem; backdrop-filter: blur(8px); }
    .hero-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; }
    .hero-stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }

    /* ── SECTION COMMON ── */
    .section { padding: 6rem 0; }
    .section-alt { background: var(--bg-secondary); }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
    .section-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
    .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
    .section-title { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; text-transform: uppercase; line-height: 1.0; margin-bottom: 1rem; letter-spacing: -0.01em; }
    .section-title span { color: var(--gold); }
    .section-body { font-size: 1rem; line-height: 1.75; color: var(--fg-muted); max-width: 640px; }

    /* ── MARQUEE ── */
    .marquee-wrap { background: var(--gold); padding: 0.7rem 0; overflow: hidden; }
    .marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-item { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #000; padding: 0 2.5rem; white-space: nowrap; display: flex; align-items: center; gap: 1rem; }
    .marquee-sep { color: rgba(0,0,0,0.3); }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ── ABOUT ── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
    .about-image-stack { position: relative; }
    .about-img-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
    .about-img-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--gold); padding: 1.5rem; width: 160px; text-align: center; }
    .about-img-badge-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 900; color: #000; line-height: 1; }
    .about-img-badge-text { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(0,0,0,0.7); font-weight: 700; margin-top: 0.2rem; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
    .check-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.95rem; color: var(--fg-muted); }
    .check-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
    .advantage-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-top: 2rem; }
    @media (max-width: 640px) { .advantage-cards { grid-template-columns: 1fr; } }
    .adv-card { background: var(--bg-card); padding: 1.5rem; border-top: 3px solid transparent; transition: border-color 0.3s; }
    .adv-card:hover { border-color: var(--gold); }
    .adv-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
    .adv-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--fg); }
    .adv-text { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

    /* ── MARKETS ── */
    .markets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
    @media (max-width: 768px) { .markets-grid { grid-template-columns: 1fr; } }
    .market-card { padding: 3rem 2.5rem; position: relative; overflow: hidden; }
    .market-eu { background: var(--blue-accent); color: #fff; }
    .market-gcc { background: var(--bg-card); }
    .market-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); font-weight: 700; margin-bottom: 0.75rem; }
    .market-title { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 900; text-transform: uppercase; line-height: 1; margin-bottom: 0.5rem; }
    .market-eu .market-title { color: #fff; }
    .market-subtitle { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1.5rem; font-weight: 600; }
    .market-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
    .market-list li { display: flex; flex-direction: column; gap: 0.2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .market-gcc .market-list li { border-color: var(--border); }
    .market-list-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
    .market-list-desc { font-size: 0.82rem; line-height: 1.5; color: rgba(255,255,255,0.65); }
    .market-gcc .market-list-desc { color: var(--fg-muted); }

    /* ── FLEET ── */
    .fleet-header-img { width: 100%; height: 380px; object-fit: cover; display: block; }
    @media (max-width: 640px) { .fleet-header-img { height: 220px; } }
    .fleet-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
    @media (max-width: 768px) { .fleet-layout { grid-template-columns: 1fr; gap: 2rem; } }
    .fleet-equipment-list { display: flex; flex-direction: column; gap: 0; }
    .fleet-item { display: flex; align-items: center; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
    .fleet-item:first-child { border-top: 1px solid var(--border); }
    .fleet-item-img { width: 72px; height: 52px; object-fit: cover; flex-shrink: 0; background: var(--border); }
    .fleet-item-info { flex: 1; }
    .fleet-item-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; color: var(--fg); }
    .fleet-item-desc { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.2rem; }
    .sim-cards { display: flex; flex-direction: column; gap: 1.25rem; }
    .sim-card { background: var(--bg-card); border: 1px solid var(--border); padding: 1.5rem; border-left: 3px solid var(--gold); }
    .sim-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); margin-bottom: 0.5rem; }
    .sim-card-text { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.6; }

    /* ── PHASES ── */
    .phases-hero-img { width: 100%; height: 300px; object-fit: cover; display: block; }
    .phases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-top: 3rem; }
    @media (max-width: 640px) { .phases-grid { grid-template-columns: 1fr; } }
    .phase-card { background: var(--bg-card); padding: 2.5rem 2rem; position: relative; }
    .phase-num { font-family: 'Barlow Condensed', sans-serif; font-size: 4rem; font-weight: 900; line-height: 1; color: var(--gold); opacity: 0.15; position: absolute; top: 1rem; right: 1.25rem; }
    .phase-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
    .phase-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: var(--fg); margin-bottom: 1rem; }
    .phase-items { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .phase-items li { font-size: 0.88rem; color: var(--fg-muted); padding-left: 1rem; border-left: 2px solid var(--gold); line-height: 1.5; }

    /* ── INTEGRITY ── */
    .integrity-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; background: var(--border); }
    @media (max-width: 900px) { .integrity-grid { grid-template-columns: 1fr; } }
    .integrity-card { background: var(--bg-card); padding: 2.5rem 2rem; }
    .integrity-icon { width: 48px; height: 48px; background: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
    .integrity-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; color: var(--fg); margin-bottom: 0.75rem; }
    .integrity-text { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }
    .integrity-highlights { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
    .integrity-highlights li { font-size: 0.82rem; color: var(--fg-muted); padding-left: 0.75rem; border-left: 2px solid var(--gold); }
    .integrity-highlights strong { color: var(--fg); }

    /* ── PROGRAMS ── */
    .programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); }
    @media (max-width: 900px) { .programs-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .programs-grid { grid-template-columns: 1fr; } }
    .prog-card { background: var(--bg-card); padding: 2rem; cursor: pointer; border-top: 3px solid transparent; transition: all 0.3s; }
    .prog-card:hover { border-color: var(--gold); background: var(--bg-secondary); }
    .prog-icon { width: 52px; height: 52px; background: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
    .prog-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; text-transform: uppercase; color: var(--fg); margin-bottom: 0.75rem; }
    .prog-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; margin-bottom: 1rem; }
    .prog-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
    .prog-list li { font-size: 0.8rem; color: var(--fg-muted); display: flex; align-items: center; gap: 0.5rem; }
    .prog-list li::before { content: ''; width: 4px; height: 4px; background: var(--gold); flex-shrink: 0; }

    /* ── QUOTE BANNER ── */
    .quote-banner { background: var(--gold); padding: 3rem 1.5rem; text-align: center; }
    .quote-text { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; color: #000; max-width: 900px; margin: 0 auto; }
    .quote-attr { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(0,0,0,0.5); margin-top: 0.75rem; font-weight: 600; }

    /* ── GALLERY ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2px;
      background: var(--bg);
      margin-top: 2rem;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: var(--bg-card);
    }
    .gallery-item img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      transition: transform 0.5s ease, opacity 0.3s;
      display: block;
    }
    .gallery-item:hover img {
      transform: scale(1.05);
      opacity: 0.7;
    }
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    .gallery-zoom-icon {
      color: #fff;
      width: 48px;
      height: 48px;
      border: 2px solid #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: scale(0.8);
      transition: transform 0.3s;
    }
    .gallery-item:hover .gallery-zoom-icon {
      transform: scale(1);
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.95);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .lightbox.active {
      opacity: 1;
      pointer-events: all;
    }
    .lightbox-img {
      max-width: 90%;
      max-height: 90vh;
      object-fit: contain;
      border: 4px solid var(--gold);
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #fff;
      cursor: pointer;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.3);
      transition: all 0.2s;
    }
    .lightbox-close:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      font-size: 2rem;
      cursor: pointer;
      padding: 1rem;
      user-select: none;
      transition: color 0.2s;
    }
    .lightbox-nav:hover { color: var(--gold); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    /* ── BRANCHES ── */
    .branches-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); }
    @media (max-width: 900px) { .branches-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 500px) { .branches-grid { grid-template-columns: 1fr 1fr; } }
    .branch-card { background: var(--bg-card); padding: 1.5rem; text-align: center; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
    .branch-card:hover { border-color: var(--gold); }
    .branch-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
    .branch-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; color: var(--fg); }
    .branch-region { font-size: 0.7rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

    /* ── CONTACT ── */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
    .contact-detail { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
    .contact-detail-icon { width: 40px; height: 40px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #000; }
    .contact-detail-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); font-weight: 700; }
    .contact-detail-value { font-size: 0.95rem; color: var(--fg); margin-top: 0.15rem; }
    .contact-form { background: var(--bg-card); border: 1px solid var(--border); padding: 2.5rem; }
    .form-group { margin-bottom: 1.25rem; }
    .form-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; color: var(--fg-muted); margin-bottom: 0.5rem; }
    .form-input, .form-select, .form-textarea { width: 100%; background: var(--bg); border: 1px solid var(--border); padding: 0.85rem 1rem; color: var(--fg); font-family: 'Barlow', sans-serif; font-size: 0.9rem; transition: border-color 0.2s; outline: none; }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
    .form-textarea { resize: none; }
    .form-submit { width: 100%; background: var(--gold); color: #000; border: none; padding: 1rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: all 0.2s; }
    .form-submit:hover { background: var(--gold-light); }

    /* ── FOOTER ── */
    footer { background: #000; padding: 2.5rem 1.5rem; border-top: 3px solid var(--gold); }
    .footer-inner { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
    .footer-brand { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; text-decoration: none; }
    .footer-brand span { color: var(--gold); }
    .footer-text { font-size: 0.78rem; color: rgba(255,255,255,0.35); text-align: center; }
    .footer-back { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); text-decoration: none; font-weight: 700; transition: opacity 0.2s; }
    .footer-back:hover { opacity: 0.7; }

    /* ── CALLOUT ── */
    .callout { background: linear-gradient(135deg, #1a1a00, #2a2000); border: 1px solid var(--border-gold); padding: 3rem; position: relative; overflow: hidden; }
    [data-theme="light"] .callout { background: linear-gradient(135deg, #fff8e8, #fff3d0); border-color: var(--gold); }
    .callout-title { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 900; text-transform: uppercase; color: var(--gold); }
    .callout-text { font-size: 0.95rem; color: var(--fg-muted); margin-top: 0.75rem; line-height: 1.65; max-width: 600px; }