  .page-hero { padding: clamp(36px, 4vw, 64px) 0 clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--c-line); }
  .page-hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
  .page-hero h1 { margin-top: 18px; }
  .page-hero h1 em { font-style: italic; color: var(--c-ink-soft); font-weight: 400; }
  /* Filter chips */
  .chips {
    display: flex; flex-wrap: nowrap; align-items: center; gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .chips::-webkit-scrollbar { display: none; }
  .chip {
    font-family: var(--f-mono); font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 9px 14px;
    border: 1px solid var(--c-line);
    color: var(--c-ink-soft);
    transition: all .2s;
    cursor: pointer;
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .chip:hover { color: var(--c-ink); border-color: var(--c-ink); }
  .chip.is-active { background: var(--c-ink); color: var(--c-bg); border-color: var(--c-ink); }

  /* Project grid — masonry so each photo keeps its native aspect ratio */
  .pgrid {
    column-count: 3;
    column-gap: 24px;
    margin-top: 36px;
  }
  .pcard {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s;
    display: block;
    width: 100%;
    margin: 0 0 24px;
    break-inside: avoid;
  }
  .pcard:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(14,26,43,0.08); }
  .pcard__media {
    position: relative;
    background: var(--c-dark);
    overflow: hidden;
    line-height: 0;
  }
  .pcard__media .ph { position: absolute; inset: 0; }
  .pcard__media .ph .ph__corners { display: block; }
  .pcard__img {
    width: 100%;
    height: auto;
    display: block;
  }
  .pcard__tag {
    position: absolute; top: 14px; left: 14px;
    font-family: var(--f-mono); font-size: 10px;
    letter-spacing: 0.18em; text-transform: uppercase;
    background: var(--c-bg); color: var(--c-ink);
    padding: 6px 10px;
    border: 1px solid var(--c-line);
  }
  .pcard__body { padding: 22px 24px 26px; display: flex; justify-content: space-between; align-items: end; gap: 16px; }
  .pcard__name { font-family: var(--f-serif); font-size: 22px; line-height: 1.2; }
  .pcard__loc { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-ink-soft); margin-top: 6px; }
  .pcard__cta {
    font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--c-ink); white-space: nowrap;
  }
  .pcard__cta .arrow { display: inline-block; transition: transform .2s; }
  .pcard:hover .pcard__cta .arrow { transform: translateX(4px); color: var(--c-accent); }

  /* Quote band */
  .quote-band {
    background: var(--c-dark);
    color: var(--c-ivory);
    text-align: center;
    padding: clamp(80px, 10vw, 140px) var(--gut);
  }
  .quote-band q {
    font-family: var(--f-serif); font-size: clamp(28px, 3.6vw, 52px);
    line-height: 1.2; quotes: none;
    display: block; max-width: 22ch; margin: 0 auto;
  }
  .quote-band q em { font-style: italic; color: var(--c-ivory-soft); }
  .quote-band__cite { margin-top: 32px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-ivory-soft); }

  /* Make every card visibly interactive */
  .pcard { cursor: zoom-in; }
  .pcard__cta { display: inline-flex; align-items: center; gap: 6px; padding: 6px 0; }

  /* Lightbox */
  .lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(14,26,43, 0.92);
    display: none;
    align-items: center; justify-content: center;
    padding: 4vmin;
    cursor: zoom-out;
    backdrop-filter: blur(6px);
  }
  .lightbox.is-open { display: flex; }
  .lightbox__frame {
    position: relative;
    max-width: min(1400px, 96vw);
    max-height: 92vh;
    display: flex; flex-direction: column;
    cursor: default;
  }
  .lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    width: auto; height: auto;
    object-fit: contain;
    background: var(--c-dark-2);
    box-shadow: 0 24px 60px rgba(14,26,43,0.5);
    display: block;
  }
  .lightbox__caption {
    margin-top: 18px;
    color: var(--c-ivory);
    font-family: var(--f-serif);
    display: flex; align-items: end; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .lightbox__name { font-size: clamp(20px, 2vw, 28px); }
  .lightbox__loc {
    font-family: var(--f-mono); font-size: 11px;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--c-ivory-soft);
  }
  .lightbox__close {
    position: absolute; top: -8px; right: -8px;
    width: 44px; height: 44px;
    background: var(--c-ivory); color: var(--c-dark);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 22px; line-height: 1;
    box-shadow: 0 6px 20px rgba(14,26,43,0.35);
    cursor: pointer;
  }
  .lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(237,230,218,0.12);
    color: var(--c-ivory);
    border: 1px solid rgba(237,230,218,0.2);
    display: grid; place-items: center;
    font-size: 22px; cursor: pointer;
    transition: background .15s;
  }
  .lightbox__nav:hover { background: rgba(237,230,218,0.25); }
  .lightbox__nav--prev { left: -64px; }
  .lightbox__nav--next { right: -64px; }
  @media (max-width: 900px) {
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
    .lightbox__close { top: -44px; right: 0; }
  }

  @media (max-width: 980px) {
    .pgrid { column-count: 2; }
  }
  @media (max-width: 620px) {
    .pgrid { column-count: 1; }
  }
