*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --gold:       #B8974A;
      --gold-light: #F9F4EA;
      --gold-dark:  #8A6E32;
      --navy:       #1A2340;
      --navy-mid:   #243055;
      --surface:    #F8F9FB;
      --white:      #FFFFFF;
      --text:       #0F172A;
      --muted:      #64748B;
      --border:     #E2E8F0;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }

    /* NAV */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
    .nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--text); }
    .nav-links a.active { color: var(--navy); font-weight: 600; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
    .nav-cta { background: var(--gold) !important; color: var(--white) !important; padding: 9px 20px !important; border-radius: 8px !important; font-weight: 600 !important; transition: background 0.2s !important; border-bottom: none !important; }
    .nav-cta:hover { background: var(--gold-dark) !important; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

    /* PAGE HERO */
    .page-hero { background: var(--navy); padding: 140px 32px 80px; position: relative; overflow: hidden; }
    .page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(184,151,74,0.12) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 0% 100%, rgba(184,151,74,0.08) 0%, transparent 50%); pointer-events: none; }
    .page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
    .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
    .breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
    .breadcrumb a:hover { color: rgba(255,255,255,0.7); }
    .breadcrumb-sep { opacity: 0.3; }
    .page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; color: var(--white); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 20px; }
    .page-hero h1 span { color: var(--gold); }
    .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.8; }

    /* FILTER BAR */
    .filter-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 32px; overflow-x: auto; }
    .filter-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 4px; padding: 12px 0; }
    .filter-btn {
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--muted);
      background: transparent;
      border: 1px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      transition: all 0.2s;
      font-family: inherit;
    }
    .filter-btn:hover { color: var(--navy); background: var(--surface); }
    .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

    /* GALLERY GRID */
    .gallery-section { padding: 60px 32px 80px; background: var(--surface); }
    .gallery-inner { max-width: 1200px; margin: 0 auto; }

    .gallery-grid {
      columns: 2;
      column-gap: 16px;
    }

    .gallery-item {
      break-inside: avoid;
      margin-bottom: 16px;
      border-radius: 14px;
      overflow: hidden;
      cursor: pointer;
      position: relative;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      display: block;
    }

    /* Real photo tiles — let the image define the height */
    .gallery-item.gi-photo {
      background: none;
    }

    .gallery-item.gi-photo img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Placeholder tiles — fixed height with icon */
    .gallery-item-inner {
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      padding: 40px 20px;
    }

    .gallery-item.h-sm .gallery-item-inner { padding: 32px 20px; }
    .gallery-item.h-md .gallery-item-inner { padding: 56px 20px; }
    .gallery-item.h-lg .gallery-item-inner { padding: 80px 20px; }

    .gallery-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 30% 30%, rgba(184,151,74,0.2) 0%, transparent 65%);
      pointer-events: none;
    }
    .gallery-item.gi-photo::before { display: none; }

    .gallery-item-icon { opacity: 0.2; }

    .gallery-item-label {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.35);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10,15,38,0.55);
      opacity: 0;
      transition: opacity 0.25s;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay svg { color: var(--white); }

    .gallery-item:nth-child(7) { background: linear-gradient(135deg, #1e3a2f 0%, #243055 100%); }
    .gallery-item:nth-child(8) { background: linear-gradient(135deg, #2a1a10 0%, #1A2340 100%); }
    .gallery-item:nth-child(9) { background: linear-gradient(135deg, #0d2010 0%, #1A2340 100%); }

    /* LIGHTBOX */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(5,10,25,0.95);
      z-index: 999;
      align-items: center;
      justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lightbox-content { position: relative; max-width: 900px; width: 90%; }
    .lightbox-img-box {
      width: 100%;
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .lightbox-img-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 40% 40%, rgba(184,151,74,0.2) 0%, transparent 65%); }
    .lightbox-img-placeholder { position: relative; text-align: center; }
    .lightbox-img-placeholder svg { opacity: 0.15; }
    .lightbox-close {
      position: absolute;
      top: -44px;
      right: 0;
      background: rgba(255,255,255,0.1);
      border: none;
      color: var(--white);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }
    .lightbox-close:hover { background: rgba(255,255,255,0.2); }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      border: none;
      color: var(--white);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s;
    }
    .lightbox-nav:hover { background: rgba(255,255,255,0.2); }
    .lightbox-prev { left: -56px; }
    .lightbox-next { right: -56px; }
    .lightbox-caption { margin-top: 16px; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

    /* EMPTY STATE NOTE */
    .gallery-note { text-align: center; padding: 16px 0 0; font-size: 0.82rem; color: var(--muted); font-style: italic; }

    /* FOOTER */
    footer { background: var(--navy); padding: 60px 32px 32px; color: rgba(255,255,255,0.5); }
    .footer-inner { max-width: 1200px; margin: 0 auto; }
    .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .footer-brand p { margin-top: 14px; font-size: 0.875rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.45); }
    .footer-col h4 { font-size: 0.75rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
    .footer-bottom-right { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.3); }

    /* ANIMATIONS */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
    .reveal.in-view { opacity: 1; transform: none; }

    @media (max-width: 1024px) { .gallery-grid { columns: 2; } .lightbox-prev { left: -44px; } .lightbox-next { right: -44px; } }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
      .page-hero { padding: 120px 20px 60px; }
      .gallery-section { padding: 40px 20px 60px; }
      .gallery-grid { columns: 2; column-gap: 10px; }
      .gallery-item-inner { padding: 32px 12px; }
      .filter-bar { padding: 0 20px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .lightbox-prev, .lightbox-next { display: none; }
    }
    @media (max-width: 480px) { .gallery-grid { columns: 1; } }
