    :root {
      --navy:     #0A1628;
      --navy2:    #0D1F3C;
      --blue:     #1565C0;
      --bluelt:   #42A5F5;
      --gold:     #C9A84C;
      --goldlt:   #E8C97A;
      --white:    #FFFFFF;
      --offwhite: #F5F3EE;
      --charcoal: #1F2937;
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Jost', sans-serif;
      --ease:     cubic-bezier(.25,.46,.45,.94);
      --trans:    0.42s cubic-bezier(.25,.46,.45,.94);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); font-weight: 300; background: var(--navy); color: var(--white); overflow-x: clip; cursor: none; }
    body.menu-open { overflow: hidden; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    a { color: inherit; text-decoration: none; }

    /* Cursor */
    #cursor, #cursor-ring { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width var(--trans), height var(--trans); }
    #cursor { width: 10px; height: 10px; background: var(--gold); }
    #cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.55); background: transparent; }
    body.cursor-hover #cursor { width: 6px; height: 6px; }
    body.cursor-hover #cursor-ring { width: 52px; height: 52px; }
    @media (pointer: coarse) { #cursor, #cursor-ring { display: none; } body { cursor: auto; } }

    /* Scroll Reveal */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }
    @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

    /* Buttons */
    .btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; padding: 14px 30px; border: 1px solid currentColor; transition: var(--trans); cursor: none; }
    .btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
    .btn-gold:hover { background: var(--goldlt); border-color: var(--goldlt); }
    .btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.08); border-color: var(--white); }

    /* Navbar */
    #navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 200; padding: 0 48px; height: 72px; display: flex; align-items: center; justify-content: space-between; background: rgba(10,22,40,0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,76,0.2); transition: border-bottom 0.5s var(--ease); }
    #navbar.scrolled { border-bottom-color: var(--gold); }
    .nav-logo img { height: 34px; width: auto; display: block; }
    .nav-right { display: flex; align-items: center; gap: 36px; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.8); position: relative; padding-bottom: 3px; transition: color var(--trans); }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--trans); }
    .nav-links a:hover, .nav-links a.active { color: var(--white); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 22px; border: 1px solid var(--gold); color: var(--gold); background: transparent; transition: var(--trans); cursor: none; }
    .nav-cta:hover { background: var(--gold); color: var(--navy); }
    .hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: none; padding: 4px; }
    .hamburger span { display: block; width: 100%; height: 1px; background: var(--white); transition: var(--trans); transform-origin: center; }
    .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    @media (max-width: 768px) { #navbar { padding: 0 24px; } .nav-links, .nav-cta { display: none; } .hamburger { display: flex; } }

    .has-dropdown { position: relative; }
    .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
    .nav-chevron { transition: transform 0.35s var(--ease); flex-shrink: 0; opacity: 0.55; display: block; }
    .has-dropdown:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }
    .nav-dropdown { position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(-8px); width: 540px; display: flex; background: rgba(7,16,32,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(201,168,76,0.18); border-top: 2px solid var(--gold); opacity: 0; pointer-events: none; transition: opacity 0.32s var(--ease), transform 0.32s var(--ease); z-index: 300; overflow: hidden; }
    .has-dropdown::after { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 22px; }
    .has-dropdown:hover .nav-dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
    .nav-dropdown-links { flex: 0 0 260px; display: flex; flex-direction: column; padding: 8px 0; }
    .nav-dropdown-links a { display: flex; align-items: center; gap: 10px; padding: 12px 22px; font-family: var(--font-body); font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); border-bottom: 1px solid rgba(255,255,255,0.035); transition: color 0.25s var(--ease), background 0.25s var(--ease), padding-left 0.25s var(--ease); position: relative; }
    .nav-dropdown-links a:last-child { border-bottom: none; }
    .nav-dropdown-links a::before { content: ''; display: block; width: 0; height: 1px; background: var(--gold); flex-shrink: 0; transition: width 0.25s var(--ease); }
    .nav-dropdown-links a:hover, .nav-dropdown-links a.active-dd { color: var(--gold); background: rgba(201,168,76,0.055); padding-left: 28px; }
    .nav-dropdown-links a:hover::before, .nav-dropdown-links a.active-dd::before { width: 12px; }
    .nav-dropdown-links a::after { display: none; }
    .nav-dropdown-preview { flex: 1; position: relative; background: var(--navy2); overflow: hidden; min-height: 260px; }
    .nav-preview-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity 0.4s var(--ease), transform 0.5s var(--ease); transform: scale(1.04); }
    .nav-preview-img.active { opacity: 1; transform: scale(1); }
    .nav-preview-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 14px; background: linear-gradient(to top, rgba(7,16,32,0.85), transparent); font-family: var(--font-body); font-size: 9px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.3s var(--ease); }
    .has-dropdown:hover .nav-preview-caption { opacity: 1; }

    /* Overlay Menu */
    #overlay-menu { position: fixed; inset: 0; z-index: 190; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease); overflow-y: auto; overflow-x: hidden; padding: 88px 24px 48px; }
    #overlay-menu.open { opacity: 1; pointer-events: all; }
    .overlay-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 60px 60px; animation: gridDrift 20s linear infinite; }
    @keyframes gridDrift { 0% { transform: translate(0,0); } 100% { transform: translate(60px,60px); } }
    .overlay-inner { position: relative; z-index: 2; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0; }
    .overlay-nav { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 48px; }
    .overlay-nav li { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
    #overlay-menu.open .overlay-nav li:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
    #overlay-menu.open .overlay-nav li:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
    #overlay-menu.open .overlay-nav li:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
    #overlay-menu.open .overlay-nav li:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }
    #overlay-menu.open .overlay-nav li:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.42s; }
    .overlay-nav a { font-family: var(--font-display); font-size: clamp(40px,7vw,80px); font-weight: 300; color: rgba(255,255,255,0.9); letter-spacing: 0.04em; transition: color 0.3s var(--ease); display: block; line-height: 1.15; }
    .overlay-nav a:hover, .overlay-nav a.active { color: var(--gold); }
    .overlay-divider { width: 120px; height: 1px; background: var(--gold); margin-bottom: 36px; opacity: 0; transition: opacity 0.5s var(--ease) 0.5s; }
    #overlay-menu.open .overlay-divider { opacity: 0.6; }
    .overlay-socials { display: flex; align-items: center; gap: 24px; margin-bottom: 28px; opacity: 0; transition: opacity 0.5s var(--ease) 0.55s; }
    #overlay-menu.open .overlay-socials { opacity: 1; }
    .overlay-socials a { color: rgba(255,255,255,0.45); transition: color 0.3s var(--ease); }
    .overlay-socials a:hover { color: var(--gold); }
    .overlay-socials svg { width: 18px; height: 18px; fill: currentColor; }
    .overlay-tagline { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--gold); letter-spacing: 0.06em; opacity: 0; transition: opacity 0.5s var(--ease) 0.6s; }
    #overlay-menu.open .overlay-tagline { opacity: 1; }
    .overlay-has-sub { display: flex; flex-direction: column; align-items: center; }
    .overlay-item-row { display: flex; align-items: center; justify-content: center; gap: 14px; }
    .overlay-sub-toggle { background: none; border: 1px solid rgba(201,168,76,0.35); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--gold); flex-shrink: 0; transition: background var(--trans), border-color var(--trans); padding: 0; }
    .overlay-sub-toggle svg { display: block; transition: transform 0.38s var(--ease); }
    .overlay-sub-toggle.open { background: rgba(201,168,76,0.12); border-color: var(--gold); }
    .overlay-sub-toggle.open svg { transform: rotate(180deg); }
    .overlay-submenu { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 0; opacity: 0; width: 100%; }
    .overlay-submenu.open { max-height: 360px; opacity: 1; }
    .overlay-sublink { font-family: var(--font-body) !important; font-size: 12px !important; font-weight: 400 !important; letter-spacing: 0.2em !important; text-transform: uppercase; color: rgba(255,255,255,0.35) !important; padding: 9px 0; display: block; line-height: 1 !important; transition: color 0.28s var(--ease) !important; }
    .overlay-sublink:hover { color: var(--gold) !important; }

    /* ── Archive Hero ─────────────────────────────── */
    #archive-hero { position: relative; width: 100%; height: 100vh; min-height: 700px; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--navy); }
    .hero-sheet { position: absolute; inset: -6%; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); gap: 3px; opacity: 0.07; animation: sheetDrift 35s ease-in-out infinite alternate; z-index: 1; }
    @keyframes sheetDrift { from { transform: scale(1.06) translate(0,0); } to { transform: scale(1.06) translate(-24px,-12px); } }
    .hero-sheet-cell { overflow: hidden; }
    .hero-sheet-cell img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
    .hero-overlay { position: absolute; inset: 0; z-index: 2; background: radial-gradient(ellipse at center, rgba(10,22,40,0.6) 0%, rgba(10,22,40,0.93) 100%); }
    .hero-grid-overlay { position: absolute; inset: 0; z-index: 3; pointer-events: none; background-image: linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px); background-size: 80px 80px; }
    .hero-vline-left { position: absolute; left: 80px; top: 12%; bottom: 12%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25), transparent); z-index: 4; }
    .hero-vline-right { position: absolute; right: 80px; top: 12%; bottom: 12%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25), transparent); z-index: 4; }
    .hero-content { position: relative; z-index: 5; text-align: center; padding: 0 40px; max-width: 960px; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
    .hero-eyebrow { font-family: var(--font-body); font-size: 10px; font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.3s var(--ease) forwards; display: flex; align-items: center; justify-content: center; gap: 16px; }
    .hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.5; }
    .hero-h1 { font-family: var(--font-display); font-size: clamp(52px, 8vw, 112px); font-weight: 300; line-height: 1.0; color: var(--white); margin-bottom: 22px; opacity: 0; animation: fadeUp 0.9s 0.5s var(--ease) forwards; }
    .hero-h1 em { font-style: italic; color: var(--gold); }
    .hero-sub { font-family: var(--font-body); font-size: 12px; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 56px; opacity: 0; animation: fadeUp 0.9s 0.7s var(--ease) forwards; }
    .hero-stats { display: flex; align-items: center; justify-content: center; gap: 0; opacity: 0; animation: fadeUp 0.9s 0.9s var(--ease) forwards; }
    .hero-stat { padding: 0 48px; position: relative; }
    .hero-stat + .hero-stat::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 36px; width: 1px; background: rgba(201,168,76,0.22); }
    .hero-stat-num { font-family: var(--font-display); font-size: clamp(34px, 4vw, 56px); font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 6px; }
    .hero-stat-num em { color: var(--gold); font-style: normal; }
    .hero-stat-label { font-family: var(--font-body); font-size: 9px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
    .hero-scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 6; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0; animation: fadeUp 1s 1.2s var(--ease) forwards; background: none; border: none; cursor: pointer; padding: 0; }
    .hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
    @keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.9; } }
    .hero-scroll-text { font-family: var(--font-body); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
    @media (max-width: 768px) { .hero-vline-left, .hero-vline-right { display: none; } .hero-stat { padding: 0 28px; } }
    @media (max-width: 480px) { .hero-stats { flex-wrap: wrap; gap: 24px; } .hero-stat + .hero-stat::before { display: none; } }

    /* ── Filter Bar ───────────────────────────────── */
    #filter-bar { position: sticky; top: 72px; z-index: 150; background: rgba(10,22,40,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,76,0.12); }
    .filter-inner { max-width: 1280px; margin: 0 auto; padding: 0 80px; display: flex; align-items: center; overflow-x: auto; scrollbar-width: none; }
    .filter-inner::-webkit-scrollbar { display: none; }
    .filter-tab { position: relative; background: none; border: none; padding: 18px 28px; font-family: var(--font-body); font-size: 10px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); cursor: pointer; white-space: nowrap; transition: color 0.3s var(--ease); flex-shrink: 0; }
    .filter-tab::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
    .filter-tab:hover { color: rgba(255,255,255,0.65); }
    .filter-tab.active { color: var(--gold); }
    .filter-tab.active::after { transform: scaleX(1); }
    .tab-count { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: rgba(201,168,76,0.1); font-size: 9px; margin-left: 7px; color: var(--gold); }
    @media (max-width: 768px) { .filter-inner { padding: 0 16px; } .filter-tab { padding: 14px 18px; } }

    /* ── Project Reels ────────────────────────────── */
    #reels-section { background: var(--navy); padding-bottom: 60px; }
    .project-reel { position: relative; border-bottom: 1px solid rgba(201,168,76,0.06); padding: 72px 0 48px; overflow: hidden; }
    .project-reel.hidden { display: none; }
    .reel-header { max-width: 1280px; margin: 0 auto 32px; padding: 0 80px; display: flex; align-items: flex-end; justify-content: space-between; position: relative; }
    .reel-num-ghost { position: absolute; left: 60px; top: -28px; font-family: var(--font-display); font-size: clamp(80px, 11vw, 156px); font-weight: 300; color: rgba(255,255,255,0.022); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -0.02em; }
    .reel-meta { position: relative; z-index: 2; }
    .reel-cat-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 9px; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 10px; }
    .reel-cat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    [data-cat="residential"] .reel-cat-dot { background: var(--gold); }
    [data-cat="commercial"] .reel-cat-dot { background: var(--bluelt); }
    [data-cat="events"] .reel-cat-dot { background: rgba(255,255,255,0.5); }
    .reel-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 42px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
    .reel-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .reel-tag { font-family: var(--font-body); font-size: 9px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.28); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; }
    .reel-image-count { font-family: var(--font-display); font-style: italic; font-size: 13px; color: rgba(201,168,76,0.38); flex-shrink: 0; position: relative; z-index: 2; }

    /* Film Strip */
    .reel-strip-wrapper { position: relative; }
    .reel-strip-perf { position: absolute; left: 0; right: 0; height: 11px; z-index: 5; pointer-events: none; background: repeating-linear-gradient(90deg, transparent 0px, transparent 12px, rgba(201,168,76,0.05) 12px, rgba(201,168,76,0.05) 20px); }
    .reel-strip-perf.top { top: 0; }
    .reel-strip-perf.bottom { bottom: 0; }
    .reel-strip { display: flex; gap: 4px; overflow-x: auto; scroll-snap-type: x mandatory; cursor: grab; scrollbar-width: none; padding: 11px 80px; user-select: none; -webkit-overflow-scrolling: touch; }
    .reel-strip::-webkit-scrollbar { display: none; }
    .reel-strip.dragging { cursor: grabbing; scroll-snap-type: none; }
    .reel-img-cell { flex-shrink: 0; width: 300px; height: 340px; overflow: hidden; scroll-snap-align: start; position: relative; background: rgba(255,255,255,0.02); }
    .reel-img-cell.featured { width: 460px; }
    .reel-img-cell img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) saturate(0.88); transition: filter 0.5s var(--ease), transform 0.65s var(--ease); display: block; }
    .reel-img-cell:hover img { filter: brightness(1) saturate(1); transform: scale(1.04); }
    .reel-frame-num { position: absolute; bottom: 7px; left: 9px; font-family: 'Courier New', monospace; font-size: 9px; color: rgba(201,168,76,0.32); pointer-events: none; letter-spacing: 0.06em; z-index: 3; }
    .reel-divider-cell { flex-shrink: 0; width: 2px; height: 340px; background: linear-gradient(to bottom, transparent 10%, rgba(201,168,76,0.35) 50%, transparent 90%); scroll-snap-align: start; margin: 0 18px; position: relative; }
    .reel-divider-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-90deg); font-family: var(--font-body); font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); white-space: nowrap; opacity: 0.7; }
    .reel-footer { max-width: 1280px; margin: 14px auto 0; padding: 0 80px; }
    .reel-progress { height: 1px; background: rgba(201,168,76,0.07); position: relative; border-radius: 1px; }
    .reel-progress-fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--gold); width: 0%; transition: width 0.08s linear; border-radius: 1px; }
    .reel-drag-hint { display: flex; align-items: center; justify-content: flex-end; gap: 8px; margin-top: 9px; font-family: var(--font-body); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.13); }
    /* ── Lightbox ─────────────────────────────── */
    #lightbox { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.38s var(--ease); }
    #lightbox.open { opacity: 1; pointer-events: all; }
    #lb-backdrop { position: absolute; inset: 0; background: rgba(5,10,20,0.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); cursor: pointer; }
    #lb-stage { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; max-width: calc(100vw - 160px); max-height: calc(100vh - 120px); }
    #lb-img { max-width: 100%; max-height: calc(100vh - 120px); width: auto; height: auto; display: block; object-fit: contain; transform: scale(0.92); opacity: 0; transition: transform 0.42s var(--ease), opacity 0.38s var(--ease); box-shadow: 0 40px 120px rgba(0,0,0,0.7); }
    #lightbox.open #lb-img { transform: scale(1); opacity: 1; }
    #lb-img.switching { transform: scale(0.96); opacity: 0; transition: transform 0.2s var(--ease), opacity 0.18s var(--ease); }
    #lb-close { position: fixed; top: 28px; right: 32px; z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease); }
    #lb-close:hover { background: rgba(201,168,76,0.22); border-color: var(--gold); color: var(--white); }
    .lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); z-index: 10; width: 52px; height: 52px; border-radius: 50%; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2); color: rgba(255,255,255,0.6); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease), transform 0.28s var(--ease); }
    .lb-arrow:hover { background: rgba(201,168,76,0.18); border-color: var(--gold); color: var(--white); }
    .lb-arrow:active { transform: translateY(-50%) scale(0.93); }
    .lb-arrow.hidden { opacity: 0; pointer-events: none; }
    #lb-prev { left: 24px; }
    #lb-next { right: 24px; }
    #lb-prev svg, #lb-next svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    #lb-footer { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px; }
    #lb-counter { font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
    #lb-dots { display: flex; align-items: center; gap: 6px; }
    .lb-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: background 0.25s var(--ease), transform 0.25s var(--ease); flex-shrink: 0; }
    .lb-dot.active { background: var(--gold); transform: scale(1.4); }
    #lb-project-name { font-family: var(--font-display); font-style: italic; font-size: 15px; color: rgba(201,168,76,0.55); letter-spacing: 0.06em; }
    @media (max-width: 768px) { #lb-stage { max-width: calc(100vw - 80px); } .lb-arrow { width: 40px; height: 40px; } #lb-prev { left: 12px; } #lb-next { right: 12px; } }
    .reel-img-cell { cursor: pointer; }

    @media (max-width: 768px) { .reel-header { padding: 0 24px; } .reel-num-ghost { left: 16px; } .reel-strip { padding: 11px 24px; } .reel-footer { padding: 0 24px; } .reel-img-cell { width: 220px; height: 260px; } .reel-img-cell.featured { width: 280px; } }
    @media (max-width: 480px) { .reel-img-cell { width: 180px; height: 210px; } .reel-img-cell.featured { width: 230px; } }

    /* ── CTA ──────────────────────────────────────── */
    #projects-cta { background: var(--navy2); padding: 120px 80px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(201,168,76,0.08); }
    .cta-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: clamp(80px, 14vw, 200px); font-weight: 300; color: rgba(255,255,255,0.02); letter-spacing: 0.12em; pointer-events: none; user-select: none; white-space: nowrap; }
    .cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
    .cta-label { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 11px; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
    .cta-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
    .cta-h2 { font-family: var(--font-display); font-size: clamp(34px, 4vw, 58px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 18px; }
    .cta-h2 em { font-style: italic; color: var(--gold); }
    .cta-body { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 44px; }
    .cta-actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
    @media (max-width: 600px) { #projects-cta { padding: 80px 24px; } }


  
    /* ── Focus-visible accessibility ─────────────────────────────── */
    :focus { outline: none; }
    :focus-visible {
      outline: 2px solid #C9A84C;
      outline-offset: 3px;
      border-radius: 2px;
    }
    .btn:focus-visible,
    .nav-cta:focus-visible {
      outline: 2px solid #C9A84C;
      outline-offset: 4px;
      box-shadow: 0 0 0 4px rgba(201,168,76,.18);
    }
    a:focus-visible { outline: 2px solid #C9A84C; outline-offset: 2px; }

  #ahl-loader{position:fixed;inset:0;z-index:9999;overflow:hidden;pointer-events:all;animation:_lf 0.01s 3s forwards;}@keyframes _lf{to{opacity:0;pointer-events:none;visibility:hidden;}}
  #ahl-half-t,#ahl-half-b{position:absolute;left:0;width:100%;height:50%;background:#0A1628;will-change:transform;}
  #ahl-half-t{top:0;}#ahl-half-b{bottom:0;}
  #ahl-blade{position:absolute;left:0;right:0;top:0;height:2px;z-index:10;will-change:transform;}
  .ahl-blade-line{width:100%;height:100%;background:linear-gradient(90deg,transparent 0%,rgba(201,168,76,.15) 2%,rgba(201,168,76,.65) 12%,#E8C97A 38%,#FFFDE7 50%,#E8C97A 62%,rgba(201,168,76,.65) 88%,rgba(201,168,76,.15) 98%,transparent 100%);box-shadow:0 0 4px 1px rgba(201,168,76,.95),0 0 14px 3px rgba(201,168,76,.55),0 0 36px 7px rgba(201,168,76,.2);}
  .ahl-blade-glow{position:absolute;left:0;right:0;top:0;height:30px;background:linear-gradient(180deg,rgba(201,168,76,.08) 0%,transparent 100%);transform:translateY(-28px);}
  #ahl-logo{position:absolute;inset:0;z-index:50;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:0 20px;}
  .ahl-logo-name{display:block;font-family:'Cormorant Garamond',Georgia,serif;font-size:clamp(22px,5.5vw,68px);font-weight:300;letter-spacing:.42em;padding-left:.42em;color:#C9A84C;text-transform:uppercase;text-shadow:0 0 40px rgba(201,168,76,.35);line-height:1.2;}
  .ahl-logo-div{display:block;width:50px;height:1px;background:linear-gradient(90deg,transparent,rgba(201,168,76,.45),transparent);margin:14px auto;}
  .ahl-logo-sub{display:block;font-family:'Jost',Arial,sans-serif;font-size:clamp(7px,1vw,10px);font-weight:300;letter-spacing:.55em;padding-left:.55em;color:rgba(201,168,76,.4);text-transform:uppercase;}
  .ahl-spark{position:fixed;border-radius:50%;pointer-events:none;z-index:10001;}
