    :root {
      --bg: #0a0a0a;
      --bg-2: #121213;
      --text: #f4f3ef;
      --muted: rgba(244, 243, 239, 0.52);
      --muted-2: rgba(244, 243, 239, 0.38);
      --line: rgba(244, 243, 239, 0.13);
      --line-strong: rgba(244, 243, 239, 0.28);
      --font: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
      --maxw: 1360px;
      --pad: clamp(20px, 5vw, 72px);
    }

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

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font);
      font-weight: 400;
      line-height: 1.6;
      letter-spacing: -0.01em;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    ::selection { background: var(--text); color: var(--bg); }

    .wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

    .eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1px;
      background: var(--line-strong);
      display: inline-block;
    }

    /* ---------- NAV ---------- */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
      border-bottom: 1px solid transparent;
    }
    header.scrolled {
      background: rgba(10, 10, 10, 0.72);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      border-bottom: 1px solid var(--line);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
    }
    .logo {
      font-weight: 800;
      font-size: 15px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .logo span { color: var(--muted); }
    .nav-links { display: flex; gap: clamp(18px, 3vw, 40px); }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.05em;
      color: var(--muted);
      position: relative;
      transition: color 0.25s ease;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0; bottom: -5px;
      width: 0; height: 1px;
      background: var(--text);
      transition: width 0.28s ease;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { width: 100%; }

    /* ---------- HERO ---------- */
    .hero {
      position: relative;
      height: 100svh;
      min-height: 620px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }
    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 42%;
      z-index: 0;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.05) 32%, rgba(10,10,10,0.15) 55%, rgba(10,10,10,0.82) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding-bottom: clamp(48px, 9vh, 110px);
    }
    .hero-tag {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: rgba(244,243,239,0.72);
      margin-bottom: 22px;
    }
    .hero h1 {
      font-weight: 800;
      font-size: clamp(3rem, 11vw, 9.5rem);
      line-height: 0.92;
      letter-spacing: -0.035em;
      margin-bottom: 24px;
    }
    .hero p.lede {
      font-size: clamp(1.05rem, 2.2vw, 1.5rem);
      font-weight: 400;
      color: rgba(244,243,239,0.86);
      max-width: 30ch;
      letter-spacing: -0.01em;
    }
    .scroll-cue {
      position: absolute;
      bottom: 26px; right: var(--pad);
      z-index: 2;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex; align-items: center; gap: 10px;
    }
    .scroll-cue::after {
      content: "";
      width: 1px; height: 34px;
      background: linear-gradient(var(--line-strong), transparent);
      animation: cue 2.2s ease-in-out infinite;
      transform-origin: top;
    }
    @keyframes cue { 0%,100% { transform: scaleY(0.4); opacity:0.5; } 50% { transform: scaleY(1); opacity:1; } }

    /* ---------- SECTION SHELL ---------- */
    section { position: relative; }
    .section-pad { padding-top: clamp(84px, 13vh, 168px); padding-bottom: clamp(84px, 13vh, 168px); }

    /* ---------- ABOUT ---------- */
    .about { max-width: 1000px; }
    .about h2 {
      font-weight: 600;
      font-size: clamp(1.9rem, 5vw, 3.4rem);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-top: 26px;
    }
    .about h2 em { font-style: normal; color: var(--muted); }
    .about p {
      color: var(--muted);
      font-size: clamp(1.02rem, 1.6vw, 1.18rem);
      max-width: 62ch;
      margin-top: 30px;
    }

    /* ---------- SECTION HEAD ---------- */
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 18px;
      margin-bottom: clamp(32px, 5vw, 56px);
    }
    .section-head h2 {
      font-weight: 700;
      font-size: clamp(2rem, 6vw, 4.2rem);
      line-height: 0.98;
      letter-spacing: -0.035em;
      margin-top: 18px;
    }
    .section-head p {
      color: var(--muted);
      max-width: 34ch;
      font-size: 15px;
    }

    /* ---------- WORK / MASONRY ---------- */
    .work-wrap { padding-left: var(--pad); padding-right: var(--pad); max-width: 1600px; margin: 0 auto; }
    .masonry {
      column-count: 3;
      column-gap: clamp(12px, 1.4vw, 20px);
    }
    @media (max-width: 1024px) { .masonry { column-count: 2; } }
    @media (max-width: 560px)  { .masonry { column-count: 1; } }
    .masonry figure {
      break-inside: avoid;
      margin: 0 0 clamp(12px, 1.4vw, 20px);
      position: relative;
      overflow: hidden;
      cursor: pointer;
      background: var(--bg-2);
    }
    .masonry img {
      width: 100%;
      height: auto;
      transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
      opacity: 0;
      transform: scale(1.02);
    }
    .masonry img.loaded { opacity: 1; transform: scale(1); }
    .masonry figure:hover img { transform: scale(1.045); }
    .masonry figcaption {
      position: absolute;
      left: 0; bottom: 0; right: 0;
      padding: 34px 18px 16px;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text);
      background: linear-gradient(transparent, rgba(10,10,10,0.78));
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .masonry figure:hover figcaption { opacity: 1; transform: translateY(0); }

    /* ---------- SERVICES (editorial list) ---------- */
    .services { border-top: 1px solid var(--line-strong); }
    .service {
      display: grid;
      grid-template-columns: 42px minmax(0, 0.85fr) minmax(0, 1.3fr);
      gap: clamp(14px, 3vw, 48px);
      align-items: baseline;
      padding: clamp(26px, 3.4vw, 40px) 4px;
      border-bottom: 1px solid var(--line);
      transition: padding-left 0.4s cubic-bezier(0.2,0.8,0.2,1);
    }
    .service:hover { padding-left: 16px; }
    .service .num {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--muted-2);
    }
    .service h3 {
      font-size: clamp(1.5rem, 3.4vw, 2.4rem);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.04;
    }
    .service p {
      color: var(--muted);
      font-size: clamp(0.95rem, 1.4vw, 1.05rem);
      max-width: 50ch;
    }
    @media (max-width: 720px) {
      .service {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 24px 0;
      }
      .service:hover { padding-left: 0; }
      .service .num { margin-bottom: 2px; }
      .service p { margin-top: 4px; }
    }

    /* ---------- TEAM ---------- */
    .team {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(20px, 3vw, 40px);
    }
    @media (max-width: 720px) { .team { grid-template-columns: 1fr; } }
    .member { border-top: 1px solid var(--line-strong); padding-top: 24px; }
    .member h3 {
      font-size: clamp(1.3rem, 2.4vw, 1.7rem);
      font-weight: 600;
      letter-spacing: -0.02em;
    }
    .member p { color: var(--muted); font-size: 14px; margin-top: 6px; }
    .member .handle { display: inline-block; color: var(--muted-2); font-size: 12px; letter-spacing: 0.08em; margin-top: 14px; transition: color 0.25s ease; }
    a.handle:hover { color: var(--text); }

    /* ---------- CONTACT ---------- */
    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(36px, 6vw, 90px);
      align-items: start;
    }
    @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
    .contact-lead h2 {
      font-weight: 700;
      font-size: clamp(2.4rem, 7vw, 5rem);
      line-height: 0.96;
      letter-spacing: -0.04em;
      margin: 20px 0 30px;
    }
    .contact-lead .mail {
      font-size: clamp(1.1rem, 2.4vw, 1.6rem);
      font-weight: 500;
      letter-spacing: -0.01em;
      border-bottom: 1px solid var(--line-strong);
      padding-bottom: 3px;
      transition: border-color 0.3s ease, opacity 0.3s ease;
      display: inline-block;
    }
    .contact-lead .mail:hover { border-color: var(--text); }
    .contact-social { margin-top: 34px; display: flex; gap: 22px; }
    .contact-social a {
      font-size: 13px;
      letter-spacing: 0.08em;
      color: var(--muted);
      display: inline-flex; align-items: center; gap: 8px;
      transition: color 0.25s ease;
    }
    .contact-social a:hover { color: var(--text); }
    .contact-social svg { width: 16px; height: 16px; }

    form { display: flex; flex-direction: column; gap: 22px; }
    .field { display: flex; flex-direction: column; gap: 8px; }
    .field label {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .field input, .field textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--line-strong);
      color: var(--text);
      font-family: var(--font);
      font-size: 16px;
      padding: 10px 0;
      transition: border-color 0.3s ease;
      resize: vertical;
    }
    .field input:focus, .field textarea:focus {
      outline: none;
      border-color: var(--text);
    }
    .field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
    button.submit {
      align-self: flex-start;
      margin-top: 6px;
      background: var(--text);
      color: var(--bg);
      border: none;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 15px 34px;
      border-radius: 100px;
      cursor: pointer;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    button.submit:hover { opacity: 0.82; }
    button.submit:active { transform: translateY(1px); }

    /* ---------- FOOTER ---------- */
    footer {
      border-top: 1px solid var(--line);
      padding: 40px 0;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-inner .logo { font-size: 13px; }
    .footer-inner .copy { color: var(--muted-2); font-size: 12px; letter-spacing: 0.04em; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: 12px; letter-spacing: 0.06em; color: var(--muted); transition: color 0.25s ease; }
    .footer-links a:hover { color: var(--text); }

    /* ---------- REVEAL ---------- */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
    .reveal.in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      * { animation: none !important; transition: none !important; }
      .reveal { opacity: 1; transform: none; }
      .masonry img { opacity: 1; transform: none; }
      html { scroll-behavior: auto; }
    }

    /* ---------- MOBILE ---------- */
    @media (max-width: 600px) {
      :root { --pad: 20px; }

      .nav { height: 58px; }
      .logo { font-size: 13px; letter-spacing: 0.08em; }
      .nav-links { gap: 15px; }
      .nav-links a { font-size: 12px; letter-spacing: 0.02em; }

      .section-pad { padding-top: 66px; padding-bottom: 66px; }

      .hero { min-height: 540px; }
      .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
      .hero-content { padding-bottom: 40px; }
      .hero p.lede { font-size: 1.08rem; max-width: 24ch; }
      .scroll-cue { display: none; }

      .about h2 { margin-top: 16px; }
      .about p { margin-top: 22px; }

      .section-head { margin-bottom: 28px; }
      .section-head p { font-size: 14px; }

      /* Captions always visible on touch (no hover) */
      .masonry figcaption { opacity: 1; transform: none; padding: 30px 16px 14px; }

      .service { padding: 22px 0; }

      .team { gap: 26px; }

      .contact-grid { gap: 40px; }
      .contact-lead h2 { margin: 16px 0 24px; }
      .contact-social { margin-top: 24px; }

      footer { padding: 32px 0; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    }

    @media (max-width: 380px) {
      .logo { font-size: 12px; letter-spacing: 0.05em; }
      .nav-links { gap: 12px; }
      .nav-links a { font-size: 11px; }
    }

    /* Touch devices: show captions, disable zoom-on-hover jitter */
    @media (hover: none) {
      .masonry figcaption { opacity: 1; transform: none; }
      .masonry figure:hover img { transform: scale(1); }
    }

    /* ---------- LIGHTBOX ---------- */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(6,6,6,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(16px, 4vw, 60px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    .lightbox.open { opacity: 1; pointer-events: auto; }
    .lightbox img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    }
    .lightbox .close {
      position: absolute;
      top: clamp(16px, 3vw, 34px);
      right: clamp(16px, 3vw, 34px);
      width: 44px; height: 44px;
      border: 1px solid var(--line-strong);
      border-radius: 50%;
      background: transparent;
      color: var(--text);
      font-size: 20px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s ease, border-color 0.25s ease;
    }
    .lightbox .close:hover { background: rgba(244,243,239,0.08); border-color: var(--text); }

    /* =====================================================
       INTERIOR PAGES (Info)
       ===================================================== */
    .page-head {
      padding-top: clamp(122px, 20vh, 200px);
      padding-bottom: clamp(28px, 5vh, 60px);
    }
    .page-head h1 {
      font-weight: 800;
      font-size: clamp(2.7rem, 9vw, 6rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      margin-top: 22px;
    }
    .page-head p.lede {
      color: var(--muted);
      font-size: clamp(1.05rem, 1.9vw, 1.32rem);
      max-width: 54ch;
      margin-top: 26px;
    }

    .info-block { max-width: 780px; }
    .info-block h2 {
      font-weight: 600;
      font-size: clamp(1.7rem, 4.4vw, 2.9rem);
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-top: 22px;
    }
    .info-block p {
      color: var(--muted);
      font-size: clamp(1rem, 1.5vw, 1.14rem);
      max-width: 62ch;
      margin-top: 24px;
    }
    .info-block p.tight { margin-top: 14px; }
    .info-block a.link {
      color: var(--text);
      border-bottom: 1px solid var(--line-strong);
      transition: border-color 0.25s ease;
    }
    .info-block a.link:hover { border-color: var(--text); }

    /* numbered steps */
    .steps { margin-top: 40px; border-top: 1px solid var(--line); }
    .step {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: clamp(14px, 3vw, 32px);
      padding: 26px 0;
      border-bottom: 1px solid var(--line);
      align-items: start;
    }
    .step .n {
      font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
      color: var(--muted-2); padding-top: 5px;
    }
    .step h3 {
      font-size: clamp(1.15rem, 2.2vw, 1.5rem);
      font-weight: 600; letter-spacing: -0.02em; line-height: 1.15;
    }
    .step p { color: var(--muted); font-size: clamp(0.95rem, 1.4vw, 1.06rem); margin-top: 8px; max-width: 56ch; }

    /* checklist */
    .checklist { list-style: none; margin-top: 30px; }
    .checklist li {
      color: var(--muted);
      font-size: clamp(1rem, 1.5vw, 1.12rem);
      padding: 15px 0 15px 30px;
      border-top: 1px solid var(--line);
      position: relative;
    }
    .checklist li:last-child { border-bottom: 1px solid var(--line); }
    .checklist li::before {
      content: "\2192";
      position: absolute; left: 0; top: 15px; color: var(--text);
    }

    /* CTA buttons (links) */
    .btn {
      display: inline-block;
      margin-top: 36px;
      background: var(--text);
      color: var(--bg);
      font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      padding: 15px 34px; border-radius: 100px;
      transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    }
    .btn:hover { opacity: 0.82; }
    .btn:active { transform: translateY(1px); }
    .btn.ghost {
      background: transparent; color: var(--text);
      border: 1px solid var(--line-strong);
    }
    .btn.ghost:hover { opacity: 1; border-color: var(--text); background: rgba(244,243,239,0.06); }
    .btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
    .btn-row .btn { margin-top: 0; }

    .info-sep { border: none; border-top: 1px solid var(--line); }

    @media (max-width: 600px) {
      .page-head { padding-top: 100px; }
      .page-head h1 { font-size: clamp(2.6rem, 13vw, 4.4rem); }
      .step { grid-template-columns: 1fr; gap: 4px; }
      .step .n { padding-top: 0; margin-bottom: 2px; }
      .btn { display: block; text-align: center; }
      .btn-row { flex-direction: column; }
      .btn-row .btn { width: 100%; }
    }

    /* =====================================================
       HAMBURGER / MOBILE DROPDOWN NAV
       ===================================================== */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 42px; height: 42px;
      margin-right: -8px;
      background: none; border: none; cursor: pointer;
      z-index: 120;
    }
    .nav-toggle span {
      display: block; height: 2px; width: 24px;
      background: var(--text); border-radius: 2px;
      transition: transform .3s ease, opacity .25s ease;
    }
    header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    @media (max-width: 640px) {
      .nav-toggle { display: flex; }
      header.nav-open {
        background: rgba(10,10,10,0.97);
        backdrop-filter: saturate(140%) blur(16px);
        -webkit-backdrop-filter: saturate(140%) blur(16px);
      }
      .nav-links {
        position: fixed;
        top: 58px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: saturate(140%) blur(16px);
        -webkit-backdrop-filter: saturate(140%) blur(16px);
        padding: 4px var(--pad) 20px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .28s ease, transform .28s ease;
      }
      header.nav-open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
      .nav-links a {
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 0;
        color: var(--text);
        padding: 17px 2px;
        border-bottom: 1px solid var(--line);
      }
      .nav-links a:last-child { border-bottom: none; }
      .nav-links a::after { display: none; }
    }

    /* =====================================================
       NETWORK PAGE
       ===================================================== */
    .net-section { padding-top: clamp(60px, 9vh, 116px); }

    .ig {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--muted);
      border-bottom: 1px solid var(--line-strong); padding-bottom: 2px;
      transition: color .25s ease, border-color .25s ease;
    }
    .ig:hover { color: var(--text); border-color: var(--text); }
    .ig svg { width: 15px; height: 15px; }

    .avatar {
      width: 68px; height: 68px; border-radius: 50%;
      background: linear-gradient(140deg, #2b2b30, #141416);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; font-weight: 700; color: var(--text);
      overflow: hidden; flex: none;
    }
    .avatar img { width: 100%; height: 100%; object-fit: cover; }

    /* Photographer of the Week */
    .potw {
      display: grid;
      grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
      gap: clamp(22px, 4vw, 56px);
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 5px;
      overflow: hidden;
      background: var(--bg-2);
    }
    .potw-media { aspect-ratio: 4/5; background: #17171a; }
    .potw-media img { width: 100%; height: 100%; object-fit: cover; }
    .potw-media.is-initials {
      display: flex; align-items: center; justify-content: center;
      font-size: clamp(4rem, 12vw, 7rem); font-weight: 800; color: rgba(244,243,239,0.16);
    }
    .potw-body { padding: clamp(26px, 4vw, 50px) clamp(24px,4vw,52px) clamp(26px,4vw,50px) 0; }
    .potw-body h3 { font-size: clamp(1.8rem, 4.4vw, 2.9rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; margin-top: 12px; }
    .potw-body .role { color: var(--muted); font-size: 14px; margin-top: 8px; }
    .potw-body p { color: var(--muted); margin-top: 18px; max-width: 52ch; }
    .potw-body .ig { margin-top: 22px; }
    @media (max-width: 720px) {
      .potw { grid-template-columns: 1fr; }
      .potw-media { aspect-ratio: 16/10; }
      .potw-media.is-initials { font-size: 5rem; }
      .potw-body { padding: 24px 22px 30px; }
    }

    /* Photographer grid */
    .net-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
    @media (max-width: 900px) { .net-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .net-grid { grid-template-columns: 1fr; } }
    .pcard {
      border: 1px solid var(--line);
      border-radius: 5px;
      padding: 26px 24px 24px;
      background: var(--bg-2);
      transition: border-color .3s ease, transform .3s ease;
    }
    .pcard:hover { border-color: var(--line-strong); transform: translateY(-3px); }
    .pcard .avatar { margin-bottom: 18px; }
    .pcard h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }
    .pcard .role { color: var(--muted-2); font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; margin-top: 5px; }
    .pcard p { color: var(--muted); font-size: 14px; margin-top: 14px; }
    .pcard .ig { margin-top: 18px; }

    /* Journal / posts */
    .posts { border-top: 1px solid var(--line-strong); }
    .post {
      display: grid; grid-template-columns: 140px 1fr; gap: clamp(14px,3vw,40px);
      padding: 30px 4px; border-bottom: 1px solid var(--line);
      cursor: pointer; align-items: baseline;
      transition: padding-left .35s ease;
    }
    .post:hover { padding-left: 12px; }
    .post .meta { color: var(--muted-2); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
    .post h3 { font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 600; letter-spacing: -0.025em; line-height: 1.1; }
    .post p { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 62ch; }
    @media (max-width: 640px) { .post { grid-template-columns: 1fr; gap: 6px; } .post:hover { padding-left: 0; } }

    .net-empty { color: var(--muted-2); font-size: 15px; padding: 20px 0; }

    /* Post modal */
    .post-modal {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(6,6,6,0.9);
      display: flex; align-items: flex-start; justify-content: center;
      overflow-y: auto; padding: clamp(16px,5vw,70px);
      opacity: 0; pointer-events: none; transition: opacity .3s ease;
    }
    .post-modal.open { opacity: 1; pointer-events: auto; }
    .post-modal-inner {
      max-width: 720px; width: 100%;
      background: var(--bg-2); border: 1px solid var(--line);
      border-radius: 6px; padding: clamp(28px,5vw,54px); position: relative;
    }
    .post-modal .meta { color: var(--muted-2); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
    .post-modal h2 { font-size: clamp(1.7rem,5vw,2.6rem); font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 6px; line-height: 1.06; }
    .post-modal .byline { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
    .post-modal .body { color: rgba(244,243,239,0.82); font-size: 1.04rem; line-height: 1.75; white-space: pre-wrap; }
    .post-modal .pm-close {
      position: absolute; top: 16px; right: 16px;
      width: 40px; height: 40px; border-radius: 50%;
      border: 1px solid var(--line-strong); background: transparent; color: var(--text);
      font-size: 19px; cursor: pointer; line-height: 1;
      transition: background .25s ease, border-color .25s ease;
    }
    .post-modal .pm-close:hover { background: rgba(244,243,239,0.08); border-color: var(--text); }
