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

  :root {
    --ink:        #0d0d0d;
    --cream:      #f5f2ed;
    --gold:       #c9a96e;
    --gold-light: #e8d5b0;
    --muted:      #7a7670;
    --white:      #ffffff;
    --card-bg:    #faf8f4;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
  }

  /* ── CURSOR ── */
  #cursor {
    width: 10px; height: 10px;
    background: var(--gold); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9999;
    transition: width .2s, height .2s, background .2s;
  }
  #cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gold); border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 9998;
    transition: transform .32s cubic-bezier(.25,.46,.45,.94), opacity .2s;
    opacity: .55;
  }
  body.hovering-card #cursor {
    width: 64px; height: 64px;
    background: rgba(201,169,110,0.18);
    border: 1.5px solid var(--gold);
  }
  body.hovering-card #cursor-ring { opacity: 0; }


  /* ── HERO ── */
  .hero {
    min-height: 68vh;
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 140px 60px 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 55% 70% at 85% 30%, rgba(201,169,110,0.11) 0%, transparent 65%),
      radial-gradient(ellipse 35% 45% at 5% 80%, rgba(201,169,110,0.07) 0%, transparent 55%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(201,169,110,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,169,110,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 90% 40%, black 0%, transparent 75%);
  }
  .hero-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 300; line-height: 1;
    color: rgba(201,169,110,0.07);
    position: absolute; right: 40px; bottom: -20px;
    pointer-events: none; z-index: 0; letter-spacing: -8px;
    opacity: 0; animation: fadeIn 1s .3s forwards;
  }
  .hero-tag {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px; z-index: 1;
    opacity: 0; animation: fadeUp .8s .2s forwards;
  }
  h1.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7.5vw, 100px);
    font-weight: 300; line-height: 1.0; letter-spacing: -1px;
    color: var(--ink); z-index: 1; max-width: 800px;
    opacity: 0; animation: fadeUp .9s .35s forwards;
  }
  h1.hero-title em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-size: 15px; font-weight: 300; color: var(--muted);
    line-height: 1.75; max-width: 460px; margin-top: 24px; z-index: 1;
    opacity: 0; animation: fadeUp .9s .5s forwards;
  }

  /* ── FILTER BAR ── */
  .filter-section {
    padding: 0 60px 60px;
    opacity: 0; animation: fadeUp .8s .65s forwards;
  }
  .filter-bar {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap; margin-top: 48px;
  }
  .filter-btn {
    padding: 9px 22px;
    border: 1px solid rgba(13,13,13,0.14);
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--muted); background: transparent;
    cursor: none; transition: all .3s;
  }
  .filter-btn:hover { border-color: var(--gold); color: var(--ink); }
  .filter-btn.active {
    background: var(--ink); border-color: var(--ink);
    color: var(--cream);
  }
  .filter-count {
    margin-left: auto;
    font-size: 12px; color: var(--muted); letter-spacing: .5px;
  }
  .filter-count span { color: var(--gold); font-weight: 500; }

  /* ── DIVIDER ── */
  .divider {
    display: flex; align-items: center; gap: 20px;
    padding: 0 60px; margin-bottom: 0;
  }
  .divider-line { flex: 1; height: 1px; background: rgba(201,169,110,0.15); }
  .divider-mark { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold); opacity: .45; }

  /* ── PORTFOLIO GRID ── */
  .portfolio-section { padding: 72px 60px 120px; }

  .grid-label {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 40px;
    opacity: 0;
  }
  .grid-label.visible { animation: fadeUp .6s forwards; }

  /* MASONRY-STYLE GRID */
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }

  /* Card base */
  .p-card {
    position: relative; overflow: hidden;
    border-radius: 6px;
    background: var(--card-bg);
    border: 1px solid rgba(13,13,13,0.06);
    cursor: none;
    opacity: 0;
    transition: transform .45s cubic-bezier(.25,.46,.45,.94), box-shadow .45s, opacity .6s;
  }
  .p-card.visible { opacity: 1; }
  .p-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(13,13,13,0.12);
  }

  /* Grid sizing — varied layout */
  .p-card.wide   { grid-column: span 8; }
  .p-card.tall   { grid-column: span 4; }
  .p-card.half   { grid-column: span 6; }
  .p-card.third  { grid-column: span 4; }
  .p-card.full   { grid-column: span 12; }

  /* Image area */
  .p-card-img {
    position: relative; overflow: hidden;
    background: linear-gradient(145deg, #ede9e1, #ddd7cc);
  }
  .p-card.wide  .p-card-img { aspect-ratio: 16/9; }
  .p-card.tall  .p-card-img { aspect-ratio: 3/4; }
  .p-card.half  .p-card-img { aspect-ratio: 4/3; }
  .p-card.third .p-card-img { aspect-ratio: 4/3; }
  .p-card.full  .p-card-img { aspect-ratio: 21/9; }

  .p-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .5s;
    filter: saturate(.9);
  }
  .p-card:hover .p-card-img img {
    transform: scale(1.05);
    filter: saturate(1.05);
  }

  /* Placeholder if no image */
  .p-card-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 14px;
    background:
      repeating-linear-gradient(
        45deg, transparent, transparent 22px,
        rgba(201,169,110,0.05) 22px, rgba(201,169,110,0.05) 23px
      );
  }
  .placeholder-sym {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300;
    color: rgba(201,169,110,0.3); line-height: 1;
  }
  .placeholder-hint {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(13,13,13,0.2);
  }

  /* Overlay on hover */
  .p-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,
      rgba(13,13,13,0.82) 0%,
      rgba(13,13,13,0.3) 45%,
      transparent 75%);
    opacity: 0; transition: opacity .4s;
    display: flex; align-items: flex-end;
    padding: 28px;
  }
  .p-card:hover .p-card-overlay { opacity: 1; }

  .overlay-content { display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .overlay-links { display: flex; gap: 10px; }
  .overlay-link {
    display: flex; align-items: center; gap: 7px;
    padding: 9px 18px;
    border-radius: 4px; text-decoration: none;
    font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    transition: background .3s, color .3s;
    cursor: none;
  }
  .overlay-link.primary {
    background: var(--gold); color: var(--ink);
  }
  .overlay-link.primary:hover { background: var(--gold-light); }
  .overlay-link.secondary {
    background: rgba(245,242,237,0.12); color: var(--cream);
    border: 1px solid rgba(245,242,237,0.2);
  }
  .overlay-link.secondary:hover { background: rgba(245,242,237,0.2); }
  .overlay-link svg { width: 13px; height: 13px; }
  .overlay-index {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300;
    color: rgba(245,242,237,0.15);
    line-height: 1;
  }

  /* Card body */
  .p-card-body { padding: 24px 26px 26px; }
  .p-card-meta {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
  }
  .p-card-tag {
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); background: rgba(201,169,110,0.1);
    padding: 3px 9px; border-radius: 20px;
    border: 1px solid rgba(201,169,110,0.2);
  }
  .p-card-year { font-size: 11px; color: var(--muted); }
  .p-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; color: var(--ink);
    line-height: 1.2; margin-bottom: 8px;
  }
  .p-card.wide .p-card-title,
  .p-card.full .p-card-title { font-size: 28px; }
  .p-card-desc {
    font-size: 13px; font-weight: 300; color: var(--muted);
    line-height: 1.65;
  }
  .p-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 18px; padding-top: 16px;
    border-top: 1px solid rgba(13,13,13,0.06);
  }
  .p-card-pills { display: flex; flex-wrap: wrap; gap: 6px; }
  .pill {
    font-size: 10px; letter-spacing: .5px;
    color: var(--muted); background: rgba(13,13,13,0.05);
    padding: 3px 10px; border-radius: 20px;
  }
  .p-card-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border: 1px solid rgba(13,13,13,0.1); border-radius: 50%;
    text-decoration: none; color: var(--muted);
    transition: background .3s, border-color .3s, color .3s, transform .3s;
    flex-shrink: 0; cursor: none;
  }
  .p-card-arrow:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--ink); transform: rotate(45deg);
  }
  .p-card-arrow svg { width: 14px; height: 14px; }

  /* Gold bar accent */
  .p-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94);
  }
  .p-card:hover::after { transform: scaleX(1); }

  /* ── FEATURED ROW ── */
  .featured-strip {
    padding: 0 60px 80px;
    opacity: 0;
  }
  .featured-strip.visible { animation: fadeUp .7s forwards; }
  .featured-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 36px;
  }
  .featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 300; color: var(--ink);
  }
  .featured-title em { font-style: italic; color: var(--gold); }
  .view-all {
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    transition: color .3s; cursor: none;
  }
  .view-all:hover { color: var(--ink); }

  /* HORIZONTAL SCROLL REEL */
  .reel-wrap { position: relative; }
  .reel {
    display: flex; gap: 20px;
    overflow-x: auto; padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .reel::-webkit-scrollbar { height: 3px; }
  .reel::-webkit-scrollbar-track { background: rgba(13,13,13,0.06); border-radius: 4px; }
  .reel::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
  .reel-card {
    flex-shrink: 0; width: 320px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid rgba(13,13,13,0.06);
    border-radius: 6px; overflow: hidden;
    cursor: none; position: relative;
    transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s;
  }
  .reel-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(13,13,13,0.1); }
  .reel-img {
    aspect-ratio: 16/9; overflow: hidden;
    background: linear-gradient(135deg, #ede9e1, #ddd7cc);
    position: relative;
  }
  .reel-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
  .reel-card:hover .reel-img img { transform: scale(1.06); }
  .reel-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(201,169,110,0.06) 18px, rgba(201,169,110,0.06) 19px);
  }
  .reel-placeholder-sym {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; color: rgba(201,169,110,0.25);
  }
  .reel-body { padding: 20px 22px 22px; }
  .reel-tag {
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px; display: block;
  }
  .reel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400; color: var(--ink); margin-bottom: 8px;
  }
  .reel-desc { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }
  .reel-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px;
    font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--gold); text-decoration: none; cursor: none;
    transition: gap .3s, color .3s;
  }
  .reel-link:hover { gap: 10px; color: var(--ink); }
  .reel-link svg { width: 13px; height: 13px; }
  .reel-num {
    position: absolute; top: 12px; right: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 300;
    color: rgba(245,242,237,0.25); line-height: 1;
    pointer-events: none;
  }

  /* ── CTA BANNER ── */
  .cta-band {
    margin: 50px 60px 50px 60px;
    background: var(--ink);
    border-radius: 8px; overflow: hidden;
    padding: 64px 72px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative;
    opacity: 0;
  }
  .cta-band.visible { animation: fadeUp .7s forwards; }
  .cta-band-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(201,169,110,0.12) 0%, transparent 60%);
  }
  .cta-band-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(201,169,110,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201,169,110,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 10% 50%, black, transparent);
  }
  .cta-left { z-index: 1; }
  .cta-eyebrow {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300; color: var(--cream); line-height: 1.1;
  }
  .cta-title em { font-style: italic; color: var(--gold); }
  .cta-right { z-index: 1; display: flex; gap: 14px; flex-shrink: 0; }
  .btn-cta-primary {
    background: var(--gold); color: var(--ink);
    padding: 14px 32px; border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none; font-weight: 500;
    transition: background .3s; cursor: none;
  }
  .btn-cta-primary:hover { background: var(--gold-light); }
  .btn-cta-outline {
    border: 1.5px solid rgba(245,242,237,0.2); color: rgba(245,242,237,0.6);
    padding: 14px 32px; border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    text-decoration: none;
    transition: border-color .3s, color .3s; cursor: none;
  }
  .btn-cta-outline:hover { border-color: var(--gold); color: var(--gold); }


  /* ── LIGHTBOX ── */
  .lightbox {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(13,13,13,0.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
    backdrop-filter: blur(8px);
  }
  .lightbox.open { opacity: 1; pointer-events: all; }
  .lightbox-inner {
    max-width: 1000px; width: 90%;
    background: var(--card-bg);
    border-radius: 8px; overflow: hidden;
    transform: scale(.96);
    transition: transform .35s cubic-bezier(.25,.46,.45,.94);
    border: 1px solid rgba(201,169,110,0.18);
    position: relative;
  }
  .lightbox.open .lightbox-inner { transform: scale(1); }
  .lb-img-area {
    aspect-ratio: 16/9; overflow: hidden;
    background: #1a1a1a;
  }
  .lb-img-area img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .lb-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: #111;
  }
  .lb-placeholder-sym {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px; font-weight: 300;
    color: rgba(201,169,110,0.15);
  }
  .lb-body { padding: 32px 36px; }
  .lb-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
  .lb-tag {
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold); background: rgba(201,169,110,0.1);
    padding: 3px 9px; border-radius: 20px; border: 1px solid rgba(201,169,110,0.2);
  }
  .lb-year { font-size: 12px; color: var(--muted); }
  .lb-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px; font-weight: 300; color: var(--ink); margin-bottom: 12px;
  }
  .lb-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 600px; }
  .lb-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(13,13,13,0.08); }
  .lb-pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .lb-links { display: flex; gap: 10px; }
  .lb-link {
    padding: 10px 24px; border-radius: 4px;
    font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
    font-family: 'DM Sans', sans-serif; text-decoration: none; cursor: none;
    transition: background .3s, color .3s;
  }
  .lb-link.primary { background: var(--ink); color: var(--cream); }
  .lb-link.primary:hover { background: var(--gold); color: var(--ink); }
  .lb-link.outline { border: 1px solid rgba(13,13,13,0.14); color: var(--muted); }
  .lb-link.outline:hover { border-color: var(--gold); color: var(--ink); }
  .lb-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; background: rgba(13,13,13,0.08);
    border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: none; transition: background .3s;
  }
  .lb-close:hover { background: rgba(13,13,13,0.16); }
  .lb-close svg { width: 16px; height: 16px; color: var(--ink); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.25,.46,.45,.94), transform .75s cubic-bezier(.25,.46,.45,.94); }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .p-card.wide  { grid-column: span 12; }
    .p-card.tall  { grid-column: span 6; }
    .p-card.full  { grid-column: span 12; }
  }
  @media (max-width: 768px) {
    nav { padding: 18px 24px; }
    .hero, .filter-section, .portfolio-section, .featured-strip { padding-left: 24px; padding-right: 24px; }
    .divider, .cta-band { margin-left: 24px; margin-right: 24px; }
    footer { padding: 40px 24px 28px; }
    .p-card.wide, .p-card.tall, .p-card.half, .p-card.third, .p-card.full { grid-column: span 12; }
    .cta-band { flex-direction: column; gap: 32px; padding: 40px 32px; }
    .footer-top { flex-direction: column; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 18px; }
    .nav-links { display: none; }
  }