
    :root {
      --black:     #1A1A1A;
      --gold:      #B08A4E;
      --gold-lt:   #C9A86C;
      --cream:     #E7E0D4;
      --cream-lt:  #EDE8DF;
      --off-white: #F7F5F2;
      --gray:      #6B6B6B;
      --gray-lt:   #9A9A9A;
      --white:     #FFFFFF;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Montserrat', sans-serif; background: var(--off-white); color: var(--black); overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    ::selection { background: var(--gold); color: var(--white); }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 2.5rem; }

    /* ─── CURSOR ─── */
    .cursor { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width 0.25s, height 0.25s, opacity 0.3s; }

    /* ─── NAVBAR ─── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: 88px; padding: 0 2.5rem; overflow: hidden;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(247,245,242,0.96); backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(176,138,78,0.15);
    }
    .nav-logo { display: flex; align-items: center; overflow: hidden; }
    .nav-logo-img { height: 64px !important; width: auto !important; max-width: 220px !important; max-height: 64px !important; object-fit: contain; display: block; }
    .nav-logo .wordmark { font-size: 1.25rem; font-weight: 700; }
    .nav-logo .wordmark span { color: var(--gold); }
    .nav-logo .sub { font-family: 'Montserrat', sans-serif; font-size: 0.48rem; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
    .nav-links a { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); position: relative; padding-bottom: 2px; transition: color 0.25s; }
    .nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
    .nav-links a:hover, .nav-links a.active { color: var(--gold); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-book { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.6rem 1.4rem; background: var(--gold); color: var(--white); border: 1.5px solid var(--gold); transition: all 0.3s; }
    .nav-book:hover { background: transparent; color: var(--gold); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 22px; height: 1.5px; background: var(--black); display: block; }

    /* ─── MOBILE NAV ─── */
    .mobile-nav { position: fixed; inset: 0; z-index: 950; background: var(--off-white); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.77,0,0.175,1); }
    .mobile-nav.open { transform: translateX(0); }
    .mobile-nav a { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--black); padding: 0.6rem 2rem; display: block; transition: color 0.25s; border-bottom: 1px solid var(--cream); width: 100%; text-align: center; }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav .close-x { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.8rem; cursor: pointer; font-family: 'Montserrat', sans-serif; font-weight: 300; }

    /* ─── PAGE HERO ─── */
    .page-hero {
      padding-top: 76px; min-height: 50vh;
      background: linear-gradient(135deg, var(--black) 0%, #1e170a 60%, #2a1e0e 100%);
      display: flex; align-items: center; position: relative; overflow: hidden;
    }
    .ph-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(176,138,78,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(176,138,78,0.04) 1px, transparent 1px); background-size: 70px 70px; }
    .ph-glow { position: absolute; top: 50%; left: 60%; transform: translate(-50%,-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, rgba(176,138,78,0.12) 0%, transparent 70%); pointer-events: none; }
    .ph-inner { position: relative; z-index: 2; padding: 5rem 0 4rem; }
    .ph-crumb { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(176,138,78,0.6); margin-bottom: 2rem; }
    .ph-crumb a { color: rgba(176,138,78,0.6); transition: color 0.3s; }
    .ph-crumb a:hover { color: var(--gold); }
    .ph-crumb span { color: rgba(247,245,242,0.35); margin: 0 0.6rem; }
    .ph-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 1.2rem; }
    .ph-title em { font-style: normal; color: var(--gold); }
    .ph-sub { font-size: 0.82rem; color: rgba(247,245,242,0.45); letter-spacing: 0.1em; max-width: 500px; line-height: 1.8; }
    .ph-monogram { position: absolute; right: 2rem; bottom: -1rem; font-family: 'Playfair Display', serif; font-size: 18rem; font-weight: 700; color: rgba(176,138,78,0.05); line-height: 1; pointer-events: none; user-select: none; }

    /* ─── GALLERY MAIN ─── */
    .gallery-main { padding: 5rem 0 8rem; }

    /* Filter bar */
    .filter-bar {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
    }
    .filter-tabs { display: flex; gap: 0; flex-wrap: wrap; }
    .ftab {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; padding: 0.7rem 1.4rem; cursor: pointer;
      color: var(--gray); border: 1px solid var(--cream);
      border-right: none; background: transparent; transition: all 0.3s;
    }
    .ftab:last-child { border-right: 1px solid var(--cream); }
    .ftab:hover { color: var(--gold); border-color: rgba(176,138,78,0.4); }
    .ftab.active { background: var(--gold); color: var(--white); border-color: var(--gold); }
    .filter-count { font-size: 0.72rem; color: var(--gray-lt); font-weight: 500; }
    .filter-count strong { color: var(--gold); font-weight: 700; }

    /* Gallery grid — masonry-style using CSS columns */
    .gallery-grid {
      columns: 4; column-gap: 12px;
    }
    .g-item {
      break-inside: avoid; margin-bottom: 12px;
      position: relative; overflow: hidden; cursor: pointer;
      display: block;
    }
    .g-item[data-cat="wedding"]    {}
    .g-item[data-cat="portrait"]   {}
    .g-item[data-cat="event"]      {}
    .g-item[data-cat="corporate"]  {}
    .g-item[data-cat="aerial"]     {}
    .g-item[data-cat="cinematic"]  {}

    .g-item.hidden { display: none; }

    .g-thumb {
      width: 100%; display: block;
      transition: transform 0.55s ease;
    }
    .g-item:hover .g-thumb { transform: scale(1.05); }

    /* Placeholder thumbnails (replace with real <img> tags) */
    .g-ph {
      width: 100%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-style: italic;
      font-size: 0.95rem; color: rgba(255,255,255,0.3);
      transition: transform 0.55s ease;
    }
    .g-item:hover .g-ph { transform: scale(1.05); }

    /* Overlay */
    .g-overlay {
      position: absolute; inset: 0; background: rgba(26,26,26,0);
      display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
      padding: 1.5rem; transition: background 0.35s;
    }
    .g-item:hover .g-overlay { background: rgba(26,26,26,0.55); }
    .g-overlay-content { transform: translateY(10px); opacity: 0; transition: all 0.35s; }
    .g-item:hover .g-overlay-content { transform: translateY(0); opacity: 1; }
    .g-cat-badge {
      font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
    }
    .g-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); line-height: 1.3; }
    .g-expand {
      position: absolute; top: 1rem; right: 1rem;
      width: 38px; height: 38px; border: 1px solid rgba(176,138,78,0.8);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: scale(0.8); transition: all 0.3s;
    }
    .g-item:hover .g-expand { opacity: 1; transform: scale(1); }
    .g-expand svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

    /* Heights */
    .h-tall .g-ph { height: 420px; }
    .h-med  .g-ph { height: 290px; }
    .h-sht  .g-ph { height: 220px; }
    .h-xtall .g-ph { height: 520px; }

    /* Colors */
    .gc-a  { background: linear-gradient(150deg,#1e170e,#2a1e0c); }
    .gc-b  { background: linear-gradient(150deg,#141414,#202020); }
    .gc-c  { background: linear-gradient(150deg,#1a1006,#261808); }
    .gc-d  { background: linear-gradient(150deg,#181818,#242424); }
    .gc-e  { background: linear-gradient(150deg,#1f1508,#2e200c); }
    .gc-f  { background: linear-gradient(150deg,#131313,#1c1c1c); }
    .gc-g  { background: linear-gradient(150deg,#1a1208,#261a0a); }
    .gc-h  { background: linear-gradient(150deg,#1c1008,#2a180a); }
    .gc-i  { background: linear-gradient(150deg,#221a0c,#30240e); }
    .gc-j  { background: linear-gradient(150deg,#151515,#222222); }
    .gc-k  { background: linear-gradient(150deg,#1e140a,#2c1e0c); }
    .gc-l  { background: linear-gradient(150deg,#101010,#1a1a1a); }

    /* ─── LIGHTBOX ─── */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 9000;
      background: rgba(10,8,5,0.96); align-items: center; justify-content: center;
      padding: 2rem;
    }
    .lightbox.open { display: flex; }
    .lb-inner { position: relative; max-width: 900px; width: 100%; }
    .lb-close {
      position: fixed; top: 1.5rem; right: 2rem; z-index: 9010;
      font-size: 1.6rem; color: rgba(247,245,242,0.6); cursor: pointer;
      font-family: 'Montserrat', sans-serif; font-weight: 300; transition: color 0.3s;
      background: none; border: none;
    }
    .lb-close:hover { color: var(--gold); }
    .lb-nav {
      position: fixed; top: 50%; transform: translateY(-50%);
      width: 52px; height: 52px; border: 1px solid rgba(176,138,78,0.5);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.3s; background: rgba(26,26,26,0.5); z-index: 9010;
    }
    .lb-nav:hover { border-color: var(--gold); background: rgba(176,138,78,0.15); }
    .lb-nav svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
    .lb-prev { left: 1.5rem; }
    .lb-next { right: 1.5rem; }
    .lb-img { width: 100%; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
    .lb-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
    .lb-meta { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
    .lb-cat { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
    .lb-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); }
    .lb-counter { font-size: 0.7rem; color: rgba(247,245,242,0.4); letter-spacing: 0.1em; }

    /* ─── LOAD MORE ─── */
    .load-more-area { text-align: center; margin-top: 4rem; }
    .load-more-btn {
      font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.22em; text-transform: uppercase; padding: 1rem 2.5rem;
      border: 1.5px solid var(--gold); color: var(--gold); background: transparent;
      cursor: pointer; transition: all 0.3s;
    }
    .load-more-btn:hover { background: var(--gold); color: var(--white); }

    /* ─── CTA BAND ─── */
    .gallery-cta {
      background: var(--black); padding: 6rem 0; text-align: center; position: relative; overflow: hidden;
    }
    .gallery-cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(176,138,78,0.08) 0%, transparent 70%); }
    .gallery-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 0.8rem; position: relative; }
    .gallery-cta h2 em { font-style: normal; color: var(--gold); }
    .gallery-cta p { font-size: 0.88rem; color: rgba(247,245,242,0.4); margin-bottom: 2.5rem; position: relative; }
    .gallery-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
    .btn { display: inline-flex; align-items: center; gap: 0.6rem; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.9rem 2rem; border: 1.5px solid currentColor; cursor: pointer; transition: all 0.32s ease; white-space: nowrap; background: transparent; }
    .btn-gold { color: var(--gold); border-color: var(--gold); }
    .btn-gold:hover { background: var(--gold); color: var(--white); }
    .btn-fill { background: var(--gold); color: var(--white); border-color: var(--gold); }
    .btn-fill:hover { background: transparent; color: var(--gold); }
    .btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s; }
    .btn:hover svg { transform: translateX(3px); }

    /* ─── FOOTER ─── */
    footer { background: var(--black); padding: 3rem 0 2rem; }
    .footer-mini { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(176,138,78,0.12); margin-bottom: 1.5rem; }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
    .footer-logo span { color: var(--gold); }
    .footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
    .footer-links a { font-size: 0.72rem; color: rgba(247,245,242,0.4); transition: color 0.3s; font-weight: 500; letter-spacing: 0.05em; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 0.68rem; color: rgba(247,245,242,0.2); }
    .footer-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.78rem; color: rgba(176,138,78,0.45); }

    /* ─── RESPONSIVE ─── */

    /* Laptops (≤1100px) */
    @media (max-width: 1100px) {
      .gallery-grid { columns: 3; column-gap: 10px; }
      .container { padding: 0 2rem; }
    }

    /* Tablets landscape (≤960px) */
    @media (max-width: 960px) {
      #nav .nav-links, #nav .nav-book { display: none; }
      .hamburger { display: flex; }
      .gallery-main { padding: 4rem 0 6rem; }
      .gallery-grid { columns: 3; }
      .ph-title { font-size: clamp(2.5rem, 8vw, 4.5rem); }
      .ph-monogram { font-size: 14rem; }
      .page-hero { min-height: 42vh; }
    }

    /* Tablets portrait (≤768px) */
    @media (max-width: 768px) {
      .container { padding: 0 1.5rem; }
      .gallery-main { padding: 3rem 0 5rem; }
      .gallery-grid { columns: 2; column-gap: 8px; }

      /* Filter tabs — scroll horizontally */
      .filter-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .filter-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; padding-bottom: 4px; flex-wrap: nowrap; }
      .ftab { white-space: nowrap; flex-shrink: 0; font-size: 0.62rem; padding: 0.6rem 1.1rem; }
      .filter-count { font-size: 0.68rem; }

      /* Hide lightbox arrow nav on touch — swipe instead */
      .lb-nav { width: 44px; height: 44px; }
      .lb-prev { left: 0.5rem; }
      .lb-next { right: 0.5rem; }

      /* Page hero */
      .ph-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
      .ph-monogram { font-size: 10rem; }
      .page-hero { min-height: 38vh; }
      .ph-inner { padding: 4rem 0 3rem; }

      /* Gallery item heights */
      .h-xtall .g-ph { height: 380px; }
      .h-tall  .g-ph { height: 300px; }
      .h-med   .g-ph { height: 220px; }
      .h-sht   .g-ph { height: 170px; }

      /* Footer */
      .footer-mini { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .footer-links { gap: 1.2rem; }

      /* CTA */
      .gallery-cta { padding: 4.5rem 0; }
      .gallery-cta-btns { flex-direction: column; align-items: center; gap: 0.8rem; }
      .gallery-cta-btns .btn { width: 100%; max-width: 300px; justify-content: center; }
    }

    /* Large phones (≤640px) */
    @media (max-width: 640px) {
      .container { padding: 0 1rem; }
      .gallery-main { padding: 2.5rem 0 4rem; }
      .gallery-grid { columns: 2; column-gap: 6px; }
      .g-item { margin-bottom: 6px; }

      /* Page hero */
      .ph-title { font-size: clamp(2rem, 10vw, 3rem); }
      .ph-sub { font-size: 0.78rem; }
      .ph-monogram { display: none; }
      .page-hero { min-height: 36vh; padding-top: 76px; }
      .ph-crumb { font-size: 0.6rem; }

      /* Gallery heights — more compact */
      .h-xtall .g-ph { height: 280px; }
      .h-tall  .g-ph { height: 240px; }
      .h-med   .g-ph { height: 190px; }
      .h-sht   .g-ph { height: 150px; }

      /* Filter */
      .ftab { padding: 0.55rem 0.9rem; font-size: 0.6rem; }

      /* Lightbox */
      .lb-inner { max-width: 100%; }
      .lb-title { font-size: 1rem; }
      .lb-close { top: 1rem; right: 1rem; font-size: 1.4rem; }

      /* Load more */
      .load-more-area { margin-top: 2.5rem; }
      .load-more-btn { width: 100%; max-width: 280px; }

      /* Nav */
      #nav { padding: 0 1rem; }
    }

    /* Small phones (≤480px) */
    @media (max-width: 480px) {
      .gallery-grid { columns: 1; column-gap: 0; }
      .g-item { margin-bottom: 8px; }

      .h-xtall .g-ph,
      .h-tall  .g-ph,
      .h-med   .g-ph,
      .h-sht   .g-ph { height: 220px; }

      .ph-title { font-size: clamp(1.8rem, 12vw, 2.8rem); }
      .page-hero { min-height: 32vh; }

      .filter-tabs { gap: 0; }
      .ftab { padding: 0.5rem 0.8rem; font-size: 0.58rem; }

      .gallery-cta h2 { font-size: 1.7rem; }
      .gallery-cta p { font-size: 0.8rem; }

      footer { padding: 2.5rem 0 1.5rem; }
      .footer-links { gap: 0.8rem; }
      .footer-bottom-row { flex-direction: column; gap: 0.4rem; text-align: center; }
    }

    /* Very small phones (≤360px) */
    @media (max-width: 360px) {
      .container { padding: 0 0.8rem; }
      .ftab { padding: 0.45rem 0.65rem; font-size: 0.55rem; letter-spacing: 0.08em; }
      .ph-title { font-size: 1.8rem; }
      .h-xtall .g-ph,
      .h-tall  .g-ph,
      .h-med   .g-ph,
      .h-sht   .g-ph { height: 190px; }
      .lb-title { font-size: 0.9rem; }
      .lb-cat { font-size: 0.55rem; }
    }

    /* Reveal */
    /* Reveal: visible by default — JS adds animation only when ready */
    .reveal { opacity: 1; transform: none; }
    .reveal.js-ready { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.in { opacity: 1 !important; transform: translateY(0) !important; }
  