
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black: #0a0a0a;
      --white: #ffffff;
      --gold: #c9a96e;
      --gold-light: #e8d5b0;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── CURSOR ── */
    .cursor {
      width: 8px; height: 8px; background: var(--white); border-radius: 50%;
      position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
      transition: transform 0.1s ease;
    }
    .cursor-ring {
      width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%;
      position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
      transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
    }
    .cursor-ring.hovered { width: 60px; height: 60px; opacity: 0.5; }
    .cursor-ring.drag { width: 80px; height: 80px; opacity: 0.3; border-style: dashed; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 28px 60px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.4s, padding 0.4s;
    }
    nav.scrolled {
      background: rgba(10,10,10,0.9); backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px); padding: 18px 60px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-logo {
      font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800;
      letter-spacing: 0.04em; color: var(--white); text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 44px; list-style: none; }
    .nav-links a {
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
      text-decoration: none; position: relative; transition: color 0.3s;
    }
    .nav-links a.active { color: var(--white); }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px; background: var(--gold); transition: width 0.35s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--black); background: var(--white);
      padding: 12px 28px; text-decoration: none; transition: background 0.3s, color 0.3s;
    }
    .nav-cta:hover { background: var(--gold); color: var(--white); }

    /* ── PAGE HERO ── */
    .page-hero {
      padding: 180px 60px 80px;
      position: relative; overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .page-hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 70% at 20% 100%, rgba(201,169,110,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 80% 80%, rgba(255,255,255,0.02) 0%, transparent 60%);
    }
    .page-hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse at 20% 100%, black 20%, transparent 70%);
    }
    .page-hero-inner {
      position: relative; z-index: 2;
      display: flex; align-items: flex-end; justify-content: space-between; gap: 60px;
    }
    .page-eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.82rem; font-weight: 600; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 24px;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.7s ease 0.2s forwards;
    }
    .page-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
    .page-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 800; line-height: 1.05; letter-spacing: -0.01em;
      opacity: 0; transform: translateY(24px);
      animation: fadeUp 0.8s ease 0.35s forwards;
    }
    .page-sub {
      font-size: 1.05rem; font-weight: 400; line-height: 1.8;
      color: rgba(255,255,255,0.4); max-width: 440px; margin-top: 20px;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.8s ease 0.5s forwards;
    }
    .hero-counts {
      display: flex; gap: 48px; flex-shrink: 0;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp 0.8s ease 0.65s forwards;
    }
    .hero-count-item { text-align: right; }
    .hero-count-val {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem; font-weight: 800; line-height: 1; color: var(--white);
    }
    .hero-count-val span { color: var(--gold); }
    .hero-count-lbl {
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 6px;
    }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

    /* ── FILTER BAR ── */
    .filter-bar {
      padding: 0 60px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.012);
      position: sticky; top: 73px; z-index: 100;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }
    .filter-tabs { display: flex; }
    .filter-tab {
      font-size: 0.78rem; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.38); background: none; border: none;
      padding: 22px 28px; cursor: pointer; position: relative;
      transition: color 0.3s;
    }
    .filter-tab::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transition: transform 0.3s;
    }
    .filter-tab:hover { color: rgba(255,255,255,0.7); }
    .filter-tab.active { color: var(--white); }
    .filter-tab.active::after { transform: scaleX(1); }
    .filter-tab .tab-count {
      display: inline-flex; align-items: center; justify-content: center;
      width: 20px; height: 20px; border-radius: 50%;
      background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.4);
      font-size: 0.6rem; font-weight: 700; margin-left: 8px;
      transition: background 0.3s, color 0.3s;
    }
    .filter-tab.active .tab-count { background: rgba(201,169,110,0.2); color: var(--gold); }
    .filter-right { display: flex; align-items: center; gap: 16px; }
    .layout-btn {
      width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
      background: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.3); transition: border-color 0.25s, color 0.25s;
    }
    .layout-btn.active { border-color: var(--gold); color: var(--gold); }
    .layout-btn:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }

    /* ── GALLERY WRAPPER ── */
    .gallery-wrapper { padding: 60px; }

    /* ── MASONRY GRID ── */
    .masonry-grid {
      columns: 3;
      column-gap: 12px;
    }
    .masonry-item {
      break-inside: avoid;
      margin-bottom: 12px;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .masonry-item.hidden { display: none; }
    .masonry-item img {
      width: 100%; display: block;
      filter: grayscale(15%) brightness(0.78);
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
    }
    .masonry-item:hover img {
      transform: scale(1.05);
      filter: grayscale(0%) brightness(0.92);
    }
    .masonry-item-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
      opacity: 0; transition: opacity 0.35s;
    }
    .masonry-item:hover .masonry-item-overlay { opacity: 1; }
    .masonry-item-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 20px 22px;
      transform: translateY(8px); opacity: 0;
      transition: transform 0.35s, opacity 0.35s;
    }
    .masonry-item:hover .masonry-item-info { transform: translateY(0); opacity: 1; }
    .item-cat {
      display: inline-block; font-size: 0.62rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--black); background: var(--gold);
      padding: 4px 10px; margin-bottom: 8px;
    }
    .item-title {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700; line-height: 1.3; color: var(--white);
    }
    .item-zoom-icon {
      position: absolute; top: 16px; right: 16px;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: center;
      color: var(--white); opacity: 0; transform: scale(0.8);
      transition: opacity 0.3s, transform 0.3s;
    }
    .masonry-item:hover .item-zoom-icon { opacity: 1; transform: scale(1); }

    /* ── VIDEO ITEMS ── */
    .masonry-item.video-item .play-ring {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 56px; height: 56px; border-radius: 50%;
      background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, transform 0.3s, border-color 0.3s;
    }
    .masonry-item.video-item:hover .play-ring {
      background: var(--gold); border-color: var(--gold);
      transform: translate(-50%, -50%) scale(1.1);
    }
    .play-ring svg { margin-left: 4px; }
    .video-dur {
      position: absolute; bottom: 12px; right: 12px;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
      color: rgba(255,255,255,0.8); background: rgba(0,0,0,0.55);
      padding: 4px 10px;
    }

    /* ── STANDARD GRID (3-col) ── */
    .standard-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .standard-grid .grid-item {
      position: relative; overflow: hidden; cursor: pointer;
      aspect-ratio: 4/3;
    }
    .standard-grid .grid-item.video-item { aspect-ratio: 16/9; }
    .standard-grid .grid-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      filter: grayscale(15%) brightness(0.78);
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
    }
    .standard-grid .grid-item:hover img {
      transform: scale(1.05); filter: grayscale(0%) brightness(0.92);
    }
    .standard-grid .grid-item .masonry-item-overlay,
    .standard-grid .grid-item .masonry-item-info,
    .standard-grid .grid-item .item-zoom-icon { /* reuse same classes */ }
    .standard-grid { display: none; }
    .standard-grid.active { display: grid; }
    .masonry-grid.active { columns: 3; }

    /* ── FEATURED VIDEO STRIP ── */
    .featured-video-strip {
      margin: 0 0 12px 0;
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 12px;
    }
    .featured-video-strip.hidden { display: none; }
    .fv-main {
      position: relative; overflow: hidden; cursor: pointer;
      aspect-ratio: 16/9;
    }
    .fv-main img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      filter: grayscale(15%) brightness(0.72);
      transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s;
    }
    .fv-main:hover img { transform: scale(1.04); filter: grayscale(0%) brightness(0.82); }
    .fv-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 55%, transparent 100%);
    }
    .fv-play {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 80px; height: 80px; border-radius: 50%;
      background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.3);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s, transform 0.3s, border-color 0.3s;
    }
    .fv-main:hover .fv-play {
      background: var(--gold); border-color: var(--gold);
      transform: translate(-50%, -50%) scale(1.08);
    }
    .fv-play svg { margin-left: 5px; }
    .fv-info {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 32px;
    }
    .fv-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--black); background: var(--gold);
      padding: 5px 12px; margin-bottom: 12px;
    }
    .fv-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; font-weight: 800; line-height: 1.2; color: var(--white);
      margin-bottom: 8px;
    }
    .fv-meta { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.45); }
    .fv-dur {
      position: absolute; top: 16px; right: 16px;
      font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.75);
      background: rgba(0,0,0,0.55); padding: 4px 10px;
    }
    .fv-side { display: flex; flex-direction: column; gap: 12px; }
    .fv-side-item {
      flex: 1; position: relative; overflow: hidden; cursor: pointer;
    }
    .fv-side-item img {
      width: 100%; height: 100%; object-fit: cover; display: block;
      filter: grayscale(15%) brightness(0.72);
      transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s;
    }
    .fv-side-item:hover img { transform: scale(1.05); filter: grayscale(0%) brightness(0.82); }
    .fv-side-item .fv-overlay { background: linear-gradient(to top, rgba(10,10,10,0.88) 0%, transparent 65%); }
    .fv-side-item .fv-play {
      width: 52px; height: 52px;
      transform: translate(-50%, -50%);
    }
    .fv-side-item:hover .fv-play {
      background: var(--gold); border-color: var(--gold);
      transform: translate(-50%, -50%) scale(1.08);
    }
    .fv-side-item .fv-info { padding: 16px 20px; }
    .fv-side-item .fv-title { font-size: 0.95rem; }
    .fv-side-item .fv-dur { top: 10px; right: 10px; }

    /* ── LIGHTBOX ── */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 10000;
      background: rgba(0,0,0,0.96);
      align-items: center; justify-content: center;
    }
    .lightbox.open { display: flex; }
    .lb-inner {
      position: relative;
      width: min(1100px, 94vw);
      display: flex; flex-direction: column; align-items: center;
    }
    .lb-img-wrap {
      width: 100%; max-height: 78vh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .lb-img-wrap img {
      max-width: 100%; max-height: 78vh;
      object-fit: contain; display: block;
      transition: opacity 0.3s;
    }
    .lb-caption {
      width: 100%; padding: 20px 0 0;
      display: flex; align-items: center; justify-content: space-between;
    }
    .lb-caption-text {
      font-family: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.8);
    }
    .lb-caption-count {
      font-size: 0.75rem; font-weight: 500;
      color: rgba(255,255,255,0.3); letter-spacing: 0.1em;
    }
    .lb-close {
      position: absolute; top: -52px; right: 0;
      background: none; border: none; color: rgba(255,255,255,0.5);
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; cursor: pointer;
      display: flex; align-items: center; gap: 10px; transition: color 0.3s;
    }
    .lb-close:hover { color: var(--white); }
    .lb-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 50px; height: 50px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(10,10,10,0.7); backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5); cursor: pointer;
      transition: border-color 0.3s, color 0.3s;
    }
    .lb-nav:hover { border-color: var(--gold); color: var(--gold); }
    .lb-prev { left: -70px; }
    .lb-next { right: -70px; }

    /* ── VIDEO MODAL ── */
    .video-modal {
      display: none; position: fixed; inset: 0; z-index: 10001;
      background: rgba(0,0,0,0.95);
      align-items: center; justify-content: center;
    }
    .video-modal.open { display: flex; }
    .vm-inner { position: relative; width: min(900px, 94vw); }
    .vm-inner iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
    .vm-placeholder {
      width: 100%; aspect-ratio: 16/9;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 16px;
    }
    .vm-placeholder svg { color: rgba(201,169,110,0.3); }
    .vm-placeholder p { font-size: 0.82rem; color: rgba(255,255,255,0.25); }
    .vm-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; font-weight: 700;
      color: rgba(255,255,255,0.7); margin-top: 20px;
    }
    .vm-close {
      position: absolute; top: -50px; right: 0;
      background: none; border: none; color: rgba(255,255,255,0.5);
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; cursor: pointer;
      display: flex; align-items: center; gap: 10px; transition: color 0.3s;
    }
    .vm-close:hover { color: var(--white); }

    /* ── LOAD MORE ── */
    .load-more-wrap {
      text-align: center; padding: 56px 0 0;
    }
    .btn-load-more {
      display: inline-flex; align-items: center; gap: 14px;
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      border: 1px solid rgba(255,255,255,0.12); background: none;
      padding: 18px 44px; cursor: pointer;
      transition: border-color 0.3s, color 0.3s, background 0.3s;
    }
    .btn-load-more:hover {
      border-color: var(--gold); color: var(--gold);
      background: rgba(201,169,110,0.04);
    }
    .load-progress {
      margin: 24px auto 0;
      display: flex; align-items: center; justify-content: center; gap: 16px;
      font-size: 0.72rem; font-weight: 500;
      color: rgba(255,255,255,0.25); letter-spacing: 0.08em;
    }
    .load-bar {
      width: 160px; height: 1px;
      background: rgba(255,255,255,0.08); position: relative;
    }
    .load-bar-fill {
      position: absolute; top: 0; left: 0; bottom: 0;
      background: var(--gold); width: 45%;
    }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── FOOTER ── */
    footer { padding: 70px 60px 40px; border-top: 1px solid rgba(255,255,255,0.06); }
    .footer-top {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 60px; margin-bottom: 60px;
    }
    .footer-brand .nav-logo { display: block; margin-bottom: 20px; }
    .footer-tagline {
      font-size: 0.92rem; font-weight: 400; line-height: 1.8;
      color: rgba(255,255,255,0.35); max-width: 240px;
    }
    .footer-col-title {
      font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em;
      text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 24px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-size: 0.92rem; font-weight: 400;
      color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s;
    }
    .footer-links a:hover { color: rgba(255,255,255,0.8); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.25); letter-spacing: 0.04em; }
    .footer-socials { display: flex; gap: 20px; }
    .footer-socials a {
      width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.4); text-decoration: none;
      font-size: 0.7rem; transition: border-color 0.3s, color 0.3s;
    }
    .footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .masonry-grid { columns: 2; }
      .standard-grid { grid-template-columns: 1fr 1fr; }
      .featured-video-strip { grid-template-columns: 1fr; }
      .fv-side { flex-direction: row; }
    }
    @media (max-width: 768px) {
      nav { padding: 22px 30px; }
      nav.scrolled { padding: 16px 30px; }
      .nav-links, .nav-cta { display: none; }
      .page-hero { padding: 140px 30px 60px; }
      .page-hero-inner { flex-direction: column; }
      .hero-counts { flex-direction: row; justify-content: flex-start; }
      .filter-bar { padding: 0 30px; top: 60px; }
      .gallery-wrapper { padding: 30px; }
      .masonry-grid { columns: 1; }
      .standard-grid { grid-template-columns: 1fr; }
      .lb-prev { left: -10px; }
      .lb-next { right: -10px; }
      .fv-side { flex-direction: column; }
      footer { padding: 60px 30px 36px; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
    }
  